/* ========================================
   THOUSAND PETALED LOTUS - MAIN STYLES
   ======================================== */

/* --- 🎨 Color Palette & Variables --- */
:root {
    --primary-purple: #4A2066;
    --secondary-teal: #007A8A;
    --sacred-gold: #F8E7C5;
    --light-bg: #FCFCFC;
    --dark-text: #222222;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styling --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--light-bg);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--primary-purple);
    margin-bottom: 0.5em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: 3.5em; line-height: 1; }
h2 { font-size: 2.8em; line-height: 1.1; }
h3 { font-size: 2em; line-height: 1.2; }
h4 { font-size: 1.5em; line-height: 1.3; }

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 3em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
    font-family: var(--font-body);
    text-transform: none;
}

/* --- Header --- */
header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
    position: relative;
}

.logo img {
    max-width: 100%;
    height: 100px;
    width: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95em;
    transition: var(--transition-smooth);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-teal);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--secondary-teal);
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-cta-mobile {
    display: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6D3D96, var(--primary-purple));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(74, 32, 102, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0093A8, var(--secondary-teal));
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 122, 138, 0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--sacred-gold);
    border: 2px solid var(--sacred-gold);
    box-shadow: none;
}

.btn-outline-white:hover {
    background-color: var(--sacred-gold);
    color: var(--primary-purple);
    transform: scale(1.05);
}

.btn-outline-gold {
    background-color: #f8e7c5;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    box-shadow: none;
}

.btn-outline-gold:hover {
    background-color: var(--primary-purple);
    color: white;
    transform: scale(1.05);
}

.btn-light {
    background: white;
    color: var(--secondary-teal);
    font-size: 1.1em;
}

.btn-light:hover {
    background: var(--sacred-gold);
    color: var(--primary-purple);
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.15em;
}

.btn-small { /* Added for cookie banner */
    padding: 10px 18px;
    font-size: 0.9em;
    font-weight: 500;
}

/* --- Hero Section --- */
#hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #6D3D96 45%, var(--secondary-teal) 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1.2;
}

.hero-text h1 {
    color: var(--sacred-gold);
    line-height: 1.1;
    font-size: 50px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

/* Accreditation Logos */
.accreditation-logos {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.accreditation-item {
    background: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.accreditation-item img {
    height: 80px;
    width: auto;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sacred-gold);
}

.badge i {
    font-size: 2em;
}

.badge span {
    font-size: 0.9em;
    line-height: 1.3;
}

/* --- Hero Form --- */
.hero-form-wrapper {
    flex: 0.8;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--sacred-gold);
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    font-size: 2.5em;
    color: var(--secondary-teal);
    margin-bottom: 10px;
}

.form-header h3 {
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 1.8em;
}

.offer-expires {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.95em;
}

.hero-form input,
.hero-form select,
.modal-form input,
.modal-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.hero-form input:focus,
.hero-form select:focus,
.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--secondary-teal);
}

.form-note {
    text-align: center;
    font-size: 0.85em;
    color: #666;
    margin-top: 15px;
}

.form-note i {
    color: var(--secondary-teal);
    margin-right: 5px;
}

.form-success {
    text-align: center;
    padding: 30px;
}

.form-success i {
    font-size: 4em;
    color: #27ae60;
    margin-bottom: 15px;
}

.form-success h4 {
    color: var(--primary-purple);
    margin-bottom: 10px;
}

/* --- Intro Section with Video --- */
#intro {
    background: white;
}

