/* Our Clients Page Styles */

/* Clients Content Section */
.clients-content-section {
    padding: 100px 0 60px;
    background: #FFFFFF;
}

.clients-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    max-width: 1357px;
    margin: 0 auto;
}

.clients-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 42px;
    line-height: 51px;
    letter-spacing: 0.04em;
    color: #1C1C1C;
    margin: 0;
}

.clients-description {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 38px;
    letter-spacing: 0.04em;
    color: #1C1C1C;
    margin: 0;
}

/* Client Cards Section */
.client-cards-section {
    padding: 60px 0 120px 0;
    background: #FFFFFF;
}

.clients-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 101px;
    max-width: 1357px;
    margin: 0 auto;
    flex-wrap: nowrap;
    justify-content: center;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    width: 385px;
    background: #FFFFFF;
}

.client-image-wrapper {
    width: 385px;
    height: 245px;
    border-radius: 4px;
    overflow: hidden;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 385px;
}

.client-name {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000000;
    margin: 0;
}

.client-description {
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.04em;
    color: #1C1C1C;
    margin: 0;
}

.client-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10.86px 15.96px;
    gap: 6.39px;
    width: 117px;
    height: 43px;
    background: #0055A4;
    border-radius: 30px;
    font-family: 'Open Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 12.84px;
    line-height: 21px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.client-button:hover {
    background: #003d7a;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .clients-header,
    .clients-row {
        max-width: 90%;
        padding: 0 20px;
    }
    
    .clients-row {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .clients-row {
        gap: 40px;
    }
    
    .client-card {
        width: 320px;
    }
    
    .client-image-wrapper,
    .client-content {
        width: 320px;
    }
    
    .client-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .clients-row {
        gap: 30px;
    }
    
    .client-card {
        width: 280px;
    }
    
    .client-image-wrapper,
    .client-content {
        width: 280px;
    }
    
    .client-image-wrapper {
        height: 180px;
    }
    
    .clients-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .client-name {
        font-size: 16px;
        line-height: 26px;
    }
    
    .client-description {
        font-size: 13px;
        line-height: 26px;
    }
}

@media (max-width: 768px) {
    .clients-content-section {
        padding: 40px 0;
    }
    
    .client-cards-section {
        padding: 40px 0 80px 0;
    }
    
    /* Stack cards on mobile */
    .clients-row {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    /* Reset card sizes to full width on mobile */
    .client-card {
        width: 100%;
        max-width: 385px;
    }
    
    .client-image-wrapper,
    .client-content {
        width: 100%;
    }
    
    .client-image-wrapper {
        height: 245px;
    }
    
    .clients-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .clients-description {
        font-size: 14px;
        line-height: 32px;
    }
    
    .client-name {
        font-size: 18px;
        line-height: 30px;
    }
    
    .client-description {
        font-size: 14px;
        line-height: 30px;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 28px;
        line-height: 36px;
    }
}
