/* =========================================================
   CLIENT PAGE STYLES
========================================================= */

.client-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #1d4ed8 0%, #4338ca 100%);
    color: white;
}

.client-hero .section-label {
    color: #c7d2fe;
    margin-bottom: 18px;
}

.client-hero h1 {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 900;
}

.client-hero h1 span {
    display: block;
}

.client-hero p {
    max-width: 700px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
}

.client-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.client-hero-buttons .btn-outline-light {
    color: white;
    border-color: rgba(255,255,255,0.75);
}

.client-hero-buttons .btn-outline-light:hover,
.client-hero-buttons .btn-outline-light:focus {
    background: white;
    color: #1d4ed8;
}

.client-stats,
.client-intro,
.clients-section,
.client-testimonials,
.client-cta {
    padding: 90px 0;
}

.client-stat-card,
.client-card,
.testimonial-card,
.client-cta-box,
.hours-visual {
    background: white;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.client-stat-card {
    padding: 30px;
    min-height: 260px;
    text-align: center;
}

.client-stat-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: rgba(59,130,246,0.14);
    color: #2563eb;
    font-size: 28px;
}

.client-stat-card strong {
    display: block;
    font-size: 42px;
    margin-bottom: 12px;
    color: #0f172a;
}

.client-stat-card span {
    color: #475569;
    font-weight: 700;
}

.client-intro .section-description {
    color: #475569;
}

.clients-section .client-card {
    padding: 30px;
    min-height: 340px;
    border: 1px solid var(--border);
}

.client-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}

.client-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(59,130,246,0.12);
    color: #2563eb;
    font-size: 24px;
}

.client-card span {
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.client-card h3 {
    margin-bottom: 16px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
}

.client-card p {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 22px;
}

.client-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-weight: 700;
}

.client-testimonials {
    padding-top: 60px;
}

#clientTestimonials .carousel-inner {
    display: grid;
    place-items: center;
}

.testimonial-card {
    padding: 40px;
    max-width: 700px;
    margin: auto;
    text-align: left;
    border-radius: 30px;
}

.testimonial-quote {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: rgba(59,130,246,0.14);
    color: #2563eb;
    font-size: 32px;
    margin-bottom: 24px;
}

.testimonial-card p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
}

.testimonial-author span {
    color: #64748b;
    font-size: 14px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(27%) sepia(4%) saturate(0%) hue-rotate(187deg) brightness(100%) contrast(97%);
}

.client-cta {
    background: #f8fafc;
}

.client-cta-box {
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.client-cta-box h2 {
    font-size: clamp(38px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 900;
}

.client-cta-box p {
    margin-top: 20px;
    color: #475569;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .client-hero-buttons,
    .client-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .client-cta-box {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .client-hero,
    .client-stats,
    .client-intro,
    .clients-section,
    .client-testimonials,
    .client-cta {
        padding: 60px 0;
    }

    .client-card,
    .testimonial-card,
    .client-cta-box {
        padding: 28px;
    }
}