.intro-with-video {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.intro-video-section {
    position: sticky;
    top: 100px;
}

.vertical-video-container {
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    color: white;
    padding: 15px 0 0;
}

.video-caption h4 {
    color: var(--sacred-gold);
    font-size: 1.1em;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.video-caption p {
    font-size: 0.9em;
    opacity: 0.9;
}

.intro-content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.intro-content-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.highlight-item i {
    font-size: 3em;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.highlight-item h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.highlight-item p {
    font-size: 0.95em;
    color: #666;
}

.stats-box-centered {
    background: linear-gradient(180deg, var(--primary-purple), #6D3D96);
    border-radius: 20px;
    border: 3px solid var(--sacred-gold);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-strong);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.stats-box-centered .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-box-centered .stat-item:last-of-type {
    border-right: none;
}

.stat-item h3 {
    color: var(--sacred-gold);
    font-size: 3.5em;
    margin-bottom: 5px;
}

.stat-item p {
    color: white;
    font-size: 1.1em;
    font-weight: 500;
}

.stats-note {
    grid-column: 1 / -1;
    font-style: italic;
    font-size: 30px;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* --- Curriculum Section --- */
#curriculum {
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.curriculum-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    border-top: 5px solid var(--secondary-teal);
    transition: var(--transition-smooth);
    position: relative;
}

.curriculum-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.curriculum-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.curriculum-icon i {
    font-size: 2em;
    color: white;
}

.curriculum-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.curriculum-hours {
    display: inline-block;
    background: var(--sacred-gold);
    color: var(--primary-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.curriculum-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.curriculum-topics {
    list-style: none;
    padding: 0;
}

.curriculum-topics li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95em;
    color: #666;
}

.curriculum-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

.curriculum-cta {
    background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
    border-top-color: var(--primary-purple);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cta-content i {
    font-size: 3em;
    color: var(--sacred-gold);
    margin-bottom: 15px;
}

.cta-content h3 {
    color: var(--sacred-gold);
    margin-bottom: 15px;
}

.cta-content p {
    color: white;
    margin-bottom: 20px;
}

/* --- Testimonial Section with Dual Video Carousel --- */
.testimonial-section {
    text-align: center;
    margin-top: 70px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 16px;
}

.testimonial-section h3 {
    color: var(--secondary-teal);
    font-size: 2em;
    margin-bottom: 40px;
}

.dual-video-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 70px;
}

.dual-video-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.dual-video-slide {
    min-width: 100%;
    display: none;
    gap: 40px;
    justify-content: center;
    animation: fadeIn 0.5s;
}

.dual-video-slide.active {
    display: flex;
}

.video-card {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shorts-video-wrapper {
    position: relative;
    width: 315px;
    height: 560px;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
}

.shorts-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info {
    margin-top: 25px;
    max-width: 315px;
}

.video-info h4 {
    color: var(--primary-purple);
    font-size: 1.3em;
    margin-bottom: 8px;
}

.video-info p {
    color: #666;
    font-size: 1em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #6D3D96, var(--secondary-teal));
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--secondary-teal);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--primary-purple);
}

.testimonial-quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.quote-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--secondary-teal);
}

.quote-item p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.quote-item span {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9em;
}

/* --- Course Overview Section --- */
/* --- Course Overview Section (Revised Split Layout) --- */
#course-overview {
    background: white; /* Clean white background */
    padding: 80px 0;
}

/* Centered Header Styling */
.course-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto; /* Centered, with bottom margin */
}

.course-header-centered h2 {
    color: var(--primary-purple);
    font-size: 2.6em;
    margin-bottom: 15px;
    line-height: 1.2;
}

.intro-paragraph-centered {
    font-size: 1.15em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Full-Width Video Container */
.course-video-full-width {
    margin-bottom: 60px;
    /* Optional: Limit video width slightly for aesthetics */
    max-width: 1000px; 
    margin-left: auto;
    margin-right: auto;
}

.horizontal-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--secondary-teal); /* Teal border to frame the video */
}

