/* ══════════════════════════════════════════════════════════════════
   MERCEDES-BENZ × MIRCHI BUSINESS CLASS
   Ultra-Luxury Design with Advanced VFX
   Theme: Mercedes Elegance + Bali Paradise
   ══════════════════════════════════════════════════════════════════ */

:root {
    /* Mercedes Color Palette */
    --mercedes-black: #000000;
    --mercedes-silver: #C0C0C0;
    --mercedes-gold: #D4AF37;
    --gold-light: #F4E4A8;
    --gold-dark: #B8941F;

    /* Bali-inspired Accents */
    --bali-teal: #00D4AA;
    --bali-coral: #FF6B6B;
    --tropical-green: #2ECC71;

    /* Base Colors */
    --black: #000000;
    --charcoal: #0a0a0a;
    --dark-gray: #1a1a1a;
    --silver: #e8e8e8;
    --white: #ffffff;

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;

    /* Effects */
    --transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
    --glow-teal: 0 0 20px rgba(0, 212, 170, 0.5);
}

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

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: hidden;
    width: 100vw;
}

body {
    font-family: var(--font-primary);
    background: var(--mercedes-black);
    color: var(--silver);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100%;
    width: 100vw;
    position: relative;
    touch-action: pan-y;
    /* Only allow vertical panning, blocks pinch-zoom and horizontal pan */
    -webkit-text-size-adjust: 100%;
}

/* Ambient Background Pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    z-index: -1;
    pointer-events: none;
}

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

.highlight {
    color: var(--bali-teal);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   CINEMATIC LUXURY SPLASH SCREEN
   ══════════════════════════════════════════════════════════════════ */

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
}

/* Awards Theme Background */
.splash-bg-layer {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
        /* Central Spotlight */
        radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        /* Top Light */
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0c0c0c 50%, #000000 100%);
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.6;
}

/* Ambient Lighting System */
.ambient-system {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 150, 200, 0.3) 0%, transparent 70%);
    bottom: -5%;
    right: -5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 70%;
    animation-delay: -5s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Light Sweep Effect */
.light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(212, 175, 55, 0.03) 45%,
            rgba(212, 175, 55, 0.08) 50%,
            rgba(212, 175, 55, 0.03) 55%,
            transparent 100%);
    animation: lightSweep 6s ease-in-out infinite;
}

@keyframes lightSweep {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(200%);
    }
}

/* Cinematic Vignette */
.cinematic-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

/* Floating Geometric Accents */
.geo-accent {
    position: absolute;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
    animation: geoFloat 12s ease-in-out infinite;
}

.geo-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.geo-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: -4s;
}

.geo-3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    bottom: 15%;
    right: 20%;
    animation-delay: -8s;
}

@keyframes geoFloat {

    0%,
    100% {
        opacity: 0.15;
        transform: translateY(0) rotate(0deg);
    }

    50% {
        opacity: 0.3;
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Splash Content */
.splash-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    /* Reduced gap to prevent cut-off */
    padding: 1rem 1.5rem;
    max-width: 1200px;
    width: 100%;
    /* min-height: 100vh; REMOVED to prevent forced overflow */
    justify-content: center;
    animation: contentReveal 1.5s ease-out forwards;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IGNITION BUTTON (Mercedes Star)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.ignition-container {
    position: relative;
    width: clamp(200px, 30vw, 300px);
    height: clamp(200px, 30vw, 300px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

/* Awards Shine behind Logo */
.ignition-container::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    animation: centerPulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes centerPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.15);
    }
}

.ignition-outer-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: ignitionPulse 2s ease-in-out infinite;
}

.ignition-inner-ring {
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    animation: ignitionPulse 2s ease-in-out infinite reverse;
}

.ignition-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes ignitionPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.mercedes-star-3d {
    width: 90%;
    height: 90%;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.4s ease;
    animation: starRotate 20s linear infinite;
}

.ignition-container:hover .mercedes-star-3d {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.7));
}

.ignition-container:active .mercedes-star-3d {
    transform: scale(0.95);
}

@keyframes starRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.star-outer {
    animation: starOuterPulse 3s ease-in-out infinite;
}

