/* ============================================================
   Kavita Chauhan Yoga - Main Stylesheet
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;500;700&family=Dancing+Script:wght@600&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
    --primary: #6f9b5a;
    --primary-dark: #527340;
    --primary-light: #a8c896;
    --secondary: #8e7bb5;
    --secondary-light: #c9bfec;
    --accent: #d4a96a;
    --beige: #f5f0e8;
    --beige-dark: #ede5d5;
    --lavender: #f0ecf7;
    --light-green: #eef5ea;
    --text-dark: #2c3e2d;
    --text-muted: #7a8c7b;
    --white: #ffffff;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s ease;
}

/* ─── Base Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.3; color: var(--text-dark); }

/* ─── Typography ─────────────────────────────────────────────── */
.font-playfair { font-family: 'Playfair Display', serif; }
.font-dancing { font-family: 'Dancing Script', cursive; }
.text-primary-yoga { color: var(--primary) !important; }
.text-secondary-yoga { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.section-subtitle { font-family: 'Dancing Script', cursive; color: var(--primary); font-size: 1.3rem; display: block; margin-bottom: 0.5rem; }
.section-title { font-size: 2.4rem; color: var(--text-dark); margin-bottom: 1rem; }
.section-title span { color: var(--primary); }
.section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 2px; margin: 1rem auto 2.5rem; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn-yoga {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; border: none; border-radius: 50px; padding: 12px 32px;
    font-weight: 600; font-size: 0.95rem; letter-spacing: 0.5px;
    transition: var(--transition); box-shadow: 0 4px 15px rgba(111, 155, 90, 0.35);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-yoga:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(111, 155, 90, 0.45); color: #fff; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-yoga-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 50px; padding: 10px 30px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-yoga-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-yoga-white { background: #fff; color: var(--primary); border-radius: 50px; padding: 12px 32px; font-weight: 600; transition: var(--transition); border: none; }
.btn-yoga-white:hover { background: var(--beige); color: var(--primary-dark); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; border-radius: 50px; padding: 12px 28px; border: none; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-whatsapp:hover { background: #20B557; color: #fff; transform: translateY(-2px); }
.btn-razorpay { background: linear-gradient(135deg, #528FF0, #3367D6); color: #fff; border: none; border-radius: 50px; padding: 14px 36px; font-weight: 700; font-size: 1rem; transition: var(--transition); box-shadow: 0 4px 15px rgba(82, 143, 240, 0.35); }
.btn-razorpay:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(82, 143, 240, 0.45); color: #fff; }

/* ─── Navbar ─────────────────────────────────────────────────── */
.navbar-yoga {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 14px 0;
    transition: var(--transition);
}
.navbar-yoga.scrolled { padding: 8px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.10); }
.navbar-brand-yoga { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary) !important; }
.navbar-brand-yoga span { color: var(--secondary); }
.navbar-yoga .nav-link { font-weight: 500; color: var(--text-dark) !important; padding: 8px 14px !important; border-radius: 8px; transition: var(--transition); font-size: 0.9rem; }
.navbar-yoga .nav-link:hover, .navbar-yoga .nav-link.active { color: var(--primary) !important; background: var(--light-green); }
.navbar-yoga .nav-cta { background: var(--primary); color: #fff !important; border-radius: 25px; padding: 8px 20px !important; }
.navbar-yoga .nav-cta:hover { background: var(--primary-dark); color: #fff !important; }

.navbar .logo {
    height: 60px;
    max-height: 100px;
}

/* ─── Hero Section ────────────────────────────────────────────── */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a2e1b 0%, #2d4a2e 40%, #3d6b3f 70%, #527340 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="60" r="25" fill="rgba(255,255,255,0.04)"/><circle cx="50" cy="90" r="20" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: cover;
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particle {
    position: absolute; width: 4px; height: 4px;
    background: rgba(255,255,255,0.4); border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}
@keyframes float-particle {
    0%, 100% { transform: translateY(0) rotate(0); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(-80px) rotate(180deg); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-size: 3.8rem; color: #fff; font-weight: 700; line-height: 1.15; margin-bottom: 1rem; }
.hero-title .highlight { color: var(--accent); font-style: italic; }
.hero-tagline { font-size: 1.2rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 520px; line-height: 1.8; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; }
.hero-stat-item { text-align: center; }
.hero-stat-number { font-size: 2rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; line-height: 1; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.2); }
.hero-image-container { position: relative; }
.hero-image-wrapper {
    width: 480px; height: 580px; margin: 0 auto;
    background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 0 60px rgba(255,255,255,0.1), 0 0 60px rgba(111, 155, 90, 0.3);
    animation: morph 8s ease-in-out infinite;
    overflow: hidden; position: relative;
}
.hero-image-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.8);
}
.hero-image-placeholder .yoga-icon { font-size: 8rem; margin-bottom: 1rem; opacity: 0.8; }
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
    25% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
    50% { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
    75% { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
}
.hero-float-badge {
    position: absolute; background: #fff; border-radius: var(--radius-md); padding: 12px 16px;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 10px;
    animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-float-badge.top-left { top: 10%; left: -5%; }
.hero-float-badge.bottom-right { bottom: 15%; right: -5%; animation-delay: 1.5s; }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: rgba(255,255,255,0.6); animation: bounce 2s infinite; font-size: 0.8rem; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── Section Styles ─────────────────────────────────────────── */
.section-padding { padding: 90px 0; }
.section-bg-light { background: var(--beige); }
.section-bg-green { background: var(--light-green); }
.section-bg-lavender { background: var(--lavender); }

/* ─── Benefits Section ────────────────────────────────────────── */
.benefit-card {
    background: #fff; border-radius: var(--radius-md); padding: 2rem;
    text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--transition); border: 1px solid transparent; height: 100%;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.benefit-icon {
    width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1.2rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; background: linear-gradient(135deg, var(--light-green), var(--beige));
}
.benefit-icon.purple { background: linear-gradient(135deg, var(--lavender), #e8e0ff); }
.benefit-icon.orange { background: linear-gradient(135deg, #fff5e6, #ffe0b2); }

/* ─── Pricing Cards ──────────────────────────────────────────── */
.pricing-card {
    background: #fff; border-radius: var(--radius-lg); padding: 2.5rem;
    box-shadow: var(--shadow-sm); border: 2px solid transparent;
    transition: var(--transition); position: relative; overflow: hidden; height: 100%;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.pricing-card.featured { border-color: var(--primary); background: linear-gradient(145deg, #fff, var(--light-green)); }
.pricing-card.featured::before { content: 'Most Popular'; position: absolute; top: 20px; right: -28px; background: var(--primary); color: #fff; padding: 5px 40px; font-size: 0.75rem; font-weight: 700; transform: rotate(45deg); letter-spacing: 1px; }
.pricing-badge { display: inline-block; background: var(--accent); color: #fff; padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-name { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 3rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; line-height: 1; }
.pricing-original { text-decoration: line-through; color: var(--text-muted); font-size: 1.2rem; margin-left: 8px; }
.pricing-duration { font-size: 0.9rem; color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--primary); font-weight: 700; }
.pricing-features li .cross { color: #ccc; }
.pricing-savings { background: var(--light-green); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 0.85rem; color: var(--primary); font-weight: 600; margin-bottom: 1.5rem; }

/* ─── Batch Cards ──────────────────────────────────────────────── */
.batch-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.batch-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.batch-card-header { padding: 1.5rem; color: #fff; }
.batch-card-header.morning { background: linear-gradient(135deg, #f97316, #ea580c); }
.batch-card-header.evening { background: linear-gradient(135deg, var(--secondary), #7c3aed); }
.batch-time-display { font-size: 1.8rem; font-weight: 700; font-family: 'Playfair Display', serif; }
.batch-info { padding: 1.5rem; }
.seat-indicator { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; }
.seat-dot { width: 10px; height: 10px; border-radius: 50%; }
.seat-dot.available { background: var(--primary); }
.seat-dot.full { background: #ef4444; }

/* ─── Testimonials ────────────────────────────────────────────── */
.testimonial-card {
    background: #fff; border-radius: var(--radius-md); padding: 2rem;
    box-shadow: var(--shadow-sm); position: relative; height: 100%;
    transition: var(--transition); border-left: 4px solid transparent;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-left-color: var(--primary); }
.testimonial-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; color: var(--primary-light); position: absolute; top: -10px; left: 20px; line-height: 1; }
.testimonial-avatar { width: 55px; height: 55px; border-radius: 50%; border: 3px solid var(--primary-light); object-fit: cover; }
.star-rating { color: var(--accent); font-size: 0.85rem; }

/* ─── Blog Cards ──────────────────────────────────────────────── */
.blog-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%; background: #fff; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 200px; object-fit: cover; width: 100%; background: var(--light-green); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card-body { padding: 1.5rem; }
.blog-category { display: inline-block; background: var(--light-green); color: var(--primary); padding: 3px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.8rem; }
.blog-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.8rem; color: var(--text-dark); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.blog-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; gap: 1rem; margin-top: 1rem; }

/* ─── Programs Section ────────────────────────────────────────── */
.program-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); height: 100%;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card-header { padding: 2rem; text-align: center; color: #fff; position: relative; overflow: hidden; }
.program-card-header.beginner { background: linear-gradient(135deg, #10b981, #059669); }
.program-card-header.weightloss { background: linear-gradient(135deg, #f97316, #dc2626); }
.program-card-header.stress { background: linear-gradient(135deg, var(--secondary), #6d28d9); }
.program-card-header.flexibility { background: linear-gradient(135deg, #06b6d4, #0284c7); }
.program-card-header.therapeutic { background: linear-gradient(135deg, var(--accent), #b45309); }
.program-icon { font-size: 3.5rem; margin-bottom: 0.8rem; display: block; }
.program-card-body { padding: 1.8rem; }
.program-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 0.7rem; font-size: 0.9rem; }
.program-feature i { color: var(--primary); width: 16px; }

/* ─── Instructor Section ─────────────────────────────────────── */
.instructor-photo-wrapper {
    width: 320px; height: 380px; margin: 0 auto;
    background: linear-gradient(135deg, var(--light-green), var(--lavender));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden; position: relative;
    box-shadow: 0 20px 60px rgba(111, 155, 90, 0.25);
}
.instructor-photo-placeholder { font-size: 10rem; color: var(--primary-light); padding-bottom: 1rem; }
.instructor-stat { background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.instructor-stat-number { font-size: 1.8rem; font-weight: 700; color: var(--primary); font-family: 'Playfair Display', serif; }
.certification-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--light-green); color: var(--primary); padding: 8px 16px; border-radius: 25px; font-size: 0.85rem; font-weight: 600; margin: 4px; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: linear-gradient(135deg, #1a2e1b, #2d4a2e); color: rgba(255,255,255,0.85); padding: 70px 0 30px; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: #fff; margin-bottom: 1rem; }
.footer-tagline { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }
.footer-heading { font-family: 'Lato', sans-serif; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 1.5rem; font-weight: 700; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary-light); padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 1.5rem; }
.social-btn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: var(--transition); font-size: 0.9rem; }
.social-btn:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0; }
.footer-bottom { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 1rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.footer-contact-item i { color: var(--primary-light); margin-top: 4px; min-width: 16px; }

/* ─── Dashboard Styles ───────────────────────────────────────── */
.dashboard-sidebar {
    width: 260px; min-height: 100vh; background: linear-gradient(180deg, #1a2e1b, #2d4a2e);
    position: fixed; left: 0; top: 0; z-index: 1000; overflow-y: auto;
    transition: var(--transition);
}
.sidebar-brand { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-brand h5 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.2rem; margin: 0; }
.sidebar-brand small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }
.sidebar-nav { padding: 1rem 0; }
.sidebar-section-label { padding: 0.5rem 1.5rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); font-weight: 700; margin-top: 0.5rem; }
.sidebar-link { display: flex; align-items: center; gap: 12px; padding: 11px 1.5rem; color: rgba(255,255,255,0.75); transition: var(--transition); font-size: 0.9rem; font-weight: 500; border-left: 3px solid transparent; }
.sidebar-link:hover, .sidebar-link.active { background: rgba(255,255,255,0.1); color: #fff; border-left-color: var(--primary-light); }
.sidebar-link i { width: 18px; text-align: center; font-size: 0.9rem; }
.sidebar-badge { background: #ef4444; color: #fff; border-radius: 50px; padding: 1px 7px; font-size: 0.7rem; font-weight: 700; margin-left: auto; }
.dashboard-main { margin-left: 260px; min-height: 100vh; background: #f8faf8; }
.dashboard-topbar { background: #fff; padding: 1rem 2rem; box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.dashboard-content { padding: 2rem; }

/* ─── Dashboard Cards ─────────────────────────────────────────── */
.stat-card { background: #fff; border-radius: var(--radius-md); padding: 1.8rem; box-shadow: var(--shadow-sm); border-left: 4px solid; transition: var(--transition); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-card.green { border-left-color: var(--primary); }
.stat-card.purple { border-left-color: var(--secondary); }
.stat-card.orange { border-left-color: var(--accent); }
.stat-card.blue { border-left-color: #3b82f6; }
.stat-card.red { border-left-color: #ef4444; }
.stat-number { font-size: 2.2rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
.stat-number.green { color: var(--primary); }
.stat-number.purple { color: var(--secondary); }
.stat-number.orange { color: var(--accent); }
.stat-number.blue { color: #3b82f6; }
.stat-number.red { color: #ef4444; }
.stat-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.stat-icon.green { background: var(--light-green); color: var(--primary); }
.stat-icon.purple { background: var(--lavender); color: var(--secondary); }
.stat-icon.orange { background: #fff5e6; color: var(--accent); }
.stat-icon.blue { background: #eff6ff; color: #3b82f6; }
.stat-icon.red { background: #fef2f2; color: #ef4444; }

/* ─── Tables ──────────────────────────────────────────────────── */
.table-yoga { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-yoga th { background: var(--light-green); color: var(--primary-dark); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 16px; border: none; }
.table-yoga td { padding: 12px 16px; vertical-align: middle; border-color: #f0f5f0; font-size: 0.9rem; }
.table-yoga tbody tr:hover { background: #fafff8; }

/* ─── Badges & Status ─────────────────────────────────────────── */
.badge-yoga { padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge-active { background: #dcfce7; color: #166534; }
.badge-expired { background: #fee2e2; color: #991b1b; }
.badge-pending { background: #fef9c3; color: #713f12; }
.badge-completed { background: #dbeafe; color: #1e40af; }
.badge-cancelled { background: #f1f5f9; color: #475569; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-yoga .form-control, .form-yoga .form-select {
    border: 1.5px solid #e0ead8; border-radius: var(--radius-sm); padding: 11px 16px;
    font-size: 0.95rem; transition: var(--transition); background: #fff;
}
.form-yoga .form-control:focus, .form-yoga .form-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(111, 155, 90, 0.15);
}
.form-yoga .form-label { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-yoga .input-group-icon { position: relative; }
.form-yoga .input-group-icon i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); z-index: 5; }
.form-yoga .input-group-icon input { padding-left: 42px; }

/* ─── Auth Pages ──────────────────────────────────────────────── */
.auth-wrapper { min-height: 100vh; background: linear-gradient(135deg, var(--light-green) 0%, var(--beige) 50%, var(--lavender) 100%); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.auth-card { background: #fff; border-radius: var(--radius-lg); padding: 3rem; box-shadow: var(--shadow-lg); width: 100%; max-width: 460px; }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo h3 { font-family: 'Playfair Display', serif; color: var(--primary); font-size: 1.8rem; }
.auth-divider { text-align: center; position: relative; margin: 1.5rem 0; color: var(--text-muted); font-size: 0.85rem; }
.auth-divider::before, .auth-divider::after { content: ''; position: absolute; top: 50%; width: 42%; height: 1px; background: #e5e7eb; }
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

/* ─── Modal Styles ───────────────────────────────────────────── */
.modal-yoga .modal-content { border-radius: var(--radius-lg); border: none; box-shadow: var(--shadow-lg); }
.modal-yoga .modal-header { background: var(--light-green); border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-bottom: 1px solid #e0ead8; }
.modal-yoga .modal-title { font-family: 'Playfair Display', serif; color: var(--primary-dark); }

/* ─── WhatsApp Float Button ───────────────────────────────────── */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 9999;
    background: #25D366; color: #fff; border-radius: 50px;
    padding: 14px 22px; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    display: flex; align-items: center; gap: 8px; font-weight: 700;
    transition: var(--transition); font-size: 0.9rem;
    animation: pulse-whatsapp 3s infinite;
}
@keyframes pulse-whatsapp { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); } }
.whatsapp-float:hover { background: #20B557; color: #fff; transform: translateY(-3px); }
.whatsapp-float .label { display: block; }

/* ─── Page Header ─────────────────────────────────────────────── */
.page-header {
    background: linear-gradient(135deg, #1a2e1b, #3d6b3f);
    padding: 100px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-header::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path d="M0 0 Q40 20 80 0 Q60 40 80 80 Q40 60 0 80 Q20 40 0 0Z" fill="rgba(255,255,255,0.04)"/></svg>') repeat; background-size: 80px 80px; }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: 2.8rem; margin-bottom: 0.5rem; }
.page-header .breadcrumb { background: none; justify-content: center; padding: 0; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb-item { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.page-header .breadcrumb-item.active { color: var(--accent); }

/* ─── Alert / Toast ───────────────────────────────────────────── */
.toast-container { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 11000; }

/* ─── Loading Spinner ─────────────────────────────────────────── */
.loading-overlay { position: fixed; inset: 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(4px); z-index: 99999; display: flex; align-items: center; justify-content: center; }
.spinner-yoga { width: 50px; height: 50px; border: 4px solid var(--primary-light); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Admin Dashboard Overrides ───────────────────────────────── */
.admin-avatar-circle { width: 36px; height: 36px; border-radius: 50%; background: var(--light-green); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--primary); font-weight: 700; }
.quick-action-btn { background: #fff; border: 1.5px solid #e0ead8; border-radius: var(--radius-md); padding: 1.2rem; text-align: center; transition: var(--transition); text-decoration: none; color: var(--text-dark); display: block; }
.quick-action-btn:hover { border-color: var(--primary); background: var(--light-green); color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.quick-action-btn i { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-image-wrapper { width: 360px; height: 430px; }
    .dashboard-sidebar { transform: translateX(-100%); }
    .dashboard-sidebar.open { transform: translateX(0); }
    .dashboard-main { margin-left: 0; }
    .section-title { font-size: 2rem; }
    .hero-float-badge { display: none; }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-stats { gap: 1.2rem; }
    .hero-stat-number { font-size: 1.5rem; }
    .pricing-card.featured::before { display: none; }
    .whatsapp-float .label { display: none; }
    .whatsapp-float { padding: 14px; border-radius: 50%; }
    .section-padding { padding: 60px 0; }
    .page-header { padding: 80px 0 40px; }
    .page-header h1 { font-size: 2rem; }
    .dashboard-topbar { padding: 0.8rem 1rem; }
    .dashboard-content { padding: 1rem; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .auth-card { padding: 2rem 1.5rem; }
    .pricing-card { padding: 2rem 1.5rem; }
    .hero-image-wrapper { width: 280px; height: 330px; }
}

/* ─── Animations ─────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.slide-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-left.visible { opacity: 1; transform: translateX(0); }
.slide-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.slide-in-right.visible { opacity: 1; transform: translateX(0); }

/* ─── Misc ────────────────────────────────────────────────────── */
.sticky-top-60 { position: sticky; top: 70px; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }
.bg-gradient-yoga { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.text-gradient-yoga { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.rounded-yoga { border-radius: var(--radius-md); }
.shadow-yoga { box-shadow: var(--shadow-md); }
.border-yoga { border: 1.5px solid #e0ead8; }
.divider-leaf { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.divider-leaf::before, .divider-leaf::after { content: ''; flex: 1; height: 1px; background: #e0ead8; }
.divider-leaf span { color: var(--primary); font-size: 1.2rem; }
