
/* --- PREMIUM BUTTONS --- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--bg-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.5);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-gold-sm {
    background-color: var(--gold);
    color: var(--bg-dark);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--text-light);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

.badge-pill {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.text-gold {
    color: var(--gold);
}

/* --- GLASSMORPHISM HEADER --- */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-emblem {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.logo-text .brand-name {
    display: block;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-text .brand-sub {
    display: block;
    color: var(--gold);
    font-size: 0.55rem;
    letter-spacing: 1.5px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-btn {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 211, 102, 0.1);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

/* --- 1. HERO SECTION --- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(18,18,18,0.9), rgba(18,18,18,0.95)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--text-light);
    padding: 130px 0 100px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-slide h1 {
    font-size: 3.4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-slide p {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.hero-checks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
    font-size: 0.95rem;
    color: var(--gold-light);
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--gold);
    width: 32px;
    border-radius: 6px;
}

/* --- BRAND PROMISE TICKER --- */
.brand-promise-strip {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    text-align: center;
    padding: 22px 0;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
}

.brand-promise-strip h2 {
    font-size: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- SECTION HEADERS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header .sub-title {
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

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

/* --- 2. FEATURED BATCHES --- */
.batches-section {
    padding: 100px 0;
    background-color: #fff;
}

.batch-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    background-color: var(--bg-cream);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 40px;
    border: 1px solid #eae2d0;
    box-shadow: var(--shadow-subtle);
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--bg-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dcd2be;
    background-color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
}

.batch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.batch-card {
    background: var(--bg-cream);
    border: 1px solid #eae2d0;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
}

.batch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.batch-tag {
    background-color: var(--bg-dark);
    color: var(--gold);
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
    font-weight: 600;
    margin-bottom: 18px;
}

.batch-card h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.batch-specs {
    list-style: none;
    margin-bottom: 25px;
}

.batch-specs li {
    font-size: 0.92rem;
    margin-bottom: 10px;
    color: #555;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e6dec9;
    padding-bottom: 8px;
}

.batch-specs li span {
    font-weight: 600;
    color: var(--bg-dark);
}

.batch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eae2d0;
    padding-top: 20px;
}

.price-tag {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--gold-dark);
}

/* --- 3. WHY SANJANA GURUKUL --- */
.why-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.pillar-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #eae2d0;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    transition: 0.3s;
}

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

.pillar-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--bg-dark);
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.stats-container {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-box h3 {
    font-size: 3.2rem;
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 0.95rem;
    color: #ccc;
}

/* --- 4. TESTIMONIALS --- */
.testimonials-section {
    padding: 100px 0;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-cream);
    border: 1px solid #eae2d0;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.student-info strong {
    display: block;
    color: var(--bg-dark);
}

.student-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- 5. LEARNING RESOURCES --- */
.resources-section {
    padding: 100px 0;
    background-color: var(--bg-cream);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.resource-card {
    background: #fff;
    border: 1px solid #eae2d0;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-subtle);
}

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

.resource-img-placeholder {
    font-size: 3rem;
    background: var(--bg-cream);
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    border: 1px solid #eae2d0;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.resource-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.text-link {
    color: var(--gold-dark);
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.text-link:hover {
    color: var(--gold);
}

/* --- 6. BLOGS --- */
.blog-section {
    padding: 100px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-cream);
    border: 1px solid #eae2d0;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-subtle);
    transition: 0.3s;
}

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

.blog-date {
    font-size: 0.75rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--bg-dark);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.read-more {
    font-weight: 700;
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--gold-dark);
}

/* --- 7. NEWSLETTER --- */
.newsletter-section {
    padding: 70px 0;
    background-color: var(--bg-cream);
}