@keyframes starOuterPulse {

    0%,
    100% {
        stroke-width: 3;
        opacity: 1;
    }

    50% {
        stroke-width: 4;
        opacity: 0.8;
    }
}

.ignition-text {
    position: relative;
    margin-top: 1.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--mercedes-gold);
    text-transform: uppercase;
    white-space: nowrap;
    animation: textPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    pointer-events: none;
    /* Let clicks pass through to container */
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRAND LOCKUP
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.brand-lockup-splash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    animation: fadeSlideUp 1.2s ease-out 0.5s backwards;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.mercedes-logo-wrap-splash {
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.lockup-x-splash {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #333;
    font-weight: 100;
}

.mirchi-logo-wrap-splash {
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.4));
}

.mercedes-logo-img {
    height: 70px;
    /* Increased from 50px */
    width: auto;
}

.mirchi-logo-img {
    height: 110px;
    /* Increased from 80px */
    width: auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TITLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lockup-divider {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 100;
}

.title-container {
    text-align: center;
    animation: fadeSlideUp 1.2s ease-out 0.7s backwards;
}

.splash-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    /* significantly larger */
    font-weight: 200;
    letter-spacing: 0.25em;
    /* slightly tighter for impact */
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.title-brand {
    font-size: 0.6em;
    /* Slightly larger */
    letter-spacing: 0.5em;
    /* Adjusted for better readability */
    color: var(--mercedes-gold);
    font-weight: 800;
    margin-bottom: 0.3rem;
    background: linear-gradient(to right, #996515, #D4AF37, #F5E6A3, #D4AF37, #996515);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite, fadeSlideUp 1s ease-out 0.5s backwards;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.title-main {
    display: flex;
    gap: 0.5em;
    justify-content: center;
}

.title-word:nth-child(1) {
    animation-delay: 0.8s;
}

.title-word:nth-child(2) {
    animation-delay: 1s;
    background: linear-gradient(to right, #D4AF37, #F5E6A3, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.decoration-text {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    color: var(--mercedes-grey);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    animation: fadeSlideUp 1s ease-out 0.3s backwards;
}

.title-underline-complex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    animation: lineExpand 1.5s ease-out 1.2s backwards;
}

.title-underline-complex .line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--mercedes-gold), transparent);
}

.title-underline-complex .diamond {
    color: var(--mercedes-gold);
    font-size: 0.8rem;
    opacity: 0.8;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 120px;
        opacity: 1;
    }
}

.splash-tagline {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    letter-spacing: 0.15em;
    color: var(--mercedes-silver);
    font-style: italic;
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
    animation: fadeSlideUp 1.2s ease-out 1.3s backwards;
    margin-top: 0;
}

/* Event Pill */
.event-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    animation: fadeSlideUp 1.2s ease-out 1.5s backwards;
    backdrop-filter: blur(10px);
}

.pill-icon-svg {
    width: 20px;
    height: 20px;
    color: var(--mercedes-gold);
    flex-shrink: 0;
}

.pill-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--mercedes-silver);
    letter-spacing: 0.05em;
}

/* Inline SVG Icon for Tier Cards */
.tier-icon-inline {
    width: 18px;
    height: 18px;
    color: var(--mercedes-gold);
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* Splash Footer + Loading Bar */
.splash-footer {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
}

.loading-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--mercedes-gold), #F5E6A3);
    animation: loadingAnim 3s ease-out forwards;
}

@keyframes loadingAnim {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IGNITION SEQUENCE CLASSES (Applied via JavaScript)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.splash-screen.ignition-started .ambient-strip {
    animation: ignitionLight 0.6s ease-out forwards;
}

@keyframes ignitionLight {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(0, 150, 200, 0.2);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 50px rgba(0, 150, 200, 1);
    }

    100% {
        opacity: 0.8;
        box-shadow: 0 0 40px rgba(0, 150, 200, 0.8);
    }
}

.splash-screen.ignition-started .steering-wheel-container {
    animation: wheelPress 0.3s ease-in-out;
}

@keyframes wheelPress {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }
}