.horizontal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 3-Column Features Grid Styling */
.course-features-grid-3x2 {
    display: grid;
    /* 3 feature cards per row */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card-icon-top {
    /* Features as clean cards with center alignment */
    padding: 30px;
    background: #f8f9fa; /* Light grey background for the cards */
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    border-bottom: 4px solid var(--primary-purple); /* Purple accent */
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card-icon-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-icon-top i {
    color: var(--secondary-teal);
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block; /* Ensure the icon is centered */
}

.feature-card-icon-top h4 {
    color: var(--primary-purple);
    font-size: 1.15em;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card-icon-top p {
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* CTA Wrapper for centering the button */
.cta-center-wrapper {
    text-align: center;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .course-features-grid-3x2 {
        /* Change to 2 columns on tablets */
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .course-features-grid-3x2 {
        /* Single column on mobile for best readability */
        grid-template-columns: 1fr;
    }
    .course-header-centered h2 {
        font-size: 2em;
    }
}

/* --- Mentor Section (New Aligned Layout) --- */
#mentor {
    background: linear-gradient(to bottom, white, #f8f9fa);
}

.mentor-content-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

/* Left Side - Image and Name */
.mentor-profile-left {
    position: sticky;
    top: 100px;
}

.mentor-image-container {
    position: relative;
    margin-bottom: 30px;
}

.mentor-image-container img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--sacred-gold);
}

.mentor-badge-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 122, 138, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.mentor-badge-float i {
    font-size: 1.5em;
}

.mentor-badge-float span {
    font-weight: 700;
    font-size: 1em;
}

.mentor-name-section {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.mentor-credentials-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.mentor-credentials-icons span {
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mentor-name-section h2 {
    color: var(--primary-purple);
    font-size: 2.8em;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.mentor-name-section h4 {
    color: var(--secondary-teal);
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Right Side - Content */
.mentor-content-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mentor-intro-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.mentor-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.expertise-card {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 4px solid var(--secondary-teal);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-strong);
}

.expertise-card i {
    color: var(--secondary-teal);
    font-size: 1.5em;
    flex-shrink: 0;
    margin-top: 2px;
}

.expertise-card span {
    color: #555;
    font-size: 1em;
    line-height: 1.5;
}

.mentor-quote-section {
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    padding: 40px;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-strong);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 40px;
    background: var(--sacred-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark i {
    color: var(--primary-purple);
    font-size: 1.5em;
}

.mentor-quote-section blockquote {
    color: white;
    font-size: 1.2em;
    font-style: italic;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.mentor-quote-section cite {
    color: var(--sacred-gold);
    font-weight: 600;
    font-size: 1em;
    font-style: normal;
}

.mentor-highlight-box {
    background: linear-gradient(135deg, var(--sacred-gold), #f4d190);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-subtle);
}

.mentor-highlight-box i {
    color: var(--primary-purple);
    font-size: 2.5em;
    flex-shrink: 0;
}

.mentor-highlight-box p {
    color: var(--primary-purple);
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0;
}

/* Student Testimonials */
.mentor-testimonials {
    margin-top: 60px;
    text-align: center;
}

.mentor-testimonials h3 {
    color: var(--primary-purple);
    font-size: 2.2em;
    margin-bottom: 40px;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    border-top: 4px solid var(--secondary-teal);
    transition: var(--transition-smooth);
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.testimonial-card p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-purple);
    font-size: 1em;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85em;
}

/* --- Investment Section --- */
#investment {
    background: white;
}

.course-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--sacred-gold);
    position: relative;
    transition: var(--transition-smooth);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-teal));
    border-radius: 16px 16px 0 0;
}

.course-card:hover {
    border-color: var(--secondary-teal);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.weekend-badge {
    background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
}

.hybrid-badge {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.course-card h3 {
    font-size: 2em;
    color: var(--primary-purple);
    border-bottom: 2px solid var(--sacred-gold);
    padding-bottom: 15px;
    margin-bottom: 25px;
    margin-top: 0;
}

.course-schedule {
    margin-bottom: 30px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
}

.schedule-item i {
    color: var(--secondary-teal);
    font-size: 1.2em;
}

.price-container {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, white);
    border-radius: 12px;
}

.price-label {
    display: block;
    font-size: 0.9em;
    color: #999;
    margin-bottom: 5px;
}

.price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.3em;
    display: block;
    margin-bottom: 10px;
}

.price-label-earlybird {
    display: block;
    font-size: 1em;
    color: var(--secondary-teal);
    font-weight: 600;
    margin-bottom: 8px;
}

.price-earlybird {
    color: var(--secondary-teal);
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    font-family: var(--font-body);
}

.price-currency {
    font-size: 0.4em;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
    line-height: 2;
}

.hybrid-price {
    color: var(--primary-purple);
}

.savings {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-top: 10px;
}

.features-list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.features-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95em;
    color: #555;
}

.features-list li::before {
    content: '✓';
    color: var(--secondary-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.hybrid-card .features-list li::before {
    color: var(--primary-purple);
}

.urgency-text {
    text-align: center;
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 15px;
}

/* --- Payment Info --- */
.payment-info {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 40px;
    border-radius: 16px;
}

.payment-info h3 {
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.payment-info h3 i {
    color: var(--secondary-teal);
    margin-right: 10px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.payment-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.payment-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.payment-option i {
    font-size: 3em;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.payment-option h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.payment-option p {
    color: #666;
    font-size: 0.95em;
}

/* --- Grid Gallery Section with Lightbox --- */
.gallery-section {
    margin-top: 70px;
    text-align: center;
}

.gallery-section h3 {
    color: var(--primary-purple);
    font-size: 2em;
    margin-bottom: 40px;
}

.gallery-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.gallery-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.gallery-grid-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(74, 32, 102, 0.95), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay i {
    color: var(--sacred-gold);
    font-size: 3em;
    margin-bottom: 10px;
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.2em;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--sacred-gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 30px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-teal);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 1.2em;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 8px;
    max-width: 80%;
}

/* --- FAQ Section --- */
#faq {
    background: white;
}

.accordion-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.accordion-item {
    border: 2px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--secondary-teal);
}

.accordion-header {
    background-color: var(--light-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-purple);
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f0f0f0;
}

.accordion-icon {
    font-size: 1.2em;
    transition: transform 0.3s;
    color: var(--secondary-teal);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: white;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 20px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1em;
}

/* --- Footer CTA Section with Form --- */
#footer-cta {
    background: linear-gradient(rgba(74, 32, 102, 0.95), rgba(0, 122, 138, 0.95)), 
                url('https://placehold.co/1200x400/4A2066/F8E7C5?text=Transform+Your+Life');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

#footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-cta-content-left h2 {
    color: var(--sacred-gold);
    font-size: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-cta-content-left > p {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 400;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.footer-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cta-stat i {
    font-size: 2.5em;
    color: var(--sacred-gold);
}

.cta-stat span {
    font-size: 1em;
    font-weight: 600;
}

.footer-cta-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-cta-guarantee {
    font-size: 1em;
    color: var(--sacred-gold);
    font-weight: 600;
    margin-top: 30px;
}

.footer-cta-guarantee i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Footer Form on Right */
.footer-cta-form-right {
    position: relative;
}

.footer-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--sacred-gold);
}

.footer-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 25px;
}

.footer-form-wrapper .form-header i {
    font-size: 2.5em;
    color: var(--secondary-teal);
    margin-bottom: 10px;
}

.footer-form-wrapper .form-header h3 {
    color: var(--primary-purple);
    margin-bottom: 8px;
    font-size: 1.8em;
}

.footer-form-wrapper .form-header p {
    color: #666;
    font-size: 1em;
}

.footer-form input,
.footer-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.footer-form input:focus,
.footer-form select:focus {
    outline: none;
    border-color: var(--secondary-teal);
}

/* --- Site Footer --- */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 60px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--sacred-gold);
    font-size: 1.3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
    font-size: 1.2em;
}

