@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;700;900&family=Outfit:wght@100;300;400;600;800;900&family=Bebas+Neue&display=swap');

:root {
    --bg-dark: #050505;
    --text-main: #f0f0f0;
    --text-dim: #a0a0a0;
    --accent: #ff4d00;
    /* Neon Orange */
    --accent-rgb: 255, 77, 0;
    --surface: #0f0f0f;
    --border: rgba(255, 255, 255, 0.1);
    --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Hide default for custom cursor */
}

body {
    background: radial-gradient(circle at center, #111 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ======================
   PRELOADER
   ====================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #050505;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 5px;
    opacity: 0.5;
    text-transform: uppercase;
}

.preloader-counter {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    line-height: 1;
}

/* Noise overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' 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)'/%3E%3C/svg%3E");
    opacity: 0.1;
    /* Increased for more detail */
    pointer-events: none;
    z-index: 9999;
}

/* Glowing Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    animation: floatOrb 15s ease-in-out infinite alternate;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

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

    100% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.6;
    }
}

.orb-accent {
    background: rgba(var(--accent-rgb), 0.15);
}

.orb-white {
    background: rgba(255, 255, 255, 0.05);
    animation-delay: -5s;
    /* Offset animation timing */
}


/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out;
}

/* Typography Utilities */
.h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 15vw, 10rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.h1 span {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    text-transform: uppercase;
}

.caption {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* Layout Utilities */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    position: relative;
    padding: 160px 0;
}

/* ══════════════════════════════════════════════════
   NAVIGATION BAR — Premium Redesign
══════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 0 clamp(20px, 5%, 80px);
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
    border-bottom: 1px solid transparent;
}

/* Scrolled state applied via JS */
.header.scrolled {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo */
.header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header .logo img {
    height: 42px;
    width: auto;
}

/* Center nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 8px 16px;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

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

/* Right side: CTA + contact info */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-phone:hover {
    color: var(--accent);
}

.nav-phone i {
    font-size: 0.85rem;
    color: var(--accent);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--accent);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.35);
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(255, 77, 0, 0.45);
}

/* Container override for header padding */
nav.header.container {
    padding-left: clamp(20px, 5%, 80px);
    padding-right: clamp(20px, 5%, 80px);
    max-width: 100%;
}

/* Dynamic Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
}

/* Hero Noir */
/* ══════════════════════════════════════════════════
   HERO SECTION — Premium Redesign
══════════════════════════════════════════════════ */
.hero-noir {
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.45) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(5, 5, 5, 0.6) 0%, transparent 40%, rgba(5, 5, 5, 0.85) 100%),
        linear-gradient(to right, rgba(5, 5, 5, 0.7) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Inner layout */
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 40px;
    gap: 0;
    min-height: 100vh;
    min-height: 100dvh;
    box-sizing: border-box;
}

/* ── Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 77, 0, 0.12);
    border: 1px solid rgba(255, 77, 0, 0.35);
    border-radius: 40px;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulseBadge 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

/* ── Giant headline */
.hero-headline {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 6.5vw, 7.5rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px 0;
    overflow: hidden;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding: 4px 0;
}

.hero-accent {
    font-style: normal;
    color: var(--accent);
    -webkit-text-stroke: 0;
}

/* ── Bottom row: sub + CTA */
.hero-bottom-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-sub {
    max-width: 480px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-body);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

/* Ghost (outline) button variant */
.btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ── Stats row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    flex-wrap: wrap;
    row-gap: 24px;
}

.hero-stat {
    flex: 1;
    min-width: 120px;
    padding: 0 32px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* ── Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 36px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

    50% {
        opacity: 1;
        transform: scaleY(0.6);
    }
}

.hero-scroll-indicator span {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.45);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* 3D Hotspots */
.hotspot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    border: none;
    background-color: var(--accent);
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px var(--accent);
}

.hotspot:hover {
    transform: scale(1.2);
}