/* ══════════════════════════════════════════════════════════════════
   NAVIGATION - GLASS MORPHISM EFFECT
   ══════════════════════════════════════════════════════════════════ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
}

.main-nav.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-mercedes-logo {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
}

.nav-brand>span {
    color: #666;
    font-size: 1.5rem;
    font-weight: 100;
}

.nav-mirchi-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.3));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--mercedes-silver);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: all var(--transition);
    /* UI/UX Pro Max: 44px minimum touch target */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.5rem;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--mercedes-gold), var(--bali-teal));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.nav-links a:hover {
    color: var(--white);
    text-shadow: var(--glow-gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-slide-indicator {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--mercedes-gold);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════════════════
   MAIN CONTENT
   ══════════════════════════════════════════════════════════════════ */
.main-content {
    opacity: 1;
    visibility: visible;
}

.main-content.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
}

/* ══════════════════════════════════════════════════════════════════
   SLIDES - LUXURY GRADIENT BACKGROUNDS
   ══════════════════════════════════════════════════════════════════ */
.slide {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

/* Hero Slide - Mercedes Elegance */
.hero-slide {
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 212, 170, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

/* Concept Slide - Tropical Luxury */
.concept-slide {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* The Show Slide - Stage Spotlight */
.show-slide {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

/* Timeline Slide - Bali Sunset */
.timeline-slide {
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
}

/* Categories Slide - Gala Night */
.categories-slide {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* Integrations Slide - Mercedes Showcase */
.integrations-slide {
    background:
        radial-gradient(ellipse at 50% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

/* Advantage Slide - Media Glow */
.advantage-slide {
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 170, 0.1) 0%, transparent 60%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* Sponsorship Slide - Premium Gold */
.sponsorship-slide {
    background:
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

/* Deliverables Slide - Professional */
.deliverables-slide {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

/* Legacy Slide - Heritage */
.legacy-slide {
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
}

/* CTA Slide - Invitation Glow */
.cta-slide {
    background:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 212, 170, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0f0f0f 50%, #000000 100%);
}

/* Footer Slide */
.footer-slide {
    min-height: 50vh;
    background: linear-gradient(to top, #000000, #0a0a0a);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.slide-overlay.dark {
    background: rgba(0, 0, 0, 0.5);
}

.slide-inner {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 3rem 2rem;
}

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

/* ══════════════════════════════════════════════════════════════════
   SLIDE HEADERS - PREMIUM STYLING
   ══════════════════════════════════════════════════════════════════ */
.slide-header {
    margin-bottom: 4rem;
}

.slide-num {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--bali-teal);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--bali-teal);
    background: rgba(0, 212, 170, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.slide-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    margin-top: 1.5rem;
    letter-spacing: 0.02em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.slide-sub {
    margin-top: 1rem;
    color: var(--mercedes-gold);
    font-size: 1.2rem;
    font-style: italic;
    font-family: var(--font-display);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--mercedes-silver);
    max-width: 900px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.section-quote {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--mercedes-gold);
    font-size: 1.5rem;
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

/* ══════════════════════════════════════════════════════════════════
   HERO SLIDE - CINEMATIC PRESENTATION
   ══════════════════════════════════════════════════════════════════ */
.hero-slide {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    padding: 1rem 2.5rem;
    border: 2px solid var(--mercedes-gold);
    color: var(--mercedes-gold);
    margin-bottom: 3rem;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(15px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.brand-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0;
}

.hero-mercedes-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(var(--glow-gold));
}

.brand-line span {
    font-size: 0.8em;
    opacity: 0.7;
}

.hero-mirchi-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.4));
}

.hero-title em {
    display: inline;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 1.5rem;
    font-weight: 100;
    vertical-align: middle;
}

.hero-subtitle-large {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--mercedes-silver);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 3rem;
}

.venue-card {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 4rem;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--mercedes-gold);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    margin-top: 2rem;
}

.vc-icon {
    font-size: 2rem;
}

.vc-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 0.25rem;
}

.vc-info strong {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.vc-info span {
    color: var(--mercedes-silver);
    font-style: italic;
    font-size: 0.95rem;
}

.vc-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--mercedes-gold), transparent);
}

.vc-date {
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 5px;
}

.vc-date strong {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    text-shadow: var(--glow-gold);
}

.vc-date span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--mercedes-silver);
}

.scroll-hint {
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--mercedes-silver);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
}

