.eqp-section {
    width: 100%;
    padding: 90px 6%;
    background: #f7f9fc;
    position: relative;
}

/* Soft blur */
.eqp-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: #d3e6ff;
    filter: blur(120px);
    opacity: .5;
    top: -80px;
    left: -80px;
}

.eqp-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.eqp-title h2 {
    font-size: 42px;
    margin-bottom: 8px;
    font-weight: 700;
}

/* FILTER BUTTONS */
.eqp-filter {
    display: flex;
    gap: 5px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.eqp-btn {
    padding: 10px 22px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #d7d7d7;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.eqp-btn:hover {
    background: #eee;
}

.eqp-btn.active {
    background: #00adcc;
    color: #fff;
    border-color: #00adcc;
}

/* GRID */
.eqp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.eqp-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    opacity: 1;
    height: 430px;
    cursor: pointer;
}

.eqp-card.hide {
    display: none !important;
}

.eqp-card.fade {
    opacity: 0;
    transform: scale(.98);
    transition: .3s;
}

.eqp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.eqp-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.eqp-card h3 {
    padding: 20px 20px 8px;
    font-size: 22px;
    text-align: center;
}

.eqp-card p {
    padding: 0 20px 20px;
    opacity: .7;
    line-height: 1.5;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .eqp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .eqp-grid {
        grid-template-columns: 1fr;
    }

    .eqp-title h2 {
        font-size: 32px;
    }
}

/* IMAGE MODAL */
.img-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.img-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.img-modal-content {
    max-width: 92vw;
    max-height: 92vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomIn .35s ease;
}

.img-modal-close {
    position: absolute;
    top: 24px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}