:root {
    /* Color Palette */
    --primary-color: #0066ff;
    --primary-light: #3385ff;
    --primary-lighter: #66a3ff;
    --secondary-color: #00c2ff;
    --bg-dark: #050914;
    --bg-darker: #02040a;
    
    /* Rainbow Colors */
    --rb-blue: #0066ff;
    --rb-purple: #9d00ff;
    --rb-green: #00ff66;
    --rb-orange: #ff6600;
    --rb-pink: #ff007f;
    --rb-cyan: #00ffff;

    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --text-light-gray: #e6e6e6;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-english: 'Poppins', sans-serif;
    --font-malayalam: 'Anek Malayalam', sans-serif;
    
    /* Spacing & Layout */
    --section-spacing: 120px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-md: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   1. BASE STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-darker);
    color: var(--text-gray);
}

body {
    font-family: var(--font-english);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.malayalam-text {
    font-family: var(--font-malayalam) !important;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-section { margin-bottom: 60px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.bold { font-weight: 700; }

/* ==========================================================================
   AMBIENT BACKGROUND
   ========================================================================== */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-darker);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.2) 0%, transparent 70%);
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 5%) scale(1.1); }
    100% { transform: translate(-5%, 10%) scale(0.9); }
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-white);
    line-height: 1.2;
}

.huge-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light-gray);
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.large-title {
    font-size: 3rem;
    line-height: 1.4;
}

.highlight-text {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

.cta-micro-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   3. COMPONENTS (GLASSMORPHISM, BUTTONS)
   ========================================================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 32px;
}

.premium-glow {
    position: relative;
}

.premium-glow::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 32px;
    height: 48px;
    border-radius: var(--radius-pill);
    font-family: var(--font-english);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: var(--transition-md);
    border: none;
    outline: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.6), inset 0 2px 0 rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--glass-highlight);
}

.btn-large {
    padding: 0 40px;
}

.btn-full {
    width: 100%;
}

/* Pulse Animation for CTAs */
.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), inset 0 2px 0 rgba(255,255,255,0.2);
}

.whatsapp-btn.pulse-btn {
    animation: btnPulseWA 2s infinite;
}

@keyframes btnPulseWA {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   4. LAYOUT SECTIONS
   ========================================================================== */
section {
    padding: var(--section-spacing) 0;
    position: relative;
    z-index: 10;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

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

/* Event Badges */
.event-badge-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    color: var(--text-light-gray);
    backdrop-filter: blur(10px);
}

/* Countdown */
.countdown-wrapper {
    padding: 24px;
    display: inline-block;
}

.countdown-grid {
    display: flex;
    gap: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 70px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-lighter);
    margin-top: 4px;
    letter-spacing: 1px;
}

.seats-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    color: #ffcccc;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff3333;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3333;
    animation: pulse-red 1.5s infinite;
}

/* Hero Video Inline */
.hero-video-inline-wrapper {
    width: 80%;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.hero-video-thumbnail {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-video-inline-wrapper:hover .hero-video-thumbnail {
    transform: scale(1.05);
}

.hero-play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 194, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-play-button i {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-left: 6px;
}

.hero-video-inline-wrapper:hover .hero-play-button {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 194, 255, 0.7);
}

.hero-video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    object-fit: cover;
    background: black;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--text-white), transparent);
}

/* SECTION 2: Story Section */
.story-container {
    max-width: 800px;
}

.story-desc-multi {
    font-size: 1.25rem;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* SECTION 3: Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.warning-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.blinking-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
    flex-shrink: 0;
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { opacity: 1; box-shadow: 0 0 15px rgba(255, 51, 51, 0.6); }
    50% { opacity: 0.4; box-shadow: 0 0 5px rgba(255, 51, 51, 0.2); }
    100% { opacity: 1; box-shadow: 0 0 15px rgba(255, 51, 51, 0.6); }
}

/* SECTION 4: Solution Section */
.solution-grid-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.solution-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
    transition: var(--transition-md);
}

.solution-icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.3);
}

.solution-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px rgba(0, 194, 255, 0.5));
}

.solution-icon-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
}

