/* ==========================================================================
   Our Clients Page
   ========================================================================== */
.clients-hero {
    padding: 80px 0;
    background: var(--color-light);
    text-align: center;
}
.clients-page-title {
    margin-bottom: 20px;
}
.clients-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.clients-grid-section {
    padding: 60px 0;
}

.client-card__image {
    padding: 30px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    min-height: 220px; /* Increased to allow larger logos */
}

.client-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 120px; /* Increased from 90px */
    object-fit: contain;
    filter: grayscale(0%); /* Default to color for mobile */
    opacity: 1;
    transition: filter 0.3s, opacity 0.3s;
}

/* On desktop (where hover exists), apply grayscale by default and color on hover */
@media (min-width: 992px) {
    .client-logo-img {
        filter: grayscale(100%);
        opacity: 0.6;
    }
    .client-card:hover .client-logo-img {
        filter: grayscale(0%);
        opacity: 1;
    }
}

/* ==========================================================================
   Benefits Block
   ========================================================================== */
.client-benefits-section {
    border-top: 1px solid #eaeaea;
    padding: 80px 0;
    background: var(--color-light);
}

.client-benefits-title {
    margin-bottom: 40px;
    text-transform: uppercase;
}

.client-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-text {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}