.newsletter-box {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.newsletter-box h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.newsletter-box p {
    color: #ccc;
    margin-bottom: 35px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto 15px auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 22px;
    border-radius: 30px;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.newsletter-box small {
    color: #888;
    font-size: 0.8rem;
}

/* --- 8. FINAL CTA --- */
.final-cta-section {
    background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(18,18,18,0.96)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1920&q=80') center/cover;
    color: var(--text-light);
    padding: 110px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    color: #ddd;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- FOOTER TRUST STRIP --- */
.site-footer {
    background-color: #0b0b0b;
    color: #888;
    padding: 50px 0 35px 0;
    border-top: 1px solid var(--border-color);
}

.trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 0.9rem;
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #1a1a1a;
    padding-top: 25px;
}

.footer-bottom a {
    color: var(--text-light);
    text-decoration: none;
}

/* --- RESPONSIVE QUERIES --- */
@media(max-width: 768px) {
    .main-nav {
        display: none;
    }
    .hero-slide h1 {
        font-size: 2.3rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .hero-cta-group, .final-cta-buttons {
        flex-direction: column;
    }
    .stats-container {
        padding: 40px 20px;
    }
}




        /* --- BUTTONS --- */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--bg-dark);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(212,175,55,0.3);
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212,175,55,0.5);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        .btn-outline {
            background: transparent;
            color: var(--bg-dark);
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid var(--gold-dark);
            cursor: pointer;
            text-align: center;
            font-size: 0.9rem;
        }

        .btn-outline:hover {
            background: var(--gold-dark);
            color: #fff;
            transform: translateY(-2px);
        }

        .badge-pill {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold-dark);
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: inline-block;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        /* --- HEADER --- */
        .site-header {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-emblem {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 10px rgba(212,175,55,0.4);
        }

        .logo-text .brand-name {
            display: block;
            color: var(--text-light);
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
        }

        .logo-text .brand-sub {
            display: block;
            color: var(--gold);
            font-size: 0.55rem;
            letter-spacing: 1.5px;
        }

        .main-nav {
            display: flex;
            gap: 30px;
        }

        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: var(--gold);
        }

        /* --- PAGE HERO --- */
        .page-hero {
            background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(18,18,18,0.96)), url('https://images.unsplash.com/photo-1503676260728-1c00da094a0b?auto=format&fit=crop&w=1920&q=80') center/cover;
            color: var(--text-light);
            padding: 70px 0;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .page-hero p {
            font-size: 1.1rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- FILTER BAR --- */
        .filter-section {
            padding: 40px 0 20px 0;
            background: #fff;
            border-bottom: 1px solid #eae2d0;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .filter-btn {
            background: var(--bg-cream);
            border: 1px solid #dcd2be;
            padding: 8px 20px;
            border-radius: 20px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
            color: var(--text-main);
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--gold);
            border-color: var(--gold-dark);
            color: var(--bg-dark);
        }

        /* --- PRODUCTS CATALOG GRID --- */
        .catalog-section {
            padding: 60px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid #eae2d0;
            box-shadow: var(--shadow-subtle);
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            position: relative;
        }

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

        .product-image-container {
            height: 220px;
            position: relative;
            overflow: hidden;
            background: #f0ede6;
        }

        .product-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image-container img {
            transform: scale(1.05);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--gold-dark);
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .product-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.3rem;
            color: var(--bg-dark);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .product-short-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .product-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f0ede6;
            padding-top: 18px;
            margin-top: auto;
        }

        .product-price {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gold-dark);
        }

        .product-price.free {
            color: #2e7d32;
        }

        /* Modal Popup for Full Description */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-container {
            background: #fff;
            width: 100%;
            max-width: 700px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            max-height: 90vh;
            display: flex;
            flex-direction: column;
            animation: modalPop 0.3s ease;
        }

        @keyframes modalPop {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .modal-header {
            padding: 20px 25px;
            background: var(--bg-dark);
            color: var(--text-light);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-close {
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .modal-body {
            padding: 30px;
            overflow-y: auto;
        }

        .modal-gallery {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            overflow-x: auto;
            padding-bottom: 5px;
        }

        .modal-gallery img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #dcd2be;
        }

        .modal-body h3 {
            font-size: 1.6rem;
            color: var(--bg-dark);
            margin-bottom: 15px;
        }

        .modal-body .wysiwyg-content {
            color: #555;
            font-size: 1rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .modal-footer {
            padding: 20px 30px;
            background: var(--bg-cream);
            border-top: 1px solid #eae2d0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Responsive */
        @media(max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            .page-hero h1 {
                font-size: 2.2rem;
            }
        }
        
         /* --- BUTTONS --- */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--bg-dark);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(212,175,55,0.3);
            cursor: pointer;
            text-align: center;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212,175,55,0.5);
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
        }

        .badge-pill {
            background: rgba(212, 175, 55, 0.15);
            color: var(--gold);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .badge-status {
            background: #25d366;
            color: #fff;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* --- HEADER --- */
        .site-header {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 12px 0;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-emblem {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 10px rgba(212,175,55,0.4);
        }

        .logo-text .brand-name {
            display: block;
            color: var(--text-light);
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
        }

        .logo-text .brand-sub {
            display: block;
            color: var(--gold);
            font-size: 0.55rem;
            letter-spacing: 1.5px;
        }

        .main-nav {
            display: flex;
            gap: 30px;
        }

        .main-nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: var(--gold);
        }

        /* --- BATCH HERO SECTION --- */
        .batch-hero {
            background: linear-gradient(135deg, rgba(18,18,18,0.92), rgba(18,18,18,0.96)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1920&q=80') center/cover;
            color: var(--text-light);
            padding: 80px 0;
        }

        .batch-hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .batch-hero-content h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .batch-hero-content p {
            font-size: 1.1rem;
            color: #ccc;
            margin-bottom: 25px;
        }

        .batch-meta-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.9rem;
            color: var(--gold-light);
        }

        .batch-meta-pills span {
            background: rgba(255,255,255,0.08);
            padding: 6px 14px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Pricing Card Widget */
        .pricing-widget {
            background: #fff;
            color: var(--text-main);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            border: 1px solid #eae2d0;
            text-align: center;
        }

        .pricing-widget .price {
            font-size: 2.2rem;
            font-family: var(--font-heading);
            color: var(--gold-dark);
            margin: 15px 0 5px 0;
        }

        .pricing-widget .seats-left {
            font-size: 0.85rem;
            color: #d9534f;
            font-weight: 700;
            margin-bottom: 20px;
        }

        /* --- MAIN CONTENT LAYOUT --- */
        .batch-main-layout {
            padding: 80px 0;
        }

        .layout-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        .content-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #eae2d0;
            box-shadow: var(--shadow-subtle);
            margin-bottom: 35px;
        }

        .content-card h2 {
            font-size: 1.8rem;
            color: var(--bg-dark);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--bg-cream);
        }

        .content-card p, .content-card li {
            color: #555;
            font-size: 1.02rem;
            margin-bottom: 15px;
        }

        .content-card ul {
            padding-left: 20px;
        }

        /* Faculty Profile Box */
        .faculty-box {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-cream);
            padding: 20px;
            border-radius: 14px;
            border: 1px solid #eae2d0;
        }

        .faculty-avatar {
            width: 70px;
            height: 70px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--bg-dark);
        }

        /* Sidebar Schedule Widget */
        .sidebar-card {
            background: #fff;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #eae2d0;
            box-shadow: var(--shadow-subtle);
            margin-bottom: 30px;
        }

        .sidebar-card h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--bg-dark);
        }

        .schedule-list {
            list-style: none;
        }

        .schedule-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #eae2d0;
            font-size: 0.95rem;
        }

        .schedule-list li span:last-child {
            font-weight: 600;
            color: var(--bg-dark);
        }

        /* Registration Form Styles */
        .reg-form .form-group {
            margin-bottom: 20px;
        }

        .reg-form label {
            display: block;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--bg-dark);
        }

        .reg-form input, .reg-form select, .reg-form textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #dcd2be;
            font-family: var(--font-body);
            font-size: 0.95rem;
            background-color: #faf8f5;
        }

        .reg-form input:focus, .reg-form select:focus, .reg-form textarea:focus {
            outline: none;
            border-color: var(--gold);
            background-color: #fff;
        }

        /* FAQs Accordion */
        .faq-item {
            border-bottom: 1px solid #eae2d0;
            padding: 15px 0;
        }

        .faq-question {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--bg-dark);
            cursor: pointer;
        }

        .faq-answer {
            margin-top: 8px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Responsive */
        @media(max-width: 900px) {
            .batch-hero-grid, .layout-grid {
                grid-template-columns: 1fr;
            }
        }