/* CLIENT PAGE SPECIFIC STYLES */
.client-stats-section {
    background: linear-gradient(135deg, var(--primary-red, #b3001e) 0%, #7a0014 100%);
    color: #ffffff;
    padding: 65px 0;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
}

.client-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    padding: 32px 20px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    font-family: var(--font-heading, sans-serif);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.industries-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.industry-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-red, #b3001e);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(179, 0, 30, 0.1);
    color: var(--primary-red, #b3001e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all 0.35s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary-red, #b3001e);
    color: #ffffff;
    transform: scale(1.1);
}

.industry-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.industry-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* REVIEWS GRID STYLES FOR CLIENT PAGE */
.client-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.client-review-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.35s ease;
}

.client-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(179, 0, 30, 0.3);
}

.review-header-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.client-avatar-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red, #b3001e) 0%, #ff4d6d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(179, 0, 30, 0.3);
}

.client-meta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.client-meta p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.client-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 14px;
    display: flex;
    gap: 4px;
}

.client-quote {
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.client-badge-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(179, 0, 30, 0.08);
    color: var(--primary-red, #b3001e);
    border: 1px solid rgba(179, 0, 30, 0.2);
    align-self: flex-start;
}

/* CLIENT CTA BANNER */
.client-cta-section {
    background: linear-gradient(135deg, var(--primary-red, #b3001e) 0%, #800015 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.client-cta-section h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.client-cta-section p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 680px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .client-stats-grid, .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .client-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .client-stats-grid, .industries-grid, .client-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* SCROLL REVEAL DOWN TO UP ANIMATION FOR CLIENT PAGE */
.section-title-wrapper {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.client-review-card {
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.client-review-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.client-review-card.animate-in:hover {
    transform: translateY(-6px) !important;
}

.stat-card {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-stats-section.animate-in .stat-card:nth-child(1) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.client-stats-section.animate-in .stat-card:nth-child(2) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.client-stats-section.animate-in .stat-card:nth-child(3) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
.client-stats-section.animate-in .stat-card:nth-child(4) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
