:root {
    /* Color Palette - Same colors, bolder application */
    --primary-cream: #F5F1E8;
    --primary-sand: #E8DCC8;
    --primary-earth: #C9B896;
    --primary-sage: #A8B89F;
    --accent-sage: #8FA889;
    --accent-terracotta: #C9A98E;
    --text-dark: #3D3530;
    --text-medium: #5C564F;
    --text-light: #8B857C;
    --white: #FFFFFF;
    
    /* Modern gradient combinations */
    --gradient-hero: linear-gradient(135deg, #A8B89F 0%, #8FA889 50%, #C9A98E 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    --gradient-accent: linear-gradient(135deg, #8FA889 0%, #A8B89F 100%);
    --gradient-glow: radial-gradient(circle at 50% 50%, rgba(168,184,159,0.3) 0%, transparent 70%);
    
    /* Typography - More distinctive */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Lora', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Modern effects */
    --blur-sm: 10px;
    --blur-md: 20px;
    --blur-lg: 40px;
    --shadow-glow: 0 0 60px rgba(168, 184, 159, 0.3);
    --shadow-elevated: 0 20px 60px rgba(61, 53, 48, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: #F5F1E8;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Animated gradient background - more vibrant */
.background-waves {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    background: 
        radial-gradient(circle at 15% 20%, rgba(168, 184, 159, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(201, 169, 142, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(143, 168, 137, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #F5F1E8 0%, #E8DCC8 100%);
    animation: gradientFlow 15s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    33% { 
        opacity: 0.9;
        transform: scale(1.1) rotate(5deg);
    }
    66% { 
        opacity: 0.95;
        transform: scale(1.05) rotate(-3deg);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: var(--spacing-lg);
}

/* Hero Section - More dramatic */
.hero {
    text-align: center;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes heroEntrance {
    from { 
        opacity: 0; 
        transform: translateY(40px) scale(0.95);
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1);
    }
}

.profile-image-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto var(--spacing-lg);
    filter: drop-shadow(0 20px 40px rgba(143, 168, 137, 0.3));
}

.profile-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 0 0 8px rgba(168, 184, 159, 0.1),
        0 20px 60px rgba(61, 53, 48, 0.2);
}

.profile-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 0 0 12px rgba(168, 184, 159, 0.15),
        0 30px 80px rgba(61, 53, 48, 0.25);
}

/* Pulsing sound waves - more prominent */
.sound-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-sage);
    border-radius: 50%;
    opacity: 0;
    animation: rippleEffect 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes rippleEffect {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
    }
}

.rating {
    margin-bottom: var(--spacing-md);
    color: var(--accent-terracotta);
    font-size: 1.2rem;
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.stars {
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-left: var(--spacing-xs);
}

.main-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1.2s ease-out 0.5s backwards;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    font-weight: 400;
    line-height: 1.8;
    animation: fadeIn 1.2s ease-out 0.7s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Social Links - Floating pills */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(var(--blur-md));
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(61, 53, 48, 0.08);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.social-btn:hover::before {
    left: 0;
}

.social-btn:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(143, 168, 137, 0.3);
    border-color: transparent;
}

.social-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.social-icon-img {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.social-btn:hover svg,
.social-btn:hover .social-icon-img {
    transform: scale(1.2);
}

/* Video Section */
.video-section {
    margin: var(--spacing-xl) 0;
    text-align: center;
    animation: fadeIn 1.2s ease-out 1s backwards;
}

.video-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(61, 53, 48, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-md));
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(61, 53, 48, 0.2),
        0 0 0 1px var(--accent-sage);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.video-caption {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--spacing-md);
}


/* CTA Cards - Bold glassmorphism */
.cta-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--blur-lg));
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    box-shadow: 
        0 20px 60px rgba(61, 53, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(61, 53, 48, 0.15),
        0 0 0 1px rgba(168, 184, 159, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.cta-card.featured {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    box-shadow: 
        0 25px 70px rgba(143, 168, 137, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-card.featured::before {
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2) 0%, transparent 70%);
}

.cta-card.featured h3,
.cta-card.featured p {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(61, 53, 48, 0.2);
}

.cta-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.cta-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.3;
}

.cta-card p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-size: 1.05rem;
}

.support-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: var(--spacing-md);
    opacity: 0.9;
}

/* Buttons - Modern with micro-interactions */
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--white);
    color: var(--accent-sage);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 35px rgba(143, 168, 137, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(143, 168, 137, 0.5);
}

/* Content Cards - Ultra-modern glass */
.content-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-lg));
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
    box-shadow: 
        0 15px 50px rgba(61, 53, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.content-card:hover {
    box-shadow: 
        0 20px 70px rgba(61, 53, 48, 0.12),
        0 0 0 1px rgba(168, 184, 159, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-4px);
}

.card-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(168, 184, 159, 0.12) 0%, rgba(201, 185, 150, 0.08) 100%);
    transition: all 0.3s ease;
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.4s ease;
}

