/* 
   NEXTGEN IICONIC MISS • MR • MRS INDIA 2026
   Premium Styling 
*/

:root {
    /* Color Palette */
    --clr-bg-dark: #0a0a0a;
    --clr-bg-light: #111111;
    --clr-primary-gold: #d4af37;
    --clr-light-gold: #f3e5ab;
    --clr-dark-gold: #aa8628;
    --clr-text-main: #ffffff;
    --clr-text-muted: #cccccc;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

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

/* Typography Classes */
.gold-text {
    color: var(--clr-primary-gold);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.center {
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.align-center {
    align-items: center;
}

.relative {
    position: relative;
}

.z-index-1 {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

/* Buttons */
.btn-primary, .btn-primary-sm, .btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary-gold), var(--clr-dark-gold));
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
}

.btn-primary-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--clr-primary-gold), var(--clr-dark-gold));
    color: #000;
}

.btn-primary-sm:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--clr-primary-gold);
    color: var(--clr-primary-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Glassmorphism Utility */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 45px; /* Height of upper nav */
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    top: 0; /* Move to top when scrolled if desired, or keep at 45px */
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.header-logo {
    height: 130px; /* Substantially increased to meet user's "big" requirement */
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary-gold);
    transition: var(--transition-smooth);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--clr-primary-gold);
}

/* =========================================
   FLOATING ACTIONS
   ========================================= */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.wa-btn {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 2rem;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.apply-btn {
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--clr-primary-gold), var(--clr-dark-gold));
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: auto;
    border-radius: 8px;
    transform: rotate(180deg);
}

.apply-btn:hover {
    transform: rotate(180deg) scale(1.05);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    pointer-events: none;
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.3) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
}

.spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulseSpotlight 4s infinite alternate;
}

@keyframes pulseSpotlight {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-primary-gold);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
}

.title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.8s;
}

.glow-text {
    color: var(--clr-primary-gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    display: block;
    font-size: 3rem;
    margin-top: 10px;
}

.description {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.1s;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.4s;
}

.event-details i {
    color: var(--clr-primary-gold);
    margin-right: 8px;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    background-color: var(--clr-bg-light);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.about-features i {
    color: var(--clr-primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.about-image-grid {
    position: relative;
}

.grid-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
}

.grid-img img {
    transition: var(--transition-smooth);
}

.grid-img:hover img {
    transform: scale(1.05);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inset 0 0 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    border-radius: 8px;
}

/* =========================================
   JOURNEY SECTION (Timeline)
   ========================================= */
.timeline {
    margin-top: 60px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    height: 100%;
    width: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--clr-bg-dark);
    border: 2px solid var(--clr-primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-primary-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-icon {
    background: var(--clr-primary-gold);
    color: var(--clr-bg-dark);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.1);
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-primary-gold);
    margin-bottom: 10px;
}

/* =========================================
   AUDITIONS SECTION
   ========================================= */
.auditions {
    background-color: var(--clr-bg-light);
}

.max-w-800 { max-width: 800px; }
.max-w-600 { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.auditions-slider-container {
    width: 100%;
    margin: 60px 0;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.auditions-slider-container::-webkit-scrollbar {
    display: none;
}

.audition-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    min-width: max-content;
    margin: 0 auto;
}

.slider-item {
    background: var(--glass-bg);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 500px rgba(10, 10, 10, 0.6);
    border: 1px solid var(--glass-border);
    padding: 30px 40px;
    border-radius: 12px;
    min-width: 280px;
    position: relative;
    overflow: hidden;
}

.bg-jaipur {
    background-image: url('https://images.unsplash.com/photo-1477587458883-47145ed94245?auto=format&fit=crop&w=600&q=80');
}
.bg-pune {
    background-image: url('https://images.unsplash.com/photo-1570168007204-dfb528c6958f?auto=format&fit=crop&w=600&q=80');
}
.bg-lucknow {
    background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?auto=format&fit=crop&w=600&q=80');
}
.bg-online {
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=600&q=80');
}

.slider-item > * {
    position: relative;
    z-index: 1;
}

.slider-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--clr-primary-gold);
    z-index: 2;
}

.slider-item:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.slider-city {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-text-main);
}

.slider-item:hover .slider-city {
    color: var(--clr-primary-gold);
}

.slider-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.venue-name {
    color: var(--clr-light-gold);
    font-size: 1rem;
    font-style: italic;
}

.slider-details .date {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.online-audition {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(212,175,55,0.1), transparent);
}

.pricing-card {
    margin-top: 40px;
    padding: 30px;
    text-align: center;
}

.price-header h4 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-text-muted);
}

.price {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--clr-primary-gold);
    font-weight: 700;
    margin: 15px 0;
}

.price-body {
    text-align: left;
    margin-bottom: 30px;
}

.price-body p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.price-body i {
    color: var(--clr-primary-gold);
    margin-right: 12px;
}

/* =========================================
   PARTICIPANT EXPERIENCE
   ========================================= */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.exp-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.exp-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.exp-card:hover::before {
    opacity: 1;
}

.exp-icon {
    font-size: 2.5rem;
    color: var(--clr-primary-gold);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.exp-card:hover .exp-icon {
    transform: scale(1.1);
}

.exp-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

/* =========================================
   GRAND FINALE
   ========================================= */
.finale {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.finale-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.finale-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finale-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.finale-content {
    max-width: 800px;
    margin: 0 auto;
}

.finale-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

.detail-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--clr-text-main);
}