.hotspot-annotation {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    color: white;
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    left: calc(100% + 15px);
    max-width: 200px;
    padding: 10px 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotspot:hover .hotspot-annotation {
    opacity: 1;
}

/* 3D Showroom Configurator Section */
.showroom-3d {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    z-index: 10;
    padding: 0;
}

/* Full-screen variant */
.showroom-fullscreen {
    padding: 0;
    min-height: 100vh;
}

/* Iframe container — fixed height so it fills viewport, section scrolls over it */
.showroom-iframe-container {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* Overlay top header */
.showroom-overlay-header {
    position: absolute;
    top: 40px;
    left: 5%;
    z-index: 50;
    pointer-events: none;
}

/* Bottom bar with configurator + CTA */
.showroom-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 30px 5%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 50;
    gap: 20px;
    flex-wrap: wrap;
}

.showroom-bottom-bar .configurator-panel {
    position: static;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    min-width: 280px;
}

.showroom-bottom-bar .configurator-panel .caption {
    color: var(--accent);
}

.showroom-bottom-bar .configurator-panel #color-name {
    color: #fff;
}

.showroom-cta {
    text-align: right;
}

/* ── Scroll Shield ─────────────────────────────── */
/* Transparent div that sits above the iframe to intercept scroll.
   Click it to enter "interact mode"; after 4s of no movement it reactivates. */
.scroll-shield {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    /* Thin transparent gradient at top/bottom to signal scrollability */
    background: transparent;
    transition: background 0.3s ease;
}

/* Show hint in center when not interacting */
.scroll-shield-hint {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 77, 0, 0.35);
    border-radius: 40px;
    padding: 10px 22px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
    transition: opacity 0.4s ease;
    white-space: nowrap;
}

.shield-icon {
    font-size: 1.1rem;
}

/* When interacting (class added via JS), shield is transparent to mouse */
.scroll-shield.interacting {
    pointer-events: none;
}

.scroll-shield.interacting .scroll-shield-hint {
    opacity: 0;
}


.showroom-header {
    position: relative;
    z-index: 20;
    margin-top: 5vh;
}

.showroom-3d .spline-car {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: 1;
}

/* Sketchfab wrapper ensures iframe fills the container */
.sketchfab-wrapper {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 95%;
    z-index: 1;
}

/* TXL Floating Modification Badges */
.txl-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    pointer-events: none;
}

.badge-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.3), 0 0 12px rgba(255, 77, 0, 0.6);
    animation: pulseBadge 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulseBadge {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.3), 0 0 12px rgba(255, 77, 0, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(255, 77, 0, 0.1), 0 0 20px rgba(255, 77, 0, 0.8);
    }
}

.badge-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent));
    flex-shrink: 0;
}

.txl-badge-body .badge-line,
.txl-badge-lights .badge-line,
.txl-badge-audio .badge-line {
    background: linear-gradient(to left, transparent, var(--accent));
}

.badge-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(8, 8, 8, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 77, 0, 0.3);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.badge-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(255, 77, 0, 0.2);
}

.badge-icon {
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
    line-height: 1;
}

.badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-info strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.badge-info span {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-body);
}

/* Badge Positions - 6 hotspots spread around the car */
.txl-badge-rines {
    bottom: 22%;
    left: 3%;
}

.txl-badge-body {
    bottom: 40%;
    right: 3%;
    flex-direction: row-reverse;
}

.txl-badge-windows {
    top: 25%;
    left: 3%;
}

.txl-badge-lights {
    top: 15%;
    right: 3%;
    flex-direction: row-reverse;
}

.txl-badge-multimedia {
    bottom: 18%;
    left: 3%;
}

.txl-badge-audio {
    top: 40%;
    right: 3%;
    flex-direction: row-reverse;
}

/* Interactive Color Configurator */
.configurator-panel {
    position: absolute;
    bottom: 5vh;
    left: 10%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 12px;
    z-index: 100;
    width: auto;
    min-width: 320px;
    color: #111;
    /* Dark text for light background */
}

.configurator-panel .caption {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
}

.configurator-panel #color-name {
    font-weight: 600;
    margin-top: 10px;
}

.configurator-panel .small {
    color: #666 !important;
}


.color-options {
    display: flex;
    gap: 15px;
    margin: 15px 0;
}

.color-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
}

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

