/* ============================================
   CRYSTAL FACILITY SOLUTIONS - TESTIMONIALS
   Cinematic 3D Carousel
   Lightened to match services section tone
   ============================================ */

.testimonials-cinematic {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    /* LIGHTENED: was #0a0a0a → #1a1a1a → #0d1f0d */
    /* Now matches services lightened tone with green tint */
    background: linear-gradient(135deg, #252b3a 0%, #282f40 50%, #2a3144 100%);
    min-height: 100vh;
    perspective: 1000px;
    isolation: isolate;
}

/* ============================================
   DYNAMIC BACKGROUND — LIGHTENED
   ============================================ */
.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        /* Reduced opacity for lighter feel */
        radial-gradient(ellipse at 20% 20%, rgba(124, 179, 66, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(156, 204, 101, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 5%) scale(1.1); }
    50% { transform: translate(-5%, 10%) scale(1); }
    75% { transform: translate(10%, -5%) scale(1.05); }
}

.bg-noise {
    position: absolute;
    inset: 0;
    /* Reduced from 0.03 to 0.015 */
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: noiseShift 0.5s steps(10) infinite;
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    /* Reduced from 0.4 to 0.2 */
    opacity: 0.2;
    animation: glowPulse 4s ease-in-out infinite;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    /* Reduced from 0.3 to 0.15 */
    background: rgba(124, 179, 66, 0.15);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.bg-glow-2 {
    width: 300px;
    height: 300px;
    /* Reduced from 0.25 to 0.12 */
    background: rgba(156, 204, 101, 0.12);
    bottom: -150px;
    right: -100px;
    animation-delay: 1.3s;
}

.bg-glow-3 {
    width: 250px;
    height: 250px;
    /* Reduced from 0.2 to 0.1 */
    background: rgba(40, 167, 69, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2.6s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
}


    25% { transform: translateY(-30px) rotate(5deg); opacity: 0.06; }
    50% { transform: translateY(0) rotate(0deg); opacity: 0.04; }
    75% { transform: translateY(30px) rotate(-5deg); opacity: 0.06; }
}

/* ============================================
   CONTAINER & HEADER
   ============================================ */
.testimonials-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s var(--ease-in-out);
}

.header-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cfs-green);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(124, 179, 66, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.25);
    border-radius: 100px;
}
    50% { box-shadow: 0 0 20px 5px rgba(124, 179, 66, 0.15); }
}

.header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--white);
}