.footer-social a:hover {
    background: var(--secondary-teal);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95em;
}

.footer-col ul li a:hover {
    color: var(--sacred-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-teal);
    font-size: 1.1em;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--sacred-gold);
}

/* --- Footer Bottom --- */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9em;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--sacred-gold);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
    color: var(--sacred-gold);
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 10px;
}

/* --- Floating Mobile CTA --- */
.floating-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary-purple), #6D3D96);
    padding: 12px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

.floating-cta-content {
    display: flex;
    justify-content: space-around;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.floating-cta-content .btn {
    flex: 1;
    padding: 12px 10px;
    font-size: 0.9em;
}

/* --- Modal --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-backdrop.open {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    padding: 45px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-strong);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
    border: 4px solid var(--secondary-teal);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-backdrop.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5em;
    color: #999;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-purple);
    background: #f0f0f0;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header i {
    font-size: 3em;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.modal-header h3 {
    color: var(--primary-purple);
    font-size: 2em;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 1em;
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--secondary-teal);
}

/* ============================================= */
/* COOKIE CONSENT BANNER STYLES (CONSTANT) */
/* ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text); /* Dark background */
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none; /* Controlled by JS initially */
    justify-content: center;
    align-items: center;
    font-family: var(--font-body);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.cookie-content p {
    flex-grow: 1;
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--secondary-teal);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .cookie-actions {
        width: 100%;
        justify-content: stretch;
        margin-top: 10px;
    }
    .cookie-actions .btn {
        flex: 1;
        padding: 10px;
    }
}


/* --- Responsive Design --- */
@media (max-width: 1200px) {
    h1 { font-size: 3em; }
    h2 { font-size: 2.5em; }
    
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
    
    .masonry-gallery {
        columns: 3;
    }
}

