/* ============================================
   Dr Bairy Wellness Yoga - Main Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
    --green-900: #1a3c2a;
    --green-800: #234d36;
    --green-700: #2d6344;
    --green-600: #3a7d57;
    --green-500: #48976a;
    --green-400: #6ab58a;
    --green-300: #8dcba8;
    --green-200: #b8e0c8;
    --green-100: #e0f2e8;
    --green-50: #f0f9f3;

    --gold-600: #b8860b;
    --gold-500: #d4a017;
    --gold-400: #e6b422;
    --gold-300: #f0cc5b;
    --gold-200: #f7e09e;
    --gold-100: #fdf5e0;
    --gold-50: #fefcf5;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --whatsapp: #25d366;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--green-900);
    line-height: 1.3;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--green-600);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--green-800); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

em {
    font-style: italic;
    color: var(--green-600);
}

/* --- Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    border-color: var(--green-600);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--green-700);
    border-color: var(--green-600);
}
.btn-secondary:hover {
    background: var(--green-600);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--green-800);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-800);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
    background: #20b858;
    border-color: #20b858;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--white);
    border-color: var(--gold-500);
}
.btn-gold:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 16px;
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 3px;
    gap: 2px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-500);
    padding: 5px 10px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.lang-btn:hover {
    color: var(--green-700);
    background: var(--white);
}

.lang-btn.active {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 1px 4px rgba(45, 99, 68, 0.3);
}

/* Indic font boost for Telugu/Hindi readability */
.indic-font [data-i18n],
.indic-font [data-i18n-html] {
    font-family: 'Noto Sans Telugu', 'Noto Sans Devanagari', var(--font-body);
}

@media (max-width: 768px) {
    .lang-toggle {
        order: -1;
    }
    .lang-btn {
        font-size: 0.72rem;
        padding: 4px 8px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    position: relative;
}

/* --- Shimmer animation wrapper --- */
.logo {
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 38%,
        rgba(212, 175, 55, 0.18) 44%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(212, 175, 55, 0.18) 56%,
        rgba(255, 255, 255, 0.05) 62%,
        transparent 70%,
        transparent 100%
    );
    animation: logoShimmer 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes logoShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    60% {
        left: 150%;
        opacity: 1;
    }
    70% {
        opacity: 0;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

/* Pause shimmer on hover, add gentle glow */
.logo:hover::after {
    animation-play-state: paused;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: filter 0.3s ease;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

/* Footer logo shimmer uses same animation */
.footer-logo {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: var(--radius-sm);
}

.footer-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 38%,
        rgba(255, 215, 0, 0.2) 44%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 215, 0, 0.2) 56%,
        rgba(255, 255, 255, 0.05) 62%,
        transparent 70%,
        transparent 100%
    );
    animation: logoShimmer 4s ease-in-out infinite;
    animation-delay: 1.5s;
    pointer-events: none;
    z-index: 1;
}

/* Old text-based logo styles (no longer used)
.logo-icon {
    font-size: 2rem;
    color: var(--green-600);
    line-height: 1;
}

.logo-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.2;
}

.logo-tagline {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gold-600);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
*/

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-700);
    background: var(--green-50);
}

/* Login nav link — slightly distinct */
.nav-link-login {
    color: var(--green-700) !important;
    font-weight: 600 !important;
    border: 1.5px solid var(--green-300);
    border-radius: var(--radius-full) !important;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255,255,255,0.15);
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
}

/* --- Hero Logo Wrapper --- */
.hero-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
}

/* --- Hero Animated Logo --- */
.hero-logo-animated {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    padding: 8px;
    animation: heroLogoFloat 4s ease-in-out infinite;
}

.hero-logo-img {
    height: 130px;
    width: 130px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.3));
}

/* Shimmer sweep across the hero logo */
.hero-logo-animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 25%,
        rgba(255, 255, 255, 0.05) 35%,
        rgba(255, 215, 0, 0.2) 42%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 215, 0, 0.2) 58%,
        rgba(255, 255, 255, 0.05) 65%,
        transparent 75%,
        transparent 100%
    );
    animation: heroLogoShimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    border-radius: 50%;
}

/* Soft golden ring pulse */
.hero-logo-animated::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: heroLogoPulse 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroLogoShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    55% {
        left: 150%;
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        left: 150%;
        opacity: 0;
    }
}

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

@keyframes heroLogoPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.04);
    }
}

/* --- Typewriter Tagline --- */
.hero-tagline-typewriter {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-top: 4px;
}

.tagline-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--gold-300), #fff5cc, var(--gold-400), #ffe680, var(--gold-300));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: taglineShimmer 3s ease-in-out 2.5s infinite;
    filter: drop-shadow(0 1px 6px rgba(212, 175, 55, 0.25));
}

.tagline-cursor {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 300;
    color: var(--gold-300);
    animation: cursorBlink 0.6s step-end infinite;
    margin-left: 2px;
}