.card-header:hover::before {
    width: 100%;
}

.card-header:hover {
    background: linear-gradient(135deg, rgba(168, 184, 159, 0.18) 0%, rgba(201, 185, 150, 0.12) 100%);
}

.card-header h2 {
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.toggle-icon {
    font-size: 2rem;
    color: var(--accent-sage);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 300;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(143, 168, 137, 0.1);
    border-radius: 50%;
}

.card-header.collapsed .toggle-icon {
    transform: rotate(180deg);
    background: transparent;
}

.card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease;
    padding: 0 2rem;
}

.card-content.active {
    max-height: 30000px;
    padding: 1.5rem 2rem 2.5rem;
}

.card-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-medium);
    font-size: 1.05rem;
}

.card-content p:last-child {
    margin-bottom: 2.5rem;
}

.card-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Highlighted keywords */
.highlight {
    color: #4A7C59;
    font-weight: 700;
}

.frequency {
    color: #D97941;
    font-weight: 700;
}

.benefit {
    font-weight: 700;
    color: #2C2419;
}

.card-content ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
    color: var(--text-medium);
}

.card-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.card-content li::marker {
    color: var(--accent-sage);
}

.signature {
    font-style: italic;
    color: var(--accent-sage);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Links Grid - Floating cards */
.links-grid {
    display: grid;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.link-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--blur-md));
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: var(--spacing-lg);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(61, 53, 48, 0.06);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 184, 159, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(61, 53, 48, 0.12),
        0 0 0 1px var(--accent-sage);
    background: rgba(255, 255, 255, 0.85);
}

.link-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.link-content {
    flex: 1;
}

.link-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.link-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    color: var(--text-medium);
    font-size: 1rem;
}

footer p {
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2.5rem;
        --spacing-xxl: 3rem;
    }
    
    .container {
        padding: var(--spacing-md);
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .card-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.6rem;
    }
    
    .profile-image-wrapper,
    .profile-image {
        width: 140px;
        height: 140px;
    }
    
    .cta-card,
    .content-card,
    .link-card {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.2rem;
    }
    
    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .card-header,
    .card-content.active {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .content-card,
    .cta-card,
    .link-card {
        border-width: 3px;
    }
}

/* ============================================
   TESTIMONIALS PAGE STYLES
   ============================================ */

.back-nav {
    margin-bottom: var(--spacing-lg);
    animation: fadeIn 0.8s ease-out;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-md));
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 25px rgba(61, 53, 48, 0.06);
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-4px);
    box-shadow: 0 10px 35px rgba(61, 53, 48, 0.12);
}

.back-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.back-btn:hover svg {
    transform: translateX(-3px);
}

.testimonials-hero {
    text-align: center;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-lg);
}

.page-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-sage) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease-out;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    font-weight: 400;
    font-style: italic;
    animation: fadeIn 1.2s ease-out 0.2s backwards;
}

.testimonials-grid {
    display: grid;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-lg));
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: var(--spacing-xl);
    box-shadow: 
        0 15px 50px rgba(61, 53, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 70px rgba(61, 53, 48, 0.15),
        0 0 0 1px rgba(168, 184, 159, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(168, 184, 159, 0.3) 0%, rgba(201, 169, 142, 0.2) 100%);
    border: 2px solid rgba(168, 184, 159, 0.4);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 var(--spacing-lg);
    position: relative;
    padding-left: var(--spacing-md);
    border-left: 3px solid var(--accent-sage);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0 0 0.25rem;
}

.author-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(168, 184, 159, 0.2);
}

.rating {
    color: var(--accent-terracotta);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.session-type {
    font-size: 0.85rem;
    color: var(--text-light);
    background: rgba(168, 184, 159, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Testimonials responsive */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
}

/* ============================================
   IMAGE GALLERY & HYBRID TESTIMONIALS
   ============================================ */

.text-testimonials {
    margin-bottom: var(--spacing-xxl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
}

.verified {
    font-size: 0.85rem;
    color: var(--accent-sage);
    background: rgba(143, 168, 137, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Image Gallery Section */
.image-gallery-section {
    margin-bottom: var(--spacing-xxl);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(var(--blur-md));
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 40px rgba(61, 53, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 184, 159, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(61, 53, 48, 0.15),
        0 0 0 1px var(--accent-sage);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: var(--spacing-lg);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 53, 48, 0.95);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Stats Section */
.stats-section {
    margin-bottom: var(--spacing-xxl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(var(--blur-lg));
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: var(--spacing-xl) var(--spacing-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(61, 53, 48, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(61, 53, 48, 0.12),
        0 0 0 1px var(--accent-sage);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--accent-sage);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery responsive */
@media (max-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