/* SECTION 5: AI Modules */
.modules-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.module-card {
    position: relative;
    transition: var(--transition-md);
    overflow: hidden;
}

/* Rainbow Border Magic */
.rainbow-border {
    border: none; /* Hide default border */
}

.rainbow-border::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--rb-blue), var(--rb-purple), var(--rb-pink), var(--rb-orange), var(--rb-cyan), var(--rb-green));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: rainbowAnim 8s ease infinite;
}

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

.module-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.module-content i {
    font-size: 3rem;
}

.module-card:hover {
    transform: translateY(-5px);
}

.blue-glow:hover { box-shadow: 0 0 40px rgba(0, 102, 255, 0.3); }
.purple-glow:hover { box-shadow: 0 0 40px rgba(157, 0, 255, 0.3); }

/* SECTION 6: Target Audience */
.audience-pill-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pill-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition-md);
    cursor: default;
}

.pill-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pill-card span {
    font-weight: 500;
    font-size: 1.05rem;
    color: #ffffff;
}

.pill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* SECTION 7: Coach Muhsin */
.coach-grid {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 60px;
    align-items: center;
}

.coach-image-wrapper-slim {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coach-portrait-single {
    width: 100%;
    height: auto;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

.coach-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.coach-img.slide-active {
    opacity: 1;
}

.wide-profile {
    padding: 40px;
}

.coach-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #fff, var(--primary-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.coach-subtitle {
    font-size: 1.25rem;
    color: var(--primary-lighter);
    margin-bottom: 24px;
}

.coach-bio {
    font-size: 14px;
    margin-bottom: 32px;
}

.coach-achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.achievement-card {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.achievement-card i {
    font-size: 1.5rem;
    color: var(--primary-lighter);
}

/* SECTION 8: Event Details */
.event-card-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
}

.event-details-col {
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #fff, var(--primary-lighter));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1.05rem;
    color: var(--text-white);
}

.meta-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.event-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-light-gray);
}

.event-poster-col {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-poster-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-poster-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 102, 255, 0.2);
}

/* SECTION 9: Gallery Slider */
.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.gallery-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    /* transition is handled by JS */
}

.gallery-slide-img {
    width: 360px; /* 3 visible on 1200px container roughly */
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gallery-slide-img:hover {
    transform: scale(1.03);
    border-color: rgba(0, 194, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 194, 255, 0.3);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-md);
}

.gallery-dot.active {
    background: var(--primary-lighter);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary-lighter);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active {
    display: flex;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
}

/* SECTION 10: About Pinnacle Hub */
.dhanya-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dhanya-text-col {
    display: flex;
    flex-direction: column;
}

.dhanya-text {
    font-size: 1.15rem;
    line-height: 1.8;
}

.dhanya-features-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feature-list-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.feature-list-card i {
    font-size: 1.5rem;
}

.dhanya-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-img-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

/* FOOTER BOOKING SECTION */
.footer-booking-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to top, rgba(0, 102, 255, 0.05), transparent);
    position: relative;
    z-index: 10;
}

.footer-booking-container {
    max-width: 600px;
    margin: 0 auto;
}

.booking-header {
    margin-bottom: 32px;
}

.compact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-white);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    font-size: 1.3rem;
    color: var(--primary-lighter);
}

.input-wrapper input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding:  0 24px 0 52px; height: 48px;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-md);
    font-family: var(--font-english);
    outline: none;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-lighter);
    background: rgba(0, 0, 0, 0.4);
}

/* FINAL CTA */
.cinematic-container {
    padding: 120px 0 40px;
}

/* Floating WA Button */
.floating-wa-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 900;
    transition: var(--transition-md);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
}

.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    background: rgba(5, 9, 20, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 800;
    border-top: 1px solid var(--glass-border);
}

/* Hide Sticky Bar on Desktop by default */
.mobile-sticky-bar {
    display: none;
}