.tagline-cursor.hide {
    animation: cursorFadeOut 0.6s ease forwards;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes cursorFadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes taglineShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 em {
    color: var(--gold-300);
    font-style: italic;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 650px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-white { background: var(--white); }
.section-light { background: var(--gray-50); }

.section-green {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-600) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.section-header-light h2 { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.8); }

.section-badge {
    display: inline-block;
    padding: 4px 16px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(255,255,255,0.15);
    color: var(--gold-300);
}

/* --- Feature Cards --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Card 1: Doctor-Guided — Deep Green */
.feature-card:nth-child(1) {
    background: linear-gradient(145deg, #e8f5ec 0%, #f0faf3 100%);
    box-shadow: 0 4px 16px rgba(42, 120, 72, 0.1);
}
.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #2d6344, #48976a); }
.feature-card:nth-child(1) .feature-icon {
    background: linear-gradient(135deg, #2d6344, #48976a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card 2: Health-Focused — Warm Gold */
.feature-card:nth-child(2) {
    background: linear-gradient(145deg, #fef9e7 0%, #fffdf5 100%);
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.1);
}
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #b8860b, #e6b422); }
.feature-card:nth-child(2) .feature-icon {
    background: linear-gradient(135deg, #b8860b, #e6b422);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card 3: Safe for Everyone — Fresh Teal */
.feature-card:nth-child(3) {
    background: linear-gradient(145deg, #e6f7f1 0%, #f2fcf8 100%);
    box-shadow: 0 4px 16px rgba(16, 150, 110, 0.1);
}
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #0d9668, #34d399); }
.feature-card:nth-child(3) .feature-icon {
    background: linear-gradient(135deg, #0d9668, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card 4: Strong Community — Royal Purple */
.feature-card:nth-child(4) {
    background: linear-gradient(145deg, #f0ecf9 0%, #f8f5fe 100%);
    box-shadow: 0 4px 16px rgba(109, 70, 166, 0.1);
}
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #6d46a6, #9b7fd4); }
.feature-card:nth-child(4) .feature-icon {
    background: linear-gradient(135deg, #6d46a6, #9b7fd4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card 5: Live Online Classes — Ocean Blue */
.feature-card:nth-child(5) {
    background: linear-gradient(145deg, #e8f4fd 0%, #f3f9fe 100%);
    box-shadow: 0 4px 16px rgba(37, 99, 180, 0.1);
}
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, #2563b4, #60a5fa); }
.feature-card:nth-child(5) .feature-icon {
    background: linear-gradient(135deg, #2563b4, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card 6: Holistic Approach — Earthy Brown-Green */
.feature-card:nth-child(6) {
    background: linear-gradient(145deg, #f2efe8 0%, #faf8f3 100%);
    box-shadow: 0 4px 16px rgba(120, 100, 50, 0.1);
}
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, #78642e, #a89050); }
.feature-card:nth-child(6) .feature-icon {
    background: linear-gradient(135deg, #78642e, #a89050);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* --- Audience Grid --- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: none;
    border-left: 4px solid var(--green-400);
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.audience-card:nth-child(1) { border-left-color: #2d6344; }
.audience-card:nth-child(2) { border-left-color: #e6b422; }
.audience-card:nth-child(3) { border-left-color: #0d9668; }
.audience-card:nth-child(4) { border-left-color: #6d46a6; }
.audience-card:nth-child(5) { border-left-color: #2563b4; }
.audience-card:nth-child(6) { border-left-color: #b8860b; }

.audience-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-50);
    border-radius: var(--radius-md);
}

.audience-card:nth-child(1) .audience-icon { background: #e8f5ec; }
.audience-card:nth-child(2) .audience-icon { background: #fef9e7; }
.audience-card:nth-child(3) .audience-icon { background: #e6f7f1; }
.audience-card:nth-child(4) .audience-icon { background: #f0ecf9; }
.audience-card:nth-child(5) .audience-icon { background: #e8f4fd; }
.audience-card:nth-child(6) .audience-icon { background: #f2efe8; }

.audience-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.55;
}

/* --- Pricing Preview --- */
.pricing-preview {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-pill {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 36px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.price-pill:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.price-pill.popular {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold-400);
    transform: scale(1.05);
}

.price-pill.popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.price-tag {
    position: absolute;
    top: -12px;
    padding: 2px 14px;
    background: var(--gold-400);
    color: var(--green-900);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

.price-duration {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    color: var(--gold-500);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--green-800);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--gray-400);
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 64px 0;
    background: var(--gold-100);
    text-align: center;
}

.cta-banner h2 {
    color: var(--green-900);
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 16px; }
/* Old footer text-logo styles (no longer used)
.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-tagline { color: var(--gold-400); }
.footer-logo .logo-icon { color: var(--green-400); }
*/

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact .btn-whatsapp {
    margin-top: 12px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* --- Page Hero (Inner pages) --- */
.page-hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .hero-badge {
    margin-bottom: 16px;
}

/* --- About Page --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Doctor Photo */
.about-photo-wrap {
    position: relative;
    width: 100%;
}

.about-doctor-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
    border: 4px solid var(--white);
    outline: 2px solid var(--green-200);
}

.about-photo-badge {
    position: absolute;
    bottom: 20px;
    right: -16px;
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: white;
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid white;
}

.about-years {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-300);
    line-height: 1;
}

.about-years-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    white-space: nowrap;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.achievement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--green-400);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.achievement-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.achievement-card h4 {
    font-size: 1rem;
    color: var(--green-800);
    margin-bottom: 10px;
    line-height: 1.4;
}

.achievement-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .about-photo-badge {
        right: 10px;
        bottom: 10px;
    }
}

.about-text h2 {
    margin-bottom: 8px;
}

.about-text .subtitle {
    color: var(--gold-600);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray-600);
}

.qualifications {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qual-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--green-800);
}

.qual-icon {
    font-size: 1.3rem;
}

/* --- Mission/Vision Cards --- */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mv-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.mv-card h3 {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card p {
    color: var(--gray-600);
}

/* --- Programs Page --- */
.program-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    padding: 48px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    transition: all var(--transition);
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
}

.program-card.reverse {
    direction: rtl;
}

.program-card.reverse > * {
    direction: ltr;
}

.program-visual {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

/* ============================================
   BOOKS PAGE
   ============================================ */

/* Book Card Layout */
.book-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.book-card.reverse {
    grid-template-columns: 1fr 300px;
}

.book-card.reverse .book-visual {
    order: 2;
}

.book-card.reverse .book-info {
    order: 1;
}

/* 3D Book Visual */
.book-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.book-3d {
    position: relative;
    perspective: 800px;
    width: 220px;
    height: 300px;
}

.book-cover {
    width: 100%;
    height: 100%;
    border-radius: 4px 14px 14px 4px;
    position: relative;
    transform: rotateY(-15deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.book-3d:hover .book-cover {
    transform: rotateY(-5deg);
}

.book-cover-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
}

.book-cover-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.book-cover-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.book-cover-author {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 100%;
    background: var(--green-800);
    transform: rotateY(90deg) translateX(-10px);
    transform-origin: left;
    border-radius: 2px 0 0 2px;
}

.book-shadow {
    width: 180px;
    height: 12px;
    margin-top: 15px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Book Cover Color Themes */
.cover-yoga {
    background: linear-gradient(145deg, #1a5c2a 0%, #2d7d44 40%, #1a3c2a 100%);
    border-left: 5px solid #14532d;
}

.cover-nidra {
    background: linear-gradient(145deg, #1e2a6e 0%, #2d3a8e 40%, #0c1445 100%);
    border-left: 5px solid #0c1445;
}
.spine-nidra { background: #1e2a6e; }

.cover-naturopathy {
    background: linear-gradient(145deg, #065f46 0%, #059669 40%, #064e3b 100%);
    border-left: 5px solid #064e3b;
}
.spine-naturopathy { background: #065f46; }

.cover-gut {
    background: linear-gradient(145deg, #92400e 0%, #b45309 40%, #78350f 100%);
    border-left: 5px solid #78350f;
}
.spine-gut { background: #92400e; }

.cover-pranayama {
    background: linear-gradient(145deg, #7c3aed 0%, #8b5cf6 40%, #5b21b6 100%);
    border-left: 5px solid #5b21b6;
}
.spine-pranayama { background: #7c3aed; }

/* Book Info */
.book-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--green-100), var(--green-200));
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.book-info h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin-bottom: 12px;
    color: var(--green-900);
}

.book-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.book-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.book-highlights li {
    position: relative;
    padding: 6px 0 6px 28px;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.book-highlights li::before {
    content: '\1F4D6';
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 0.85rem;
}

.book-price-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.book-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-700);
}

/* Bundle Offer */
.book-bundle {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(145deg, var(--green-900), var(--green-700));
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.book-bundle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: bundleGlow 6s ease-in-out infinite;
}

@keyframes bundleGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.bundle-badge {
    display: inline-block;
    background: var(--gold-400);
    color: var(--green-900);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.book-bundle h2 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.3rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.book-bundle p {
    color: rgba(255,255,255,0.85);
    max-width: 500px;
    margin: 0 auto 24px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.bundle-books {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bundle-book-icon {
    font-size: 40px;
    animation: bundleBookBounce 2s ease-in-out infinite;
}

.bundle-book-icon:nth-child(1) { animation-delay: 0s; }
.bundle-book-icon:nth-child(2) { animation-delay: 0.15s; }
.bundle-book-icon:nth-child(3) { animation-delay: 0.3s; }
.bundle-book-icon:nth-child(4) { animation-delay: 0.45s; }
.bundle-book-icon:nth-child(5) { animation-delay: 0.6s; }

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

.bundle-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bundle-original {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
}

.bundle-price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-300);
}

.book-bundle .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   NEW BOOKS GRID LAYOUT (Real Covers)
   ============================================ */

/* Author Note Strip */
.author-note-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
    border: 1px solid var(--gold-200);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    flex-wrap: wrap;
}

.author-note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.author-note-text {
    flex: 1;
    min-width: 200px;
    font-size: 0.98rem;
    color: var(--gray-700);
}

/* Books 2-column grid */
.books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

/* Individual book grid card */
.book-grid-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
}

.book-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

/* Book image area */
.book-img-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-50), var(--gold-50));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.book-cover-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 4px 6px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.book-grid-card:hover .book-cover-img {
    transform: scale(1.04) rotate(-1deg);
}

.book-number {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: var(--green-800);
    color: white;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* Book text info */
.book-grid-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.book-lang-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    color: var(--gold-600);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    width: fit-content;
}

.book-te-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 4px;
    line-height: 1.4;
}

.book-en-subtitle {
    font-size: 0.85rem;
    color: var(--green-600);
    font-weight: 500;
    margin-bottom: 12px;
    font-style: italic;
}

.book-grid-desc {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 14px;
}

.book-grid-points {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex: 1;
}

.book-grid-points li {
    position: relative;
    padding: 5px 0 5px 24px;
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.book-grid-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 700;
}

/* Price + CTA row */
.book-grid-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    margin-top: auto;
    flex-wrap: wrap;
}

.book-price-wrap {
    display: flex;
    flex-direction: column;
}

.book-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-700);
}

/* Bundle covers - real images */
.bundle-covers {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bundle-cover-img {
    width: 70px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.bundle-cover-img:hover {
    transform: translateY(-6px) rotate(-2deg);
}

.bundle-note {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 20px !important;
}

/* Book page responsive */
@media (max-width: 900px) {
    .books-grid {
        grid-template-columns: 1fr;
    }
}

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

    .book-img-wrap {
        height: 220px;
    }

    .book-card,
    .book-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 24px;
    }

    .book-card.reverse .book-visual {
        order: 0;
    }

    .book-card.reverse .book-info {
        order: 0;
    }

    .book-3d {
        width: 180px;
        height: 250px;
    }

    .book-bundle {
        padding: 36px 20px;
    }

    .bundle-price {
        font-size: 2.2rem;
    }
}

/* ============================================
   ANIMATED PROGRAM SCENES
   ============================================ */

.scene {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

/* ===========================================
   SCENE 1: MORNING — Sunrise + Yoga Pose
   =========================================== */
.program-visual--morning {
    background: none !important;
    padding: 0 !important;
}

.scene-morning {
    background: linear-gradient(180deg, #0f172a 0%, #1e3a5f 15%, #f97316 55%, #fde68a 75%, #fef9e7 100%);
    animation: morningSkyCycle 8s ease-in-out infinite;
}

@keyframes morningSkyCycle {
    0%, 100% { background: linear-gradient(180deg, #1e293b 0%, #334155 20%, #92400e 50%, #fbbf24 75%, #fef3c7 100%); }
    30% { background: linear-gradient(180deg, #7c3aed20 0%, #f97316 25%, #fbbf24 50%, #fde68a 75%, #fef9e7 100%); }
    60% { background: linear-gradient(180deg, #bae6fd 0%, #7dd3fc 20%, #fde68a 50%, #fef9e7 75%, #f0fdf4 100%); }
}

.morning-sun {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 50%;
    transform: translateX(-50%);
    animation: sunRise 8s ease-in-out infinite;
    z-index: 3;
}

@keyframes sunRise {
    0%, 100% { bottom: -20px; }
    30% { bottom: 45%; }
    60% { bottom: 55%; }
}

.sun-body {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #fde68a 30%, #fbbf24 60%, #f59e0b 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px 10px rgba(251, 191, 36, 0.4), 0 0 60px 20px rgba(251, 191, 36, 0.2);
    animation: sunGlow 2s ease-in-out infinite alternate;
}

@keyframes sunGlow {
    0% { box-shadow: 0 0 30px 10px rgba(251, 191, 36, 0.3), 0 0 60px 20px rgba(251, 191, 36, 0.15); }
    100% { box-shadow: 0 0 40px 15px rgba(251, 191, 36, 0.5), 0 0 80px 30px rgba(251, 191, 36, 0.25); }
}

.sun-ray {
    position: absolute;
    width: 3px;
    height: 16px;
    background: linear-gradient(to top, #fbbf24, transparent);
    top: 50%;
    left: 50%;
    transform-origin: center 0;
    border-radius: 2px;
    animation: raysPulse 3s ease-in-out infinite alternate;
    opacity: 0;
}

.sun-ray.ray1 { transform: translate(-50%, -50%) rotate(0deg) translateY(-38px); animation-delay: 0s; }
.sun-ray.ray2 { transform: translate(-50%, -50%) rotate(45deg) translateY(-38px); animation-delay: 0.15s; }
.sun-ray.ray3 { transform: translate(-50%, -50%) rotate(90deg) translateY(-38px); animation-delay: 0.3s; }
.sun-ray.ray4 { transform: translate(-50%, -50%) rotate(135deg) translateY(-38px); animation-delay: 0.45s; }
.sun-ray.ray5 { transform: translate(-50%, -50%) rotate(180deg) translateY(-38px); animation-delay: 0.6s; }
.sun-ray.ray6 { transform: translate(-50%, -50%) rotate(225deg) translateY(-38px); animation-delay: 0.75s; }
.sun-ray.ray7 { transform: translate(-50%, -50%) rotate(270deg) translateY(-38px); animation-delay: 0.9s; }
.sun-ray.ray8 { transform: translate(-50%, -50%) rotate(315deg) translateY(-38px); animation-delay: 1.05s; }

@keyframes raysPulse {
    0% { opacity: 0; height: 12px; }
    50% { opacity: 0.8; height: 18px; }
    100% { opacity: 0.5; height: 14px; }
}

.morning-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 4;
}

.hill {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.hill-back {
    width: 120%;
    height: 70%;
    left: -10%;
    background: linear-gradient(180deg, #166534 0%, #14532d 100%);
    opacity: 0.7;
}

.hill-front {
    width: 140%;
    height: 50%;
    left: -20%;
    background: linear-gradient(180deg, #15803d 0%, #166534 100%);
}

/* Yoga person — Tree Pose silhouette */
.morning-person {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: personAppear 8s ease-in-out infinite;
}

@keyframes personAppear {
    0%, 15% { opacity: 0; transform: translateX(-50%) scale(0.8); }
    35%, 80% { opacity: 1; transform: translateX(-50%) scale(1); }
    95%, 100% { opacity: 0; transform: translateX(-50%) scale(0.8); }
}

.person-head {
    width: 14px;
    height: 14px;
    background: #fde68a;
    border-radius: 50%;
    margin: 0 auto 2px;
}

.person-body {
    width: 4px;
    height: 30px;
    background: #fde68a;
    margin: 0 auto;
    border-radius: 2px;
}

.person-arms {
    width: 4px;
    height: 30px;
    background: #fde68a;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.person-arms::before, .person-arms::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 4px;
    background: #fde68a;
    top: 0;
    border-radius: 2px;
}

.person-arms::before {
    right: 2px;
    transform: rotate(-70deg);
    transform-origin: right center;
}

.person-arms::after {
    left: 2px;
    transform: rotate(70deg);
    transform-origin: left center;
}

.person-leg-left {
    width: 4px;
    height: 28px;
    background: #fde68a;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.person-leg-right {
    width: 15px;
    height: 4px;
    background: #fde68a;
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%) translateX(3px);
    border-radius: 2px;
}

/* Golden particles float up */
.glow-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #fbbf24, transparent);
    border-radius: 50%;
    z-index: 6;
    opacity: 0;
}

.gp1 { left: 20%; animation: particleFloat 4s 1s ease-out infinite; }
.gp2 { left: 35%; animation: particleFloat 5s 2s ease-out infinite; }
.gp3 { left: 55%; animation: particleFloat 4.5s 0.5s ease-out infinite; }
.gp4 { left: 70%; animation: particleFloat 3.5s 1.5s ease-out infinite; }
.gp5 { left: 85%; animation: particleFloat 4s 2.5s ease-out infinite; }

@keyframes particleFloat {
    0% { bottom: 20%; opacity: 0; transform: scale(0.5); }
    20% { opacity: 0.8; }
    100% { bottom: 90%; opacity: 0; transform: scale(1.5); }
}

/* ===========================================
   SCENE 2: EVENING — Moon + Stars + Relax
   =========================================== */
.program-visual--evening {
    background: none !important;
    padding: 0 !important;
}

.scene-evening {
    background: linear-gradient(180deg, #0c1445 0%, #1e2a6e 30%, #1e3a5f 60%, #234d36 90%, #1a3c2a 100%);
}

.evening-moon {
    position: absolute;
    width: 55px;
    height: 55px;
    top: 12%;
    right: 20%;
    border-radius: 50%;
    background: #fef9e7;
    box-shadow: 0 0 20px 8px rgba(254, 249, 231, 0.3), 0 0 50px 15px rgba(254, 249, 231, 0.1);
    animation: moonSlide 8s ease-in-out infinite;
    z-index: 2;
}

.evening-moon::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    top: -5px;
    left: -15px;
    border-radius: 50%;
    background: #0c1445;
}

@keyframes moonSlide {
    0%, 100% { transform: translateX(40px) translateY(10px); opacity: 0.3; }
    30%, 70% { transform: translateX(0) translateY(0); opacity: 1; }
}

/* Stars twinkle in sequence */
.star {
    position: absolute;
    font-size: 10px;
    color: #fde68a;
    opacity: 0;
    z-index: 2;
    animation: starTwinkle 3s ease-in-out infinite;
}

.star1 { top: 8%; left: 10%; animation-delay: 0s; font-size: 8px; }
.star2 { top: 15%; left: 35%; animation-delay: 0.4s; font-size: 12px; }
.star3 { top: 5%; left: 55%; animation-delay: 0.8s; font-size: 6px; }
.star4 { top: 20%; left: 75%; animation-delay: 1.2s; font-size: 10px; }
.star5 { top: 10%; left: 90%; animation-delay: 1.6s; font-size: 7px; }
.star6 { top: 28%; left: 15%; animation-delay: 2s; font-size: 9px; }
.star7 { top: 25%; left: 50%; animation-delay: 2.4s; font-size: 6px; }

@keyframes starTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    20% { opacity: 1; transform: scale(1.2); }
    50% { opacity: 0.6; transform: scale(0.9); }
    80% { opacity: 1; transform: scale(1.1); }
}

/* Person in relaxation/shavasana */
.evening-person {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: eveningPersonAppear 8s ease-in-out infinite;
}

@keyframes eveningPersonAppear {
    0%, 10% { opacity: 0; }
    30%, 85% { opacity: 1; }
    100% { opacity: 0; }
}

.ep-head {
    width: 14px;
    height: 14px;
    background: #c4b5fd;
    border-radius: 50%;
    margin: 0 auto 2px;
}

.ep-body {
    width: 4px;
    height: 28px;
    background: #c4b5fd;
    margin: 0 auto;
    border-radius: 2px;
}

.ep-arms {
    width: 40px;
    height: 4px;
    background: #c4b5fd;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ep-legs {
    width: 4px;
    height: 24px;
    background: #c4b5fd;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.ep-legs::before, .ep-legs::after {
    content: '';
    width: 4px;
    height: 24px;
    background: #c4b5fd;
    position: absolute;
    bottom: 0;
    border-radius: 2px;
}
.ep-legs::before { left: -8px; }
.ep-legs::after { left: 8px; }

/* Calm waves at bottom */
.calm-wave {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 20px;
    border-radius: 50%;
    border-top: 2px solid rgba(196, 181, 253, 0.2);
    z-index: 3;
}

.wave1 { bottom: 15%; animation: waveFlow 4s ease-in-out infinite; }
.wave2 { bottom: 10%; animation: waveFlow 5s 0.5s ease-in-out infinite; }
.wave3 { bottom: 5%; animation: waveFlow 4.5s 1s ease-in-out infinite; }

@keyframes waveFlow {
    0%, 100% { transform: translateX(-5%); }
    50% { transform: translateX(5%); }
}

/* Zzz floating up */
.zzz {
    position: absolute;
    font-family: var(--font-display);
    font-weight: 700;
    color: #c4b5fd;
    opacity: 0;
    z-index: 6;
    left: 58%;
}

.z1 { font-size: 12px; animation: zzzFloat 4s 1s ease-out infinite; }
.z2 { font-size: 16px; animation: zzzFloat 4s 1.8s ease-out infinite; }
.z3 { font-size: 20px; animation: zzzFloat 4s 2.6s ease-out infinite; }

@keyframes zzzFloat {
    0% { bottom: 45%; opacity: 0; transform: translateX(0); }
    20% { opacity: 0.8; }
    100% { bottom: 80%; opacity: 0; transform: translateX(15px); }
}

/* ===========================================
   SCENE 3: THERAPEUTIC — Heartbeat + Healing
   =========================================== */
.program-visual--therapeutic {
    background: none !important;
    padding: 0 !important;
}

.scene-therapeutic {
    background: linear-gradient(160deg, #ecfdf5 0%, #d1fae5 40%, #f0fdf4 100%);
}

/* Heartbeat ECG line */
.heartbeat-line {
    position: absolute;
    top: 12%;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 3;
    overflow: hidden;
}

.heartbeat-line svg {
    width: 100%;
    height: 100%;
}

.hb-path {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: heartbeatDraw 3s linear infinite;
}

@keyframes heartbeatDraw {
    0% { stroke-dashoffset: 600; }
    100% { stroke-dashoffset: 0; }
}

/* Person standing — warrior pose */
.therapeutic-person {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: tpAppear 6s ease-in-out infinite;
}

@keyframes tpAppear {
    0%, 10% { opacity: 0; transform: translateX(-50%) scale(0.9); }
    25%, 80% { opacity: 1; transform: translateX(-50%) scale(1); }
    95%, 100% { opacity: 0; transform: translateX(-50%) scale(0.9); }
}

.tp-head {
    width: 16px;
    height: 16px;
    background: #2d6344;
    border-radius: 50%;
    margin: 0 auto 3px;
}

.tp-body {
    width: 5px;
    height: 32px;
    background: #2d6344;
    margin: 0 auto;
    border-radius: 3px;
}

.tp-arm-l, .tp-arm-r {
    position: absolute;
    width: 28px;
    height: 4px;
    background: #2d6344;
    top: 24px;
    border-radius: 2px;
}

.tp-arm-l { right: 50%; transform: rotate(15deg); transform-origin: right center; }
.tp-arm-r { left: 50%; transform: rotate(-15deg); transform-origin: left center; }

.tp-leg-l, .tp-leg-r {
    position: absolute;
    width: 4px;
    height: 30px;
    background: #2d6344;
    bottom: 0;
    border-radius: 2px;
}

.tp-leg-l { left: calc(50% - 10px); transform: rotate(15deg); transform-origin: top center; }
.tp-leg-r { left: calc(50% + 6px); transform: rotate(-15deg); transform-origin: top center; }

/* Healing energy rings pulsing outward */
.heal-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #48976a;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

.ring1 { width: 60px; height: 60px; animation: healRingPulse 3s 0s ease-out infinite; }
.ring2 { width: 100px; height: 100px; animation: healRingPulse 3s 0.6s ease-out infinite; }
.ring3 { width: 140px; height: 140px; animation: healRingPulse 3s 1.2s ease-out infinite; }

@keyframes healRingPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.6); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.4); }
}

/* Floating leaves */
.heal-leaf {
    position: absolute;
    font-size: 20px;
    opacity: 0;
    z-index: 5;
}

.leaf1 { left: 8%; animation: leafGrow 5s 0.5s ease-out infinite; }
.leaf2 { right: 8%; animation: leafGrow 5s 1.5s ease-out infinite; }
.leaf3 { left: 15%; animation: leafGrow 5s 2.5s ease-out infinite; }
.leaf4 { right: 15%; animation: leafGrow 5s 3.5s ease-out infinite; }

@keyframes leafGrow {
    0% { bottom: 10%; opacity: 0; transform: scale(0.3) rotate(0deg); }
    30% { opacity: 0.8; transform: scale(1) rotate(15deg); }
    100% { bottom: 75%; opacity: 0; transform: scale(0.6) rotate(-20deg); }
}

/* Health check appears at end */
.health-check {
    position: absolute;
    top: 15%;
    right: 12%;
    width: 36px;
    height: 36px;
    z-index: 6;
    animation: checkAppear 6s ease-in-out infinite;
}

@keyframes checkAppear {
    0%, 60% { opacity: 0; transform: scale(0.5); }
    75% { opacity: 1; transform: scale(1.15); }
    85%, 90% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* ===========================================
   SCENE 4: MEDITATION — Lotus + Breathing + Om
   =========================================== */
.program-visual--meditation {
    background: none !important;
    padding: 0 !important;
}

.scene-meditation {
    background: linear-gradient(180deg, #fdf5e0 0%, #f0f9f3 40%, #e8f5ec 70%, #d1fae5 100%);
}

/* Aura glow rings */
.med-aura {
    position: absolute;
    border-radius: 50%;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.aura1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: auraPulse 4s ease-in-out infinite;
}

.aura2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(72, 151, 106, 0.1) 0%, transparent 70%);
    animation: auraPulse 4s 0.8s ease-in-out infinite;
}

.aura3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    animation: auraPulse 4s 1.6s ease-in-out infinite;
}

@keyframes auraPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

/* Seated meditation person */
.med-person {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: medPersonAppear 8s ease-in-out infinite;
}

@keyframes medPersonAppear {
    0%, 5% { opacity: 0; }
    15%, 90% { opacity: 1; }
    100% { opacity: 0; }
}

.mp-head {
    width: 16px;
    height: 16px;
    background: #b8860b;
    border-radius: 50%;
    margin: 0 auto 3px;
}

.mp-body {
    width: 5px;
    height: 26px;
    background: #b8860b;
    margin: 0 auto;
    border-radius: 3px;
}

.mp-arm-l, .mp-arm-r {
    position: absolute;
    width: 20px;
    height: 4px;
    background: #b8860b;
    top: 26px;
    border-radius: 2px;
}

.mp-arm-l { right: 50%; transform: rotate(30deg); transform-origin: right center; }
.mp-arm-r { left: 50%; transform: rotate(-30deg); transform-origin: left center; }

.mp-legs {
    width: 32px;
    height: 8px;
    background: #b8860b;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    top: -2px;
}

/* Breathing circles — inhale/exhale */
.breath-circle {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    z-index: 3;
}

.bc1 {
    width: 50px;
    height: 50px;
    border-color: rgba(184, 134, 11, 0.3);
    animation: breathe 5s ease-in-out infinite;
}

.bc2 {
    width: 80px;
    height: 80px;
    border-color: rgba(72, 151, 106, 0.2);
    animation: breathe 5s 0.5s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.3; }
    30% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
    80% { transform: translate(-50%, -50%) scale(0.7); opacity: 0.3; }
}

/* Lotus blooms at bottom */
.lotus {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 35px;
    z-index: 5;
    animation: lotusBloom 8s ease-in-out infinite;
}

@keyframes lotusBloom {
    0%, 10% { opacity: 0; transform: translateX(-50%) scale(0.3); }
    30%, 80% { opacity: 1; transform: translateX(-50%) scale(1); }
    95%, 100% { opacity: 0; transform: translateX(-50%) scale(0.3); }
}

.lotus-petal {
    position: absolute;
    width: 16px;
    height: 24px;
    background: linear-gradient(to top, #f9a8d4, #f472b6);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
    opacity: 0.85;
}

.lp1 { transform: translateX(-50%) rotate(-40deg); }
.lp2 { transform: translateX(-50%) rotate(-20deg); }
.lp3 { transform: translateX(-50%) rotate(0deg); }
.lp4 { transform: translateX(-50%) rotate(20deg); }
.lp5 { transform: translateX(-50%) rotate(40deg); }

.lotus-center {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #fbbf24, #f59e0b);
    border-radius: 50%;
    z-index: 1;
}

/* Om symbol fades in */
.om-symbol {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: #b8860b;
    z-index: 6;
    animation: omFade 8s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.3));
}

@keyframes omFade {
    0%, 20% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    40%, 70% { opacity: 0.8; transform: translateX(-50%) scale(1); }
    90%, 100% { opacity: 0; transform: translateX(-50%) scale(0.5); }
}

/* Energy dots float around */
.energy-dot {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b8860b;
    z-index: 5;
    opacity: 0;
}

.ed1 { animation: energyOrbit 6s linear infinite; }
.ed2 { animation: energyOrbit 6s 1s linear infinite; }
.ed3 { animation: energyOrbit 6s 2s linear infinite; }
.ed4 { animation: energyOrbit 6s 3s linear infinite; }
.ed5 { animation: energyOrbit 6s 4s linear infinite; }
.ed6 { animation: energyOrbit 6s 5s linear infinite; }

@keyframes energyOrbit {
    0% { top: 35%; left: 50%; opacity: 0; transform: scale(0.5); }
    10% { opacity: 0.7; }
    25% { top: 20%; left: 70%; }
    50% { top: 35%; left: 85%; opacity: 0.5; }
    75% { top: 55%; left: 70%; }
    90% { opacity: 0; }
    100% { top: 35%; left: 50%; opacity: 0; transform: scale(1.2); }
}

.program-info .program-tag {
    display: inline-block;
    padding: 4px 14px;
    background: var(--green-100);
    color: var(--green-700);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.program-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.program-info p {
    color: var(--gray-600);
}

.program-features {
    list-style: none;
    margin-top: 16px;
}

.program-features li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.program-features li::before {
    content: '\2713';
    color: var(--green-500);
    font-weight: 700;
}

/* --- Benefits Page --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 20px;
    transition: all var(--transition);
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* --- Pricing Page --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pricing-card {
    position: relative;
    padding: 40px 28px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--green-500);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 20px;
    background: var(--green-600);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
}

.pricing-card .duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.pricing-card .price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 4px;
}

/* ===================================
   FLOATING SOCIAL MEDIA SIDEBAR
   =================================== */
.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    box-shadow: -4px 0 18px rgba(0, 0, 0, 0.18);
    gap: 2px;
}

.social-sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: #fff;
    text-decoration: none;
    transition: width 0.22s ease, filter 0.2s ease;
}

.social-sidebar-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.social-sidebar-btn:hover {
    width: 58px;
    filter: brightness(1.12);
    color: #fff;
}

.social-sidebar-btn:hover svg {
    transform: scale(1.1);
}

.social-sidebar-btn.s-whatsapp  { background: #25D366; }
.social-sidebar-btn.s-facebook  { background: #1877F2; }
.social-sidebar-btn.s-instagram {
    background: linear-gradient(160deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-sidebar-btn.s-youtube   { background: #FF0000; }
.social-sidebar-btn.s-email     { background: #555555; }

/* Hide sidebar on mobile — floating WhatsApp handles mobile */
@media (max-width: 768px) {
    .social-sidebar { display: none; }
}

/* ===================================
   REFER A FRIEND — SHARE BUTTON
   =================================== */
.btn-share {
    background: linear-gradient(135deg, #d4a017, #b8860b);
    color: var(--white);
    border: none;
}

.btn-share:hover {
    background: linear-gradient(135deg, #b8860b, #9a7209);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 130, 10, 0.4);
}

.share-icon { font-size: 1.05em; }

.pricing-card .per-month {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.pricing-card .savings {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold-100);
    color: var(--gold-600);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 28px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-features li:last-child { border: none; }

.pricing-features li::before {
    content: '\2713';
    color: var(--green-500);
    font-weight: 700;
}

/* --- Contact / Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(72, 151, 106, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    padding: 28px;
    background: var(--green-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--green-100);
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

.info-card a {
    color: var(--green-700);
    font-weight: 500;
}

/* --- Video Gallery --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.video-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--green-100), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--green-400);
    position: relative;
}

.play-btn {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green-700);
    box-shadow: var(--shadow-lg);
}

.video-card-content {
    padding: 20px;
}

.video-card-content h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.video-card-content p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}

/* --- Testimonials Page (full) --- */
.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-full-card {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.testimonial-full-card .testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-full-card blockquote {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-full-card .author-info strong {
    display: block;
    color: var(--green-800);
    font-size: 1rem;
}

.testimonial-full-card .author-info span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* --- Conditions Grid --- */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.condition-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: all var(--transition);
}

.condition-pill:hover {
    border-color: var(--green-300);
    background: var(--green-50);
}

.condition-icon { font-size: 1.4rem; }

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid,
    .testimonials-grid,
    .video-grid,
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .program-card.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .nav.open {
        transform: translateY(0);
    }

    .nav-link {
        padding: 12px 16px;
        width: 100%;
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 80vh;
        padding: 110px 0 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .features-grid,
    .audience-grid,
    .testimonials-grid,
    .benefits-grid,
    .video-grid,
    .conditions-grid,
    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pricing-preview {
        flex-direction: column;
        align-items: center;
    }

    .price-pill {
        width: 100%;
        max-width: 260px;
    }

    .price-pill.popular {
        transform: none;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Language Badge */
.lang-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
    color: var(--gold-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    letter-spacing: 0.5px;
}

/* ============================================
   AUTH PAGES — login, enroll
   ============================================ */
.auth-main {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--green-100) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
}

.auth-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
}

.enroll-container {
    max-width: 640px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    height: 64px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.auth-header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--green-900);
}

.auth-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* --- Forms --- */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(72, 151, 106, 0.12);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
}

.form-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #16a34a;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
}

.input-with-prefix,
.input-with-suffix {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input-with-prefix:focus-within,
.input-with-suffix:focus-within {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(72, 151, 106, 0.12);
}

.input-with-prefix .form-input,
.input-with-suffix .form-input {
    border: none;
    box-shadow: none;
    flex: 1;
    border-radius: 0;
}

.input-with-prefix .form-input:focus,
.input-with-suffix .form-input:focus {
    box-shadow: none;
}

.input-prefix {
    padding: 0 12px;
    background: var(--gray-50);
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 500;
    border-right: 2px solid var(--gray-200);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
}

.input-suffix-btn {
    padding: 0 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    font-size: 1rem;
    transition: color var(--transition);
    height: 46px;
    display: flex;
    align-items: center;
}

.input-suffix-btn:hover { color: var(--green-600); }

.btn-full { width: 100%; }

.auth-links {
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.forgot-help, .auth-switch {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
}

.auth-switch a { font-weight: 500; }

/* --- Enrollment Steps --- */
.enroll-step { display: none; }
.enroll-step.active { display: block; }

.step-title {
    font-size: 1.2rem;
    color: var(--green-800);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--green-600);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

/* --- Plan Cards --- */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 0.5rem;
}

.plan-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.plan-card input[type="radio"] { display: none; }

.plan-card-inner {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    transition: all var(--transition);
    background: var(--white);
}

.plan-card:hover .plan-card-inner {
    border-color: var(--green-400);
    background: var(--green-50);
}

.plan-card.selected .plan-card-inner,
.plan-card input:checked ~ .plan-card-inner {
    border-color: var(--green-600);
    background: var(--green-50);
    box-shadow: 0 0 0 3px rgba(72, 151, 106, 0.15);
}

.plan-badge-top {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-500);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.plan-duration {
    font-weight: 600;
    color: var(--green-800);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 4px;
}

.plan-per {
    font-size: 0.78rem;
    color: var(--gray-400);
}

.order-summary {
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.92rem;
    color: var(--gray-600);
}

.summary-row strong { color: var(--green-800); }

/* --- Success screen --- */
.success-icon {
    width: 72px;
    height: 72px;
    background: var(--green-600);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

/* Footer simple */
.footer-simple {
    padding: 24px 0;
    text-align: center;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.footer-simple p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   DASHBOARD — member & admin shared
   ============================================ */
.dashboard-body { background: var(--gray-50); }

.dashboard-header {
    background: var(--green-900);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.dashboard-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.dashboard-logo { height: 40px; }

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-greeting {
    color: var(--green-200);
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-main {
    padding: 32px 0 60px;
    min-height: calc(100vh - 64px);
}

/* Loading / Error */
.dash-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
    color: var(--gray-500);
}

.dash-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--green-200);
    border-top-color: var(--green-600);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.dash-error {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--gray-500);
}

/* ============================================
   MEMBER DASHBOARD
   ============================================ */
.dash-welcome {
    margin-bottom: 2rem;
}

.dash-welcome h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 4px;
    color: var(--green-900);
}

.dash-welcome p {
    color: var(--gray-500);
    margin: 0;
}

.dash-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.dash-section-title {
    font-size: 1.1rem;
    color: var(--green-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green-50);
}

/* Expiry Banner */
.expiry-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    margin-bottom: 24px;
    color: #92400e;
    font-size: 0.92rem;
    flex-wrap: wrap;
}

.expiry-banner.banner-expired {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #991b1b;
}

.expiry-icon { font-size: 1.2rem; }

.btn-warning {
    background: #f59e0b;
    color: white;
    border-color: #f59e0b;
    padding: 6px 16px;
    font-size: 0.82rem;
    margin-left: auto;
}

.btn-warning:hover { background: #d97706; border-color: #d97706; color: white; }

/* Membership Card */
.membership-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.membership-info { flex: 1; }

.mem-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}

.mem-row:last-child { border-bottom: none; }
.mem-label { color: var(--gray-500); }
.mem-value { color: var(--green-900); }

.days-remaining { flex-shrink: 0; }

.days-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gray-200);
    font-size: 0.75rem;
    color: var(--gray-500);
    gap: 2px;
}

.days-circle span { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.days-circle.days-ok     { border-color: var(--green-400); color: var(--green-700); }
.days-circle.days-ok span { color: var(--green-700); }
.days-circle.days-warning { border-color: #fbbf24; color: #b45309; }
.days-circle.days-warning span { color: #b45309; }
.days-circle.days-expired { border-color: #f87171; color: #dc2626; }
.days-circle.days-expired span { color: #dc2626; }

/* Class Cards */
.class-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 12px;
}

.class-card {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.class-card.class-active {
    border-color: var(--green-500);
    background: var(--green-50);
    box-shadow: 0 0 0 3px rgba(72, 151, 106, 0.12);
}

.class-card.class-soon {
    border-color: #fbbf24;
    background: #fffbeb;
}

.class-card.class-ended {
    background: var(--gray-50);
    opacity: 0.7;
}

.class-time-badge {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.morning-badge { background: #fef9c3; color: #854d0e; }
.evening-badge { background: #ede9fe; color: #5b21b6; }

.class-time {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1;
}

.class-status {
    font-size: 0.88rem;
    color: var(--gray-500);
    min-height: 20px;
}

.btn-join {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
    padding: 10px 24px;
    font-size: 0.92rem;
    font-weight: 600;
    animation: pulse-green 2s infinite;
}

.btn-join:hover { background: var(--green-700); border-color: var(--green-700); color: white; }

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(72,151,106,0.4); }
    50%       { box-shadow: 0 0 0 8px rgba(72,151,106,0); }
}

.class-countdown {
    font-size: 0.82rem;
    color: var(--gray-400);
    font-variant-numeric: tabular-nums;
    min-height: 18px;
}

.class-note {
    font-size: 0.82rem;
    color: var(--gray-400);
    margin: 0;
    text-align: center;
}

/* Quick Links */
.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--gray-700);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition);
}

.quick-link-card:hover {
    border-color: var(--green-400);
    background: var(--green-50);
    color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quick-link-icon { font-size: 1.6rem; }

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    border-top: 4px solid transparent;
}

.stat-total   { border-top-color: var(--green-400); }
.stat-active  { border-top-color: var(--green-600); }
.stat-warning { border-top-color: #f59e0b; }
.stat-danger  { border-top-color: #ef4444; }

.stat-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card-label {
    font-size: 0.82rem;
    color: var(--gray-500);
    font-weight: 500;
}

.admin-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.admin-section-title {
    font-size: 1.1rem;
    color: var(--green-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--green-50);
}

.admin-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 1rem;
}

.admin-section-header .admin-section-title { margin: 0; padding: 0; border: none; }

.class-link-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.search-input {
    padding: 10px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.88rem;
    width: 260px;
    transition: border-color var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--green-500);
}

.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 7px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--white);
    color: var(--gray-600);
    transition: all var(--transition);
}

.filter-tab:hover { border-color: var(--green-400); color: var(--green-700); }
.filter-tab.active { background: var(--green-600); color: white; border-color: var(--green-600); }

.table-wrap { overflow-x: auto; }

.members-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.members-table th {
    text-align: left;
    padding: 10px 14px;
    background: var(--green-50);
    color: var(--green-900);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.members-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
    color: var(--gray-700);
}

.members-table tr:last-child td { border-bottom: none; }
.members-table tr:hover td { background: var(--gray-50); }
.members-table tr.row-warning td { background: #fffbeb; }
.members-table tr.row-expired td { background: #fef2f2; opacity: 0.85; }

.table-empty {
    text-align: center;
    color: var(--gray-400);
    padding: 40px !important;
}

/* Status & Days badges */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.status-badge.active    { background: #dcfce7; color: #15803d; }
.status-badge.expired   { background: #fee2e2; color: #dc2626; }
.status-badge.suspended { background: #f3f4f6; color: #6b7280; }

.days-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
}

.days-badge.ok      { background: #dcfce7; color: #15803d; }
.days-badge.warning { background: #fef9c3; color: #92400e; }
.days-badge.expired { background: #fee2e2; color: #dc2626; }

.action-btns { display: flex; gap: 6px; flex-wrap: wrap; }

.btn-success { background: var(--green-600); color: white; border-color: var(--green-600); }
.btn-success:hover { background: var(--green-700); color: white; }

/* ---- Modals ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-box-wide { max-width: 760px; }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--gray-200);
}

.modal-header h3 {
    font-size: 1.1rem;
    color: var(--green-900);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: var(--gray-400);
    padding: 4px 8px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-700); }

.modal-body {
    padding: 20px 24px;
    flex: 1;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-member-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--green-800);
    background: var(--green-50);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

/* History modal */
.history-summary { margin-bottom: 16px; }

.history-stats {
    display: flex;
    gap: 24px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    border-radius: var(--radius-md);
    padding: 12px 16px;
}

.hstat {
    font-size: 0.9rem;
    color: var(--green-800);
}

.source-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-green { background: #dcfce7; color: #15803d; }
.badge-gold  { background: var(--gold-100); color: var(--gold-600); }

/* ---- Add Member Grid ---- */
.add-member-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: end;
}

.add-member-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .add-member-grid { grid-template-columns: 1fr; }
}

/* ---- Member Dashboard Nav ---- */
.member-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.member-nav-link {
    color: var(--green-200);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}

.member-nav-link:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.member-nav-link.active {
    color: white;
    background: rgba(255,255,255,0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    background: transparent;
    padding: 8px 18px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.member-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.member-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

@media (max-width: 900px) {
    .member-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--green-900);
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 24px 20px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        z-index: 99;
    }
    .member-nav.open { display: flex; }
    .member-nav-link { padding: 10px 12px; width: 100%; }
    .member-menu-toggle { display: flex; }
    .dashboard-header-inner { position: relative; }
}

.admin-badge {
    background: var(--gold-500);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .auth-container { padding: 32px 24px; }
    .plan-grid { grid-template-columns: 1fr 1fr; }
    .class-cards { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
    .class-link-form .form-row { grid-template-columns: 1fr; }
    .membership-card { flex-direction: column; }
    .days-remaining { width: 100%; display: flex; justify-content: center; }
    .search-input { width: 180px; }
    .admin-section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .plan-grid { grid-template-columns: 1fr; }
    .quick-links { grid-template-columns: repeat(2, 1fr); }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .step-actions { flex-direction: column-reverse; }
    .step-actions .btn { width: 100%; justify-content: center; }
}