.color-btn.active {
    border-color: white;
    transform: scale(1.15);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-cta {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-cta p {
    font-size: 1.2rem;
    color: var(--text-dim);
    max-width: 500px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background: var(--surface);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    width: fit-content;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--accent);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-primary:hover {
    color: var(--bg-dark);
}

.btn-primary:hover::before {
    width: 100%;
}

/* Detailed Service Pillars */
.services-pillars {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.service-pillar {
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.service-pillar:hover {
    border-color: rgba(255, 77, 0, 0.5);
    transform: translateY(-5px);
}

.pillar-image {
    flex: 1;
    min-height: 400px;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-pillar:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-content {
    flex: 1;
    padding: 40px;
}

.pillar-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pillar-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-dim);
    line-height: 1.6;
}

.pillar-list li::before {
    content: '❯';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
    top: 3px;
}

@media (max-width: 900px) {

    .service-pillar,
    .service-pillar.reverse {
        flex-direction: column;
    }

    .pillar-image {
        width: 100%;
        min-height: 250px;
    }
}

/* ===========================
   IMPACT STATISTICS
   =========================== */
.impact-section {
    padding: 60px 0;
    margin-top: 40px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.impact-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 40px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.impact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.impact-item .h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

/* ===========================
   PROMO COUNTDOWN SECTION
   =========================== */
.promo-section {
    padding: 100px 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?q=80&w=2000&auto=format&fit=crop') center/cover;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent);
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px rgba(204, 0, 0, 0.2);
}

.time-num {
    font-size: 3.5rem;
    color: white;
    line-height: 1;
}

.time-sep {
    font-size: 3rem;
    color: var(--accent);
    padding-bottom: 20px;
}

/* ===========================
   VIDEO GALLERY (VERTICAL)
   =========================== */
.video-gallery {
    padding: 100px 0;
    background: var(--surface);
}

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

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: none;
    /* Let custom cursor handle hover */
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.video-card:hover video {
    opacity: 1;
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.play-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: var(--transition);
}

.video-card:hover .play-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.video-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
}

/* Showcase Horizontal */
.showcase {
    background: #080808;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.horizontal-scroll {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.scroll-wrapper {
    display: flex;
    padding: 0 5vw;
    gap: 5vw;
}

.showcase-item {
    flex-shrink: 0;
    width: 90vw;
    height: 85vh;
    /* Larger to avoid 'pequeño' feeling */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.showcase-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
    pointer-events: none;
}

.showcase-info .h2 {
    margin: 0;
    text-transform: uppercase;
    font-size: 3rem;
    color: white;
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.hamburger {
    width: 30px;
    height: 2px;
    background: var(--text-main);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--text-main);
    transition: var(--transition);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.is-open {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
}

/* Accent helper */
.accent {
    color: var(--accent);
}

/* ══════════════════════════════════════════════════
   BENTO PHOTO GRID — Variable size mosaic
══════════════════════════════════════════════════ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
    margin-bottom: 100px;
}

/* Base item */
.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

/* Size variants */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* 2×2 big */
.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

/* 1×2 tall */
.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* 2×1 wide */
.bento-medium {
    grid-column: span 1;
    grid-row: span 1;
}

/* 1×1 */
.bento-small {
    grid-column: span 1;
    grid-row: span 1;
}

/* 1×1 */

/* Dark overlay */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    transition: background 0.4s ease;
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.5) 60%,
            rgba(255, 77, 0, 0.1) 100%);
}

/* Image zoom on hover */
.bento-item {
    background-size: 100%;
    transition: background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    background-size: 110%;
}

/* Text content */
.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 24px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.bento-item:hover .bento-content {
    transform: translateY(0);
}

.bento-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 4px;
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.bento-content p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.bento-item:hover .bento-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Orange accent border on hover */
.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1.5px solid transparent;
    transition: border-color 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

.bento-item:hover::after {
    border-color: rgba(255, 77, 0, 0.5);
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-large {
        grid-column: span 2;
    }

    .bento-wide {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .bento-large,
    .bento-tall,
    .bento-wide,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ══════════════════════════════════════════════════
   SERVICE CARDS GRID
══════════════════════════════════════════════════ */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 100px;
}

.service-card {
    position: relative;
    background: rgba(12, 12, 12, 0.95);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(255, 77, 0, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    background: rgba(18, 18, 18, 0.98);
}

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

/* Animated accent bar at bottom */
.service-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-bar {
    width: 100%;
}

/* Top row: icon + number */
.service-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover .service-card-icon {
    background: rgba(255, 77, 0, 0.18);
    border-color: rgba(255, 77, 0, 0.5);
}

.service-card-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    letter-spacing: -0.04em;
    line-height: 1;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-num {
    color: rgba(255, 77, 0, 0.12);
}

/* Title */
.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

/* Description */
.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    flex: 1;
}

/* Footer link */
.service-card-footer {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.25s ease, gap 0.25s ease;
}

.service-card:hover .service-card-link {
    color: var(--accent);
    gap: 12px;
}

/* Responsive: 2 cols on tablet */
@media (max-width: 1024px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 col on mobile */
@media (max-width: 600px) {
    .services-cards {
        grid-template-columns: 1fr;
    }
}

/* Infinite Marquee */
.marquee-section {
    padding: 60px 0;
    background: var(--bg-dark);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-container {
    display: flex;
    width: fit-content;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scroll-left 20s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-dim);
    text-transform: uppercase;
    padding: 0 40px;
}

.marquee-content .dot {
    color: var(--accent);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.process-step:hover {
    border-color: rgba(var(--accent-rgb), 0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.step-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.step-num {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--bg-dark);
    color: var(--accent);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.step-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
}

.h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Before & After Comparison Slider */
.comparison-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 60vh;
    min-height: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #111;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    user-select: none;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

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

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    /* Default 50% crop */
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-before {
    left: 20px;
    z-index: 3;
}

.label-after {
    right: 20px;
    z-index: 3;
}

/* Range Input Overlay */
.slider-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
}

/* Custom visual handle (the visible line and button) */
.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: background 0.2s;
    pointer-events: none;
    /* Let clicks pass through to input */
}

.slider-button svg {
    color: var(--bg-dark);
    width: 18px;
    margin: 0 -2px;
}

.slider-button::before {
    content: '';
    position: absolute;
    top: -100vh;
    bottom: -100vh;
    left: 50%;
    width: 4px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* FAQ Section */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.faq-title {
    position: sticky;
    top: 140px;
    height: fit-content;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 0 20px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.faq-icon {
    font-size: 2rem;
    font-family: var(--font-heading);
    color: var(--accent);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), color 0.4s ease;
}

.faq-item.active .faq-header h3 {
    color: var(--accent);
    transition: color 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: white;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-body {
    max-height: 400px;
    /* Increased to accommodate list items */
    opacity: 1;
}

.faq-body p,
.faq-body ul {
    padding-bottom: 30px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.body-text {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin: 30px 0;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.about-image {
    width: 100%;
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    background: var(--bg-dark);
    position: relative;
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-item .caption {
    margin-bottom: 10px;
}

.contact-item .body-text {
    margin: 0;
    line-height: 1.8;
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}

.footer-bottom {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
    font-size: 0.9rem;
}

.socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    /* Override all spans to 1 for iPad / stacked view */
    .bento-item:nth-child(n) {
        grid-column: span 1;
        min-height: 250px;
    }

    /* Let the 7th item span 2 to complete the 2-column grid beautifully */
    .bento-item:nth-child(7) {
        grid-column: span 2;
    }

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

    .about-image {
        height: 400px;
    }

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

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-title {
        position: static;
        margin-bottom: 40px;
    }

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

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

@media (max-width: 768px) {
    .header {
        height: 80px;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .h1 {
        font-size: 3.5rem;
    }

    .h2 {
        font-size: 2.5rem;
    }

    section {
        padding: 100px 0;
    }

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

    .promo-section {
        padding: 60px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-title {
        position: relative;
        top: 0;
    }

    .showcase {
        height: auto;
        display: block;
    }

    .horizontal-scroll {
        height: auto;
        display: block;
    }

    .scroll-wrapper {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .showcase-item {
        width: 100%;
        height: 60vh;
    }

    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }

    .time-box {
        min-width: 80px;
        padding: 15px;
    }

    .time-num {
        font-size: 2rem;
    }

    .time-sep {
        font-size: 1.5rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-map {
        height: 300px;
        min-height: 300px;
    }

    .marquee-content span {
        font-size: 2rem;
        padding: 0 20px;
    }

    .marquee-section {
        padding: 30px 0;
    }

    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .h1 {
        font-size: 2.8rem;
    }

    .h2 {
        font-size: 2rem;
    }

    .h3 {
        font-size: 1.2rem;
    }

    .mobile-link {
        font-size: 2.5rem;
    }

    .pillar-content {
        padding: 30px 20px;
    }

    .promo-content .h2 {
        font-size: 2rem !important;
    }

    .hero-cta p {
        font-size: 1rem;
    }

    .btn-primary {
        font-size: 1.2rem;
        padding: 15px 30px;
    }

    .container {
        padding: 0 20px;
    }
}