.scroll-arrow {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--mercedes-gold), transparent);
    animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(20px);
        opacity: 0.3;
    }
}

/* Continue in next file... */
/* ══════════════════════════════════════════════════════════════════
   TWO COLUMN LAYOUT
   ══════════════════════════════════════════════════════════════════ */
.two-col {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
    align-items: start;
}

.col-text p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    color: var(--mercedes-silver);
    line-height: 1.9;
}

.col-text .lead {
    font-size: 1.3rem;
    line-height: 2;
}

.col-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.stat-box:hover {
    border-color: var(--mercedes-gold);
    transform: translateY(-8px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.stat-box.highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(212, 175, 55, 0.05));
    border-color: var(--bali-teal);
}

.stat-val {
    display: block;
    font-family: var(--font-display);
    font-size: 4.5rem;
    color: var(--mercedes-gold);
    line-height: 1;
    text-shadow: var(--glow-gold);
}

.stat-lbl {
    font-size: 0.9rem;
    color: var(--mercedes-silver);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1rem;
}

/* ══════════════════════════════════════════════════════════════════
   PILLARS GRID
   ══════════════════════════════════════════════════════════════════ */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.pillar {
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.pillar:hover {
    border-color: var(--mercedes-gold);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
}

.pillar-icon {
    height: 80px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vfx-icon {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar:hover .vfx-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.vfx-icon-mini {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.vfx-icon-inline {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.pillar h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pillar p {
    font-size: 0.9rem;
    color: var(--mercedes-silver);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════════ */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.timeline-day {
    padding: 2.5rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    position: relative;
    backdrop-filter: blur(15px);
}

.timeline-day:hover {
    border-color: var(--bali-teal);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.timeline-day.featured {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--mercedes-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.td-num {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: var(--bali-teal);
    color: var(--mercedes-black);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.4);
}

.timeline-day.featured .td-num {
    background: var(--mercedes-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.td-date {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--bali-teal);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.timeline-day.featured .td-date {
    color: var(--mercedes-gold);
}

.timeline-day h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.timeline-day ul {
    list-style: none;
}

.timeline-day li {
    font-size: 0.9rem;
    color: var(--mercedes-silver);
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.timeline-day li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* ══════════════════════════════════════════════════════════════════
   CATEGORIES GRID
   ══════════════════════════════════════════════════════════════════ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.cat-card {
    padding: 2rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--silver);
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.cat-card:hover {
    border-color: var(--bali-teal);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
}

.cat-card span {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.3);
}

.cat-card.gold {
    border-color: var(--mercedes-gold);
    background: rgba(212, 175, 55, 0.08);
    color: var(--mercedes-gold);
    font-weight: 600;
}

.cat-card.gold:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.trophy-display {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 140px;
    opacity: 0.9;
    z-index: 5;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.trophy-img {
    width: 100%;
    height: auto;
}

/* ══════════════════════════════════════════════════════════════════
   INTEGRATIONS GRID - ICON-BASED (NO IMAGES)
   ══════════════════════════════════════════════════════════════════ */
.integrations-grid-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.int-card-simple {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.int-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.int-card-simple:hover::before {
    left: 100%;
}

.int-card-simple:hover {
    border-color: var(--mercedes-gold);
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.2);
}

.int-card-simple.featured {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--mercedes-gold);
}

.int-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(0.2);
}

.int-card-simple h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.int-card-simple p {
    font-size: 1rem;
    color: var(--mercedes-silver);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════════
   MEDIA STATS
   ══════════════════════════════════════════════════════════════════ */
.media-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 4rem;
}

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

.ms-val {
    display: block;
    font-family: var(--font-display);
    font-size: 5.5rem;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.ms-lbl {
    display: block;
    font-size: 0.95rem;
    color: var(--mercedes-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1rem;
    font-weight: 600;
}

.ms-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--silver);
    margin-top: 0.5rem;
    line-height: 1.4;
    opacity: 0.8;
}

.media-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.mf-item {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--silver);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.mf-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.mf-item p {
    font-size: 0.9rem;
    color: var(--silver);
    line-height: 1.5;
    margin: 0;
}

.mf-item:hover {
    border-color: var(--bali-teal);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
    transform: translateY(-5px);
}

.mf-item.gold {
    border-color: var(--mercedes-gold);
    background: rgba(212, 175, 55, 0.08);
}

.mf-item.gold strong {
    color: var(--mercedes-gold);
    font-size: 2rem;
    font-weight: 700;
}

.mf-item.gold p {
    color: var(--mercedes-gold);
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   SPONSORSHIP TIERS
   ══════════════════════════════════════════════════════════════════ */
.sponsorship-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tier {
    padding: 3rem 2.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all var(--transition);
    position: relative;
}

.tier:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.tier.primary {
    border-color: var(--mercedes-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.15);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mercedes-gold);
    color: var(--mercedes-black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.tier h4 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.tier-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--mercedes-gold);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    text-shadow: var(--glow-gold);
}

.tier-price span {
    font-size: 1rem;
    color: var(--mercedes-silver);
}

.tier ul {
    list-style: none;
}

.tier li {
    font-size: 0.95rem;
    color: var(--mercedes-silver);
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.tier li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tropical-green);
    font-weight: 700;
    font-size: 1.1rem;
}

.slide-desc {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.7;
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
    opacity: 0.9;
}

.sponsor-note {
    margin-top: 2rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.15), rgba(0, 100, 200, 0.1));
    border: 1px solid rgba(100, 180, 255, 0.3);
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.sponsor-note p {
    margin: 0;
    font-size: 1rem;
    color: #7dcfff;
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════════
   DELIVERABLES TABLE
   ══════════════════════════════════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem;
    padding: 0 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Scrollbar styling for table */
.table-wrap::-webkit-scrollbar {
    height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.table-wrap::-webkit-scrollbar-thumb {
    background: var(--mercedes-gold);
    border-radius: 3px;
}

.deliverables-table {
    width: 100%;
    min-width: 700px;
    /* Ensure table has minimum width for scroll on mobile */
    border-collapse: collapse;
}

.deliverables-table th,
.deliverables-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.deliverables-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mercedes-gold);
    background: rgba(212, 175, 55, 0.08);
    font-weight: 600;
    position: sticky;
    top: 0;
}

.deliverables-table td {
    font-size: 0.95rem;
    color: var(--mercedes-silver);
}

/* UI/UX Pro Max: Changed from green to gold for brand consistency */
.deliverables-table td:not(:first-child):not(:nth-child(2)) {
    text-align: center;
    color: var(--mercedes-gold);
    font-weight: 600;
}

.deliverables-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ══════════════════════════════════════════════════════════════════
   LEGACY & CTA
   ══════════════════════════════════════════════════════════════════ */
.legacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.legacy-content p {
    font-size: 1.3rem;
    color: var(--mercedes-silver);
    margin-bottom: 2rem;
    line-height: 2;
}

.legacy-content blockquote {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--mercedes-gold);
    margin-top: 3rem;
    padding: 2.5rem 3rem;
    border-left: 4px solid var(--mercedes-gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.cta-subtitle {
    font-size: 1.4rem;
    color: var(--mercedes-gold);
    font-style: italic;
    font-family: var(--font-display);
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 1.8rem 4rem;
    background: var(--mercedes-gold);
    color: var(--mercedes-black);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all var(--transition);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.cta-discuss {
    color: var(--mercedes-silver);
    font-style: italic;
    font-size: 1.1rem;
}

.cta-tagline {
    font-size: 1.3rem;
    color: var(--white);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer-brand {
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-brand em {
    color: #444;
    font-weight: 100;
}

.footer-mirchi-logo {
    height: 110px;
    width: auto;
}

.footer-tagline {
    font-style: italic;
    color: var(--mercedes-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-copy {
    font-size: 0.85rem;
    color: #666;
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .integrations-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }

    .media-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsorship-tiers {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .slide {
        padding: 100px 0 60px 0;
    }

    .slide-inner {
        padding: 2rem 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .integrations-grid-simple {
        grid-template-columns: 1fr;
    }

    .int-card-simple.featured {
        grid-column: span 1;
    }

    .media-stats {
        flex-direction: column;
        gap: 3rem;
    }

    .media-features {
        grid-template-columns: 1fr;
    }

    .venue-card {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .vc-divider {
        width: 80px;
        height: 2px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-lockup-splash {
        flex-direction: row;
        /* Keep horizontal even on mobile if possible, or use better scaling */
        gap: 1.5rem;
    }

    .trophy-display {
        display: none;
    }

    .brand-line {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-stats {
        grid-template-columns: 1fr;
    }

    .stat-box.highlight {
        grid-column: span 1;
    }

    .deliverables-table th,
    .deliverables-table td {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

/* Logo size overrides removed to allow for large Mirchi logo as per user request */

/* Brand line container fix */
.brand-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    margin: 1rem 0 !important;
    min-height: 80px;
    /* Prevent layout shift */
}

/* Ensure brand line doesn't overflow */
.brand-line span {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
}

/* Hero title container - REMOVED duplicate, using inline layout from main rule */

/* Cleaned up conflicting logo constraints */
/* Ensure splash content fits on screen - handled in main rules */

/* Brand lockup spacing */
/* Consolidated with main rules above */
.brand-lockup-splash {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: nowrap;
    /* Prevent vertical stack */
}

/* Cleaned up responsive logo overrides */

/* ══════════════════════════════════════════════════════════════════
   SVG ICON STYLING
   ══════════════════════════════════════════════════════════════════ */

.icon-svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    transition: all var(--transition);
}

.int-card-simple:hover .icon-svg {
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.7));
    transform: scale(1.1) translateY(-5px);
}

.int-card-simple.featured .icon-svg {
    width: 100px;
    height: 100px;
}

/* Replace emoji icon container styling */
.int-icon {
    font-size: 0;
    /* Hide any fallback text */
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category card icons - keep grayscale filter */
.cat-card span {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: grayscale(0.2);
}

/* Responsive icon sizing */
@media (max-width: 768px) {
    .icon-svg {
        width: 60px;
        height: 60px;
    }

    .int-card-simple.featured .icon-svg {
        width: 70px;
        height: 70px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   SCROLL TO TOP BUTTON
   ══════════════════════════════════════════════════════════════════ */

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--mercedes-gold);
    color: var(--mercedes-gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--mercedes-gold);
    color: var(--deep-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   PHOTO-BASED INTEGRATION CARDS
   ══════════════════════════════════════════════════════════════════ */

.integrations-grid-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.int-card-photo {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.int-card-photo:hover {
    transform: translateY(-10px);
    border-color: var(--mercedes-gold);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.int-card-photo.featured {
    grid-column: span 2;
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--mercedes-gold);
}

.int-photo-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.int-card-photo.featured .int-photo-wrap {
    height: 350px;
}

.int-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.int-card-photo:hover .int-photo {
    transform: scale(1.08);
}

.int-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity var(--transition);
}

.int-card-photo:hover .int-photo-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(212, 175, 55, 0.2) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.int-card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.int-card-content h4 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.int-card-content p {
    font-size: 1rem;
    color: var(--mercedes-silver);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .integrations-grid-photos {
        grid-template-columns: repeat(2, 1fr);
    }

    .int-card-photo.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .integrations-grid-photos {
        grid-template-columns: 1fr;
    }

    .int-photo-wrap {
        height: 220px;
    }

    .int-card-photo.featured .int-photo-wrap {
        height: 250px;
    }
}

/* ══════════════════════════════════════════════════════════════════
   UI/UX PRO MAX: ACCESSIBILITY - Reduced Motion
   ══════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle-canvas {
        display: none;
    }

    .ambient-orb,
    .geo-accent,
    .light-sweep {
        display: none;
    }

    .mercedes-star-3d {
        animation: none;
    }

    .ignition-outer-ring,
    .ignition-inner-ring,
    .ignition-glow {
        animation: none;
    }
}