.title-word {
    display: inline-block;
    animation: titleReveal 1s var(--ease-in-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-word.highlight {
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.header-subtitle {
    font-size: 1.125rem;
    /* LIGHTENED for better contrast */
    color: rgba(255, 255, 255, 0.72);
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.trust-score {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    /* LIGHTENED */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.score-stars {
    display: flex;
    gap: 0.25rem;
}

.score-stars i {
    color: var(--cfs-green);
    font-size: 0.875rem;
    animation: starPulse 1.5s ease-in-out infinite;
}

.score-stars i:nth-child(1) { animation-delay: 0s; }
.score-stars i:nth-child(2) { animation-delay: 0.1s; }
.score-stars i:nth-child(3) { animation-delay: 0.2s; }
.score-stars i:nth-child(4) { animation-delay: 0.3s; }
.score-stars i:nth-child(5) { animation-delay: 0.4s; }

@keyframes starPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.score-text {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--white);
}

/* ============================================
   3D CAROUSEL
   ============================================ */
.testimonials-carousel {
    position: relative;
    margin-bottom: 5rem;
}

.carousel-stage {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Testimonial Cards — LIGHTENED */
.testimonial-card {
    position: absolute;
    width: 100%;
    max-width: 600px;
    /* LIGHTENED: was rgba(255,255,255,0.03) */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: all 0.8s var(--ease-in-out);
    opacity: 0;
    pointer-events: none;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.testimonial-card.active {
    opacity: 1;
    pointer-events: all;
    transform: translateZ(0) scale(1);
    z-index: 10;
}

.testimonial-card.prev {
    opacity: 0.5;
    transform: translateX(-120%) translateZ(-200px) rotateY(25deg) scale(0.8);
    z-index: 5;
}

.testimonial-card.next {
    opacity: 0.5;
    transform: translateX(120%) translateZ(-200px) rotateY(-25deg) scale(0.8);
    z-index: 5;
}

/* Card Glow — LIGHTENED */
.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green), var(--cfs-dark-green));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(20px);
}

.testimonial-card.active .card-glow {
    opacity: 0.15;
}
    100% { filter: blur(20px) hue-rotate(360deg); }
}

/* Card Content */
.card-content {
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--cfs-green);
    opacity: 0.3;
    margin-bottom: 1.25rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-rating {
    display: flex;
    gap: 0.5rem;
}

.testimonial-rating i {
    color: var(--cfs-green);
    font-size: 1.125rem;
    animation: ratingPop 0.5s var(--ease-bounce) forwards;
    opacity: 0;
    transform: scale(0);
}

.testimonial-card.active .testimonial-rating i:nth-child(1) { animation-delay: 0.3s; }
.testimonial-card.active .testimonial-rating i:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card.active .testimonial-rating i:nth-child(3) { animation-delay: 0.5s; }
.testimonial-card.active .testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-card.active .testimonial-rating i:nth-child(5) { animation-delay: 0.7s; }

@keyframes ratingPop {
    to { opacity: 1; transform: scale(1); }
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 50%;
    font-weight: 700;
    /* LIGHTENED: was #0a0a0a */
    color: #1e2332;
    font-size: 1.125rem;
}

.avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
    100% { transform: rotate(360deg); }
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    /* LIGHTENED */
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.5rem;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    color: #22c55e;
    padding: 0.25rem 0.625rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 100px;
}

/* ============================================
   GOOGLE REVIEW CARD — LIGHTENED
   ============================================ */
.google-review-card {
    /* LIGHTENED: was dark gradient */
    background: linear-gradient(135deg, rgba(30, 35, 50, 0.95), rgba(40, 47, 64, 0.98));
    border: 1px solid rgba(124, 179, 66, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s var(--ease-in-out);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.google-review-card:hover {
    border-color: rgba(124, 179, 66, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.google-review-card.loading .google-rating-preview {
    opacity: 0.6;
    pointer-events: none;
}

.google-review-card.error .google-rating-preview {
    opacity: 0.8;
}

.google-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
}

.google-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 3s linear infinite;
}

.google-rating-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1.25rem;
    /* LIGHTENED */
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.3s ease;
}

.rating-stars {
    color: #fbbc05; /* Google yellow */
    font-size: 1.75rem;
    display: flex;
    gap: 0.25rem;
    line-height: 1;
    min-height: 1.75rem;
}

.rating-stars .star {
    display: inline-block;
    transition: transform 0.2s ease;
}

.rating-stars .star.pop-in {
    animation: starPopIn 0.4s ease forwards;
}

@keyframes starPopIn {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    70% { transform: scale(1.2) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.rating-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.rating-count {
    font-size: 0.875rem;
    /* LIGHTENED */
    color: rgba(255, 255, 255, 0.65);
}

.rating-count .review-count {
    color: var(--cfs-green);
    font-weight: 600;
}

.rating-error {
    font-size: 0.875rem;
    color: rgba(255, 100, 100, 0.8);
    display: none;
}

.google-review-card.error .rating-error {
    display: block;
}

.google-review-card.error .rating-stars,
.google-review-card.error .rating-text,
.google-review-card.error .rating-count {
    display: none;
}

.btn-google-review {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-in-out);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-google-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-google-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
}

.btn-google-review:hover::before {
    left: 100%;
}

.btn-google-review i {
    transition: transform 0.3s ease;
}

.btn-google-review:hover i {
    transform: translateX(5px);
}

.review-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    /* LIGHTENED */
    color: rgba(255, 255, 255, 0.72);
    padding: 0.375rem 0.875rem;
    /* LIGHTENED */
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge i {
    color: var(--cfs-green);
    font-size: 0.875rem;
}

/* Skeleton loading state */
.skeleton-stars {
    display: flex;
    gap: 0.25rem;
}

.skeleton-stars .skeleton-star {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

.skeleton-stars .skeleton-star:nth-child(2) { animation-delay: 0.1s; }
.skeleton-stars .skeleton-star:nth-child(3) { animation-delay: 0.2s; }
.skeleton-stars .skeleton-star:nth-child(4) { animation-delay: 0.3s; }
.skeleton-stars .skeleton-star:nth-child(5) { animation-delay: 0.4s; }

@keyframes skeletonPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Last updated timestamp */
.rating-updated {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

/* ============================================
   RESPONSIVE - Google Review
   ============================================ */
@media (max-width: 768px) {
    .google-review-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .google-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .google-rating-preview {
        padding: 0.875rem;
    }

    .rating-stars {
        font-size: 1.5rem;
    }

    .rating-text {
        font-size: 1.25rem;
    }

    .btn-google-review {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .review-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
}

@media (max-width: 480px) {
    .google-review-card {
        padding: 1.25rem;
    }

    .google-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .rating-text {
        font-size: 1.125rem;
    }

    .rating-count {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .google-icon::after,
    .rating-stars .star {
        animation: none !important;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.nav-btn {
    position: relative;
    width: 56px;
    height: 56px;
    border: none;
    /* LIGHTENED */
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s var(--ease-in-out);
    overflow: hidden;
}

.nav-btn:hover {
    transform: scale(1.1);
    border-color: var(--cfs-green);
    box-shadow: 0 0 30px rgba(124, 179, 66, 0.25);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:focus-visible {
    outline: 2px solid var(--cfs-green);
    outline-offset: 4px;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(124, 179, 66, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-btn:hover .btn-glow {
    opacity: 1;
}

.nav-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s var(--ease-in-out);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--cfs-green);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--cfs-green);
    transform: scale(1.2);
}

.dot.active::before {
    opacity: 1;
    transform: scale(1);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.dot:focus-visible {
    outline: 2px solid var(--cfs-green);
    outline-offset: 4px;
}

/* Progress Bar */
.carousel-progress {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   CTA SECTION — LIGHTENED
   ============================================ */
.testimonials-cta {
    display: flex;
    justify-content: center;
}

.cta-card {
    position: relative;
    /* LIGHTENED: was rgba(255,255,255,0.03) */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.5s var(--ease-in-out);
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* LIGHTENED gradient overlay */
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.08), rgba(156, 204, 101, 0.08));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 179, 66, 0.3);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-light-green));
    border-radius: 50%;
    font-size: 2rem;
    /* LIGHTENED: was #0a0a0a */
    color: #1e2332;
}


    100% { transform: scale(1.5); opacity: 0; }
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
}

.cta-card p {
    font-size: 1rem;
    /* LIGHTENED */
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
    position: relative;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--cfs-green), var(--cfs-dark-green));
    border: none;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s var(--ease-in-out);
    box-shadow: 0 10px 30px -10px rgba(124, 179, 66, 0.4);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(124, 179, 66, 0.5);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-cta:focus-visible {
    outline: 2px solid var(--cfs-green);
    outline-offset: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .testimonials-cinematic {
        padding: 5rem 0;
    }

    .carousel-stage {
        height: 500px;
    }

    .testimonial-card,
    .google-review-card {
        padding: 1.5rem;
        max-width: 90%;
    }

    .testimonial-card.prev {
        transform: translateX(-80%) translateZ(-100px) rotateY(15deg) scale(0.8);
    }

    .testimonial-card.next {
        transform: translateX(80%) translateZ(-100px) rotateY(-15deg) scale(0.8);
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

    .nav-btn {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .google-rating-preview {
        padding: 0.75rem;
    }

    .rating-stars {
        font-size: 1.25rem;
    }

    .btn-google-review {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .review-trust-badges {
        gap: 0.5rem;
    }

    .trust-badge {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .carousel-nav {
        gap: 1rem;
    }

    .nav-dots {
        gap: 0.5rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .google-review-card {
        padding: 1.25rem;
    }

    .google-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .rating-text {
        font-size: 1rem;
    }
}

/* ============================================
   REDUCED MOTION & HIGH CONTRAST
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .testimonials-bg *,
    .testimonial-card,
    .google-review-card {
        animation: none !important;
        transition: opacity 0.3s ease;
    }

    .testimonial-card,
    .google-review-card {
        transition: opacity 0.3s ease;
    }

    .avatar-ring {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .testimonial-card,
    .google-review-card {
        border-width: 2px;
    }

    .nav-btn,
    .dot {
        border-width: 2px;
    }
}