.detail-divider {
    width: 2px;
    height: 50px;
    background: var(--clr-primary-gold);
}

.emotional-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-light-gold);
    line-height: 1.8;
}

/* =========================================
   CROWNING CEREMONY
   ========================================= */
.dark-bg {
    background-color: var(--clr-bg-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.ceremony-date {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.ceremony-venue {
    font-size: 1.5rem;
    color: var(--clr-text-muted);
    font-weight: 300;
    margin-bottom: 30px;
}

.celebrity-mention {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.celeb-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--clr-primary-gold);
}

.celeb-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-top: 10px;
}

.crowning-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-effect {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-effect::before {
    content: '';
    position: absolute;
    top: -100px;
    width: 150px;
    height: 400px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.8), transparent);
    transform: perspective(500px) rotateX(45deg);
    filter: blur(20px);
    z-index: 0;
}

.giant-crown {
    font-size: 8rem;
    color: var(--clr-primary-gold);
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: float 4s infinite ease-in-out;
}

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

/* =========================================
   TEAM SECTION
   ========================================= */
.team {
    background-color: var(--clr-bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--clr-primary-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.team-img-wrapper {
    width: 100%;
    height: 250px;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--clr-primary-gold);
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-placeholder {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: rgba(255,255,255,0.1);
}

.team-info {
    padding: 25px 20px;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.designation {
    color: var(--clr-primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   LEGACY SECTION (Marquee)
   ========================================= */
.legacy {
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(90deg, var(--clr-bg-dark) 0%, #111 50%, var(--clr-bg-dark) 100%);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(255,255,255,0.7);
    margin: 0 20px;
    transition: var(--transition-smooth);
}

.marquee-item:hover {
    color: var(--clr-primary-gold);
}

.marquee-star {
    color: var(--clr-primary-gold);
    font-size: 1rem;
    vertical-align: middle;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
    background: url('https://images.unsplash.com/photo-1507676184212-d0330a15233c?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
}

.cta-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
    text-align: left;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-subheading {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}

.urgency-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--clr-primary-gold);
    color: var(--clr-primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.registration-form {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.registration-form textarea {
    resize: vertical;
    min-height: 100px;
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.registration-form select option {
    background: var(--clr-bg-dark);
    color: white;
}

.cta-submit {
    margin-top: 10px;
    font-size: 1.1rem;
}

.form-notice {
    margin-top: 25px;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    grid-column: 1 / -1;
}

.form-notice p {
    margin: 0;
}

.form-notice a {
    color: #d4af37;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #d4af37;
    transition: all 0.3s ease;
}

.form-notice a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #050505;
    padding-top: 80px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--clr-text-muted);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-primary-gold);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--clr-primary-gold);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--clr-text-muted);
}

.footer-contact i {
    margin-right: 15px;
    color: var(--clr-primary-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
}

.social-links a:hover {
    background: var(--clr-primary-gold);
    border-color: var(--clr-primary-gold);
    color: black;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* MUSIC TOGGLE */
.music-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--clr-primary-gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.music-toggle:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .title {
        font-size: 3.5rem;
    }
    
    .glow-text {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        display: grid;
        grid-template-columns: 80px 1fr 80px; /* Fixed side widths to ensure center is center */
        align-items: center;
        width: 100%;
        padding: 0 15px;
    }
    
    .nav-links {
        display: none !important; /* Completely remove from flow */
    }
    
    .mobile-menu-toggle {
        display: flex;
        justify-content: flex-end;
        grid-column: 3;
    }
    
    .nav-action {
        display: flex;
        justify-content: center;
        grid-column: 2;
    }
    
    .nav-logo {
        grid-column: 1;
    }
    
    .header-logo {
        height: 110px; /* Substantially increased on mobile */
    }
    
    .btn-primary-sm {
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .title {
        font-size: 2.8rem;
    }
    
    .glow-text {
        font-size: 2rem;
    }
    
    .event-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .finale-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .detail-divider {
        width: 50px;
        height: 2px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .music-toggle {
        bottom: 20px;
        left: 20px;
    }
    .registration-form {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }

    .navbar {
        background: rgba(10, 10, 10, 0.95);
        padding: 10px 0;
    }

    .header-logo {
        height: 40px;
    }

    .nav-links {
        display: none; /* Controlled by JS */
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--clr-primary-gold);
    }
}

/* =========================================
   ANIMATION & SMOOTHNESS UTILITIES
   ========================================= */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Hero Animation */
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    animation: heroFadeIn 1s ease forwards 0.2s;
    opacity: 0;
}
.hero-content .subtitle {
    animation: heroFadeIn 1s ease forwards 0.4s;
    opacity: 0;
}
.hero-content .hero-desc {
    animation: heroFadeIn 1s ease forwards 0.6s;
    opacity: 0;
}
.hero-content .hero-btn-group {
    animation: heroFadeIn 1s ease forwards 0.8s;
    opacity: 0;
}

/* Smooth Image Hovers */
.slider-item {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s ease;
}
.slider-item:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 0 500px rgba(10, 10, 10, 0.4), 0 20px 40px rgba(0,0,0,0.5);
}