@media (max-width: 992px) {
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-whatsapp {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 999;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav a {
        width: 100%;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 1.1em;
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .nav-cta-mobile {
        display: block;
        background: linear-gradient(135deg, var(--secondary-teal), #0093A8);
        color: white;
        text-align: center;
        border-radius: 8px;
        margin-top: 20px;
        padding: 15px !important;
    }
    
    /* Hero Section */
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .accreditation-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-form-wrapper {
        width: 100%;
        max-width: 500px;
    }
    
    /* Course Overview Responsive */
    .course-overview-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .horizontal-video-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .course-content-section {
        text-align: left;
    }
    
    /* Dual Video Carousel - Stack Videos */
    .dual-video-slide {
        flex-direction: column;
        gap: 30px;
    }
    
    .video-card {
        flex: 1;
    }
    
    /* Footer CTA with Form */
    .footer-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-cta-content-left h2 {
        font-size: 2.5em;
    }
    
    .footer-cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-stat {
        align-items: center;
    }
    
    .footer-cta-actions {
        justify-content: center;
    }
    
    .footer-form-wrapper {
        padding: 30px 20px;
    }
    
    /* Intro Section */
    .intro-with-video {
        grid-template-columns: 1fr;
    }
    
    .intro-video-section {
        position: static;
        max-width: 350px;
        margin: 0 auto 30px;
    }
    
    .stats-box-centered {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-box-centered .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stats-box-centered .stat-item:nth-child(2),
    .stats-box-centered .stat-item:nth-child(4) {
        border-right: none;
    }
    
    /* Mentor Section Responsive */
    .mentor-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mentor-profile-left {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mentor-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .accordion-container {
        grid-template-columns: 1fr;
    }
    
    .course-options {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-gallery {
        columns: 2;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-footer-cta {
        display: block;
    }
    
    #footer-cta h2 {
        font-size: 2.5em;
    }
    
    section {
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2em; }
    h2 { font-size: 2em; }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-quotes {
        grid-template-columns: 1fr;
    }
    
    .footer-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .masonry-gallery {
        columns: 1;
    }
    
    .gallery-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 35px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .video-carousel-container {
        padding: 0 50px;
    }
    
    .shorts-video-wrapper {
        width: 280px;
        height: 498px;
    }
    
    .stats-box-centered {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .stats-box-centered .stat-item {
        border-right: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
    
    .hero-text h1 {
        font-size: 1.8em;
    }
    
    .badge {
        font-size: 0.8em;
    }
    
    .price-earlybird {
        font-size: 2.8em;
    }
    
    .footer-cta-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .video-carousel-container {
        padding: 0 40px;
    }
    
    .shorts-video-wrapper {
        width: 250px;
        height: 444px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1em;
    }
}


/* --- CSS Fixes and Final Closing Braces --- */
        .hero-form-wrapper {
            flex: 0.8;
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            border: 3px solid var(--sacred-gold);
        }

        .form-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .form-header h3 {
            color: var(--primary-purple);
        } 
        .accreditation-logos { gap: 10px; }
        
}




/* ============================================= */
/* --- FAQ PAGE SPECIFIC STYLES (faq-page.html) --- */
/* ============================================= */

/* Replicating key variables for consistency, though they exist in :root */
/* :root {
    --primary-purple: #4A2066;
    --secondary-teal: #007A8A;
    --sacred-gold: #F8E7C5;
    --dark-text: #222222;
} */

.faq-body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #fcfcfc;
    line-height: 1.6;
}

.faq-h1, .faq-h4 {
    font-family: var(--font-display);
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Specific Styles to match the main page */
.faq-header {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.faq-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100px; /* Match existing header height */
}

/* Search Bar Styling */
.faq-search-bar-input {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-teal);
    transition: all 0.3s;
}

/* FAQ Categories Sidebar */
.faq-category-list button {
    transition: all 0.2s;
    border-left: 4px solid transparent;
    font-weight: 500;
    text-align: left;
    width: 100%;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 5px;
    cursor: pointer;
}
.faq-category-list button.faq-active,
.faq-category-list button:hover {
    background-color: #f0f0f0;
    color: var(--primary-purple);
    border-left-color: var(--primary-purple);
}

/* FAQ Accordion Styling */
.faq-item-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: white;
    transition: box-shadow 0.3s;
}

.faq-item-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-question-header {
    background-color: white;
    cursor: pointer;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-purple);
    transition: background-color 0.3s;
    border-bottom: 1px solid #eee;
}

.faq-question-header:hover {
    background-color: #f8f8f8;
}

.faq-icon-plus {
    transition: transform 0.3s;
    color: var(--secondary-teal);
}

.faq-question-header.faq-active .faq-icon-plus {
    transform: rotate(45deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: #fff;
    padding: 0 20px;
}

.faq-answer-content.faq-open {
    max-height: 1000px;
    padding: 20px;
}

/* Sticky Sidebar enhancement */
.faq-sticky-sidebar {
    position: sticky;
    top: 120px; /* Offset from header */
    align-self: flex-start; /* Important for sticky behavior inside a grid */
}

/* Footer Replicated Styles */
.faq-footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}
.faq-footer h4 { color: var(--sacred-gold); }
.faq-footer a { color: #ccc; }
.faq-footer-contact { list-style: none; padding: 0; }
.faq-footer-contact i { color: var(--secondary-teal); }

/* Responsive adjustments */
@media (max-width: 992px) {
    .faq-sticky-sidebar {
        position: static;
        top: auto;
    }
}