/* ========================================= */
/* MEDIA QUERIES (RESPONSIVE)                */
/* ========================================= */
@media (max-width: 992px) {
    :root {
        --section-spacing: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-video-inline-wrapper {
        width: 100%;
        max-width: 350px;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-grid {
        justify-content: center;
    }
    
    .event-card-2col {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    
    .dhanya-grid-2col {
        grid-template-columns: 1fr;
    }
    
    /* NEW: Premium Modules */
    .module-card-premium {
        display: flex;
        flex-direction: column;
        border-radius: 24px;
        overflow: hidden;
        background: rgba(10, 15, 30, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid var(--glass-border);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }
    
    .module-card-premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    }
    
    .module-premium-img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .module-content-premium {
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex: 1;
        justify-content: center;
        text-align: center;
    }
    
    .module-subtitle {
        font-size: 0.95rem;
        color: var(--text-light-gray);
        line-height: 1.5;
    }

    /* NEW: Testimonials Slider */
    .testimonial-section {
        padding: var(--section-spacing) 0;
    }

    .testimonial-swiper {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px 0;
        overflow: hidden;
    }
    
    .testimonial-img {
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        image-rendering: auto;
        border-radius: 20px;
        border: 1px solid var(--glass-border);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(8px);
        display: block;
        margin: 0 auto;
    }
    
    .testimonial-nav {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(0, 102, 255, 0.1);
        border: 1px solid rgba(0, 102, 255, 0.3);
        color: var(--text-white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 0 15px rgba(0, 102, 255, 0.2);
        z-index: 10;
    }
    
    .testimonial-nav-btn:hover {
        background: rgba(0, 102, 255, 0.3);
        box-shadow: 0 0 25px rgba(0, 102, 255, 0.4);
        transform: scale(1.05);
    }

    .cta-helper-text {
        font-size: 11px;
        font-style: italic;
        font-weight: 400;
        color: rgba(255,255,255,0.7);
        text-align: center;
        letter-spacing: 0.3px;
        margin-bottom: 8px;
        display: block;
    }
    
    .event-meta-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-slider-track {
        /* Mobile slider adjustments will be done in JS */
    }

    .gallery-slide-img {
        width: 85vw; /* 1 image nearly full width */
    }
    
    .coach-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-pill-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pill-card {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 16px 12px;
        gap: 12px;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    .floating-wa-btn {
        bottom: 90px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .huge-title { font-size: 1.85rem; }
    .hero-title { font-size: 2.1rem; line-height: 1.25; }
    .section-title { font-size: 1.85rem; }
    .story-desc-multi { font-size: 14px; }
    
    .module-card-premium {
        margin-bottom: 20px;
    }
    
    .module-premium-img {
        height: 200px;
    }
    
    .cta-helper-text { font-size: 10px; }
    
    .module-card-premium {
        margin-bottom: 20px;
    }
    
    .glass-card { padding: 24px; border-radius: 22px; }
    
    .event-meta {
        grid-template-columns: 1fr;
    }

    .event-badge-blocks {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }

    .countdown-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .countdown-item {
        min-width: auto;
        padding: 10px 8px;
    }

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

    .countdown-label {
        font-size: 0.65rem;
    }
    
    .coach-image-wrapper-slim {
        width: 75%;
        margin: 0 auto;
        min-height: auto;
        aspect-ratio: 4/5;
    }
    
    .modules-grid-2 {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        font-size: 13px;
    }

    .input-wrapper input {
        padding:  0 24px 0 52px; height: 48px;
        padding-left: 52px;
        height: 48px;
    }

    .compact-form {
        gap: 20px;
    }
    
    .horizontal-gallery .gallery-img {
        height: 200px;
    }
    
    .coach-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-pill-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pill-card {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 12px 24px;
        gap: 16px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        box-shadow: none;
    }

    .mobile-sticky-bar {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 30, 0.85);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    }

    .sticky-bar-content {
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (min-width: 1200px) {
    .testimonial-img {
        max-width: 300px;
        max-height: 420px;
    }
}

/* Hero Play Button */
.hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.7);
    background: rgba(255, 255, 255, 0.3);
}

/* Testimonial Swiper Cursors */
.testimonial-swiper {
    cursor: grab;
}

.testimonial-swiper:active {
    cursor: grabbing;
}
