/* ============================================ */
/* CSS RESET & BASE */
/* ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #0a0e1a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
::selection { background: rgba(250,204,21,0.3); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0e1a; }
::-webkit-scrollbar-thumb { background: rgba(250,204,21,0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(250,204,21,0.5); }

/* ============================================ */
/* DESIGN TOKENS */
/* ============================================ */
:root {
    --cockpit: #0a0e1a;
    --cockpit-light: #111827;
    --gold: #FACC15;
    --orange: #F97316;
    --runway: #1e293b;
    --altitude: #3b82f6;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --white-5: rgba(255,255,255,0.05);
    --white-10: rgba(255,255,255,0.1);
    --white-20: rgba(255,255,255,0.2);
}

/* Font families */
.font-display, h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* ============================================ */
/* BACKGROUND GRADIENT ORBS (fixed) */
/* ============================================ */
body > .fixed { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
body > .fixed > div:nth-child(1) {
    position: absolute; top: -20%; left: -10%; width: 600px; height: 600px;
    background: rgba(249,115,22,0.1); border-radius: 50%; filter: blur(120px);
}
body > .fixed > div:nth-child(2) {
    position: absolute; top: 30%; right: -15%; width: 500px; height: 500px;
    background: rgba(59,130,246,0.08); border-radius: 50%; filter: blur(100px);
}
body > .fixed > div:nth-child(3) {
    position: absolute; bottom: -10%; left: 20%; width: 700px; height: 700px;
    background: rgba(250,204,21,0.05); border-radius: 50%; filter: blur(150px);
}

/* ============================================ */
/* NAVIGATION */
/* ============================================ */
nav#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: all 0.5s ease;
}
#navbar.scrolled {
    background: rgba(10,14,26,0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav .nav-container {
    max-width: 80rem; margin: 0 auto; padding: 0 1rem;
}
nav .nav-inner {
    display: flex; align-items: center; justify-content: space-between; height: 5rem;
}

/* Logo */
.logo-link {
    display: flex; align-items: center; gap: 0.75rem;
}
.logo-link:hover .logo-icon { transform: scale(1.1); }
.logo-icon {
    width: 2.5rem; height: 2.5rem; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.logo-icon svg { width: 1.5rem; height: 1.5rem; color: var(--cockpit); fill: var(--cockpit); }
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 0.1em; color: #fff; }

/* Desktop nav */
.desktop-nav { display: none; align-items: center; gap: 2rem; }
.nav-link {
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-400); transition: color 0.3s;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
    padding: 0.625rem 1.5rem; background: var(--gold); color: var(--cockpit);
    font-weight: 600; font-size: 0.875rem; border-radius: 9999px;
    text-transform: uppercase; letter-spacing: 0.05em;
    transition: all 0.3s; display: inline-block;
}
.nav-cta:hover { background: var(--orange); transform: scale(1.05); }

/* Mobile hamburger */
.mobile-btn {
    display: flex; flex-direction: column; gap: 0.375rem; padding: 0.5rem;
    background: none; border: none;
}
.mobile-btn span {
    width: 1.5rem; height: 2px; background: #fff; transition: all 0.3s; display: block;
}
.mobile-btn.active span:nth-child(1) { transform: rotate(45deg) translateY(8px); }
.mobile-btn.active span:nth-child(2) { opacity: 0; }
.mobile-btn.active span:nth-child(3) { transform: rotate(-45deg) translateY(-8px); }

/* Mobile menu */
#mobile-menu {
    background: rgba(10,14,26,0.95); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.05);
}
#mobile-menu.hidden { display: none; }
#mobile-menu .menu-inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-link {
    font-size: 1.125rem; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--gray-300); transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-cta {
    padding: 0.75rem 1.5rem; background: var(--gold); color: var(--cockpit);
    font-weight: 600; text-align: center; border-radius: 9999px;
    text-transform: uppercase; letter-spacing: 0.05em; display: block;
}

@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-btn { display: none; }
    #mobile-menu { display: none !important; }
    nav .nav-container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
    nav .nav-container { padding: 0 2rem; }
}

/* ============================================ */
/* LAYOUT UTILITIES */
/* ============================================ */
.container-main { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container-main { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-main { padding: 0 2rem; } }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-0\.5 { gap: 0.125rem; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============================================ */
/* HERO SECTION */
/* ============================================ */
#hero {
    position: relative; min-height: 100vh; display: flex;
    align-items: center; justify-content: center; padding-top: 5rem;
}
.bg-grid {
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    position: absolute; inset: 0; opacity: 0.2;
}
.particles-container { position: absolute; inset: 0; pointer-events: none; }
.particle {
    position: absolute; width: 2px; height: 2px;
    background: rgba(250,204,21,0.4); border-radius: 50%; pointer-events: none;
    --px: 0px;
}
@keyframes particleFloat {
    to { transform: translate(var(--px), -200px); opacity: 0; }
}

/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; border-radius: 9999px;
    border: 1px solid rgba(250,204,21,0.3); background: rgba(250,204,21,0.05);
    margin-bottom: 2rem;
}
.hero-badge .dot {
    width: 0.5rem; height: 0.5rem; background: var(--gold);
    border-radius: 50%; animation: pulse 2s infinite;
}
.hero-badge span:last-child {
    color: var(--gold); font-size: 0.875rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.05em;
}

/* Hero heading */
#hero h1 {
    font-size: 3.75rem; line-height: 1; margin-bottom: 1.5rem; letter-spacing: -0.025em;
}
#hero h1 .line-white { display: block; color: #fff; }
#hero h1 .line-gold {
    display: block;
    background: linear-gradient(to right, var(--gold), var(--orange), var(--gold));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
@media (min-width: 640px) { #hero h1 { font-size: 4.5rem; } }
@media (min-width: 768px) { #hero h1 { font-size: 6rem; } }
@media (min-width: 1024px) { #hero h1 { font-size: 8rem; } }

/* Hero subtitle */
#hero .subtitle {
    max-width: 42rem; margin: 0 auto; font-size: 1.125rem;
    color: var(--gray-400); margin-bottom: 2.5rem; line-height: 1.75;
}
@media (min-width: 640px) { #hero .subtitle { font-size: 1.25rem; } }

/* Hero CTA buttons */
.hero-ctas { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2rem; background: var(--gold); color: var(--cockpit);
    font-weight: 700; font-size: 1.125rem; border-radius: 9999px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: var(--orange); transform: scale(1.05);
    box-shadow: 0 0 40px rgba(250,204,21,0.3);
}
.btn-primary svg { width: 1.25rem; height: 1.25rem; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2rem; border: 2px solid rgba(255,255,255,0.2);
    color: #fff; font-weight: 600; font-size: 1.125rem; border-radius: 9999px;
    transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
.btn-secondary svg { width: 1.25rem; height: 1.25rem; }

/* Scroll indicator */
.scroll-indicator {
    margin-top: 4rem; display: flex; flex-direction: column;
    align-items: center; gap: 0.5rem; animation: bounce 1s infinite;
}
.scroll-indicator span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-500); }
.scroll-indicator svg { width: 1.25rem; height: 1.25rem; color: var(--gray-500); }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero bottom gradient */
.hero-bottom-gradient {
    position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
    background: linear-gradient(to top, var(--cockpit), transparent);
}

/* ============================================ */
/* SECTIONS */
/* ============================================ */
.section { position: relative; padding: 6rem 0; }
@media (min-width: 640px) { .section { padding: 8rem 0; } }
.section-bg {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(17,24,39,0.5), transparent);
}

/* Section headers */
.section-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.375rem 0.75rem; border-radius: 9999px;
    border: 1px solid rgba(250,204,21,0.2); background: rgba(250,204,21,0.05);
    margin-bottom: 1.5rem;
}
.section-badge span {
    color: var(--gold); font-size: 0.75rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.section-badge-orange {
    border-color: rgba(249,115,22,0.3); background: rgba(249,115,22,0.1);
}
.section-badge-orange span { color: var(--orange); }

h2 { font-size: 2.25rem; margin-bottom: 1rem; }
@media (min-width: 640px) { h2 { font-size: 3rem; } }
@media (min-width: 1024px) { h2 { font-size: 3.75rem; } }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-altitude { color: var(--altitude); }
.section-subtitle {
    color: var(--gray-400); font-size: 1.125rem;
    max-width: 42rem; margin: 0 auto;
}

/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */
.about-grid {
    display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

/* Image container */
.about-image-wrap {
    position: relative; border-radius: 1rem; overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(250,204,21,0.1);
}
.about-image-wrap:hover img { transform: scale(1.05); }
.about-image-wrap img {
    width: 100%; height: 500px; object-fit: cover;
    transition: transform 0.7s;
}
.about-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,14,26,0.8), transparent, transparent);
}
.about-badge-float {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem; background: rgba(10,14,26,0.8);
    backdrop-filter: blur(12px); border-radius: 0.75rem;
    border: 1px solid rgba(250,204,21,0.2);
}
.about-badge-icon {
    width: 3rem; height: 3rem; background: rgba(250,204,21,0.2);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
}
.about-badge-float p:first-of-type { color: var(--gold); font-weight: 600; font-size: 0.875rem; }
.about-badge-float p:last-of-type { color: var(--gray-400); font-size: 0.75rem; }

/* Decorative corners */
.deco-corner {
    position: absolute; width: 6rem; height: 6rem;
    border: 2px solid rgba(250,204,21,0.2); border-radius: 1rem; z-index: -1;
}
.deco-corner-tl { top: -1rem; left: -1rem; }
.deco-corner-br { bottom: -1rem; right: -1rem; border-color: rgba(249,115,22,0.2); }

/* About text */
.about-text p { color: var(--gray-400); font-size: 1.125rem; line-height: 1.75; margin-bottom: 1.5rem; }
.about-text p:last-of-type { margin-bottom: 2rem; }

/* Stats grid */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.stat-card {
    text-align: center; padding: 1rem; border-radius: 0.75rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.stat-card:hover { border-color: rgba(250,204,21,0.2); }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.875rem; color: var(--gold); }
.stat-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }

/* ============================================ */
/* FEATURE CARDS */
/* ============================================ */
.features-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
    padding: 2rem; border-radius: 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s;
}
.feature-card:hover {
    border-color: rgba(250,204,21,0.3); background: rgba(255,255,255,0.04);
    transform: translateY(-8px);
}
.feature-icon {
    width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; transition: background 0.3s;
}
.feature-icon svg { width: 1.75rem; height: 1.75rem; }
.feature-icon-gold { background: rgba(250,204,21,0.1); }
.feature-icon-gold svg { color: var(--gold); stroke: var(--gold); }
.feature-card:hover .feature-icon-gold { background: rgba(250,204,21,0.2); }
.feature-icon-orange { background: rgba(249,115,22,0.1); }
.feature-icon-orange svg { color: var(--orange); stroke: var(--orange); }
.feature-card:hover .feature-icon-orange { background: rgba(249,115,22,0.2); }
.feature-icon-blue { background: rgba(59,130,246,0.1); }
.feature-icon-blue svg { color: var(--altitude); stroke: var(--altitude); }
.feature-card:hover .feature-icon-blue { background: rgba(59,130,246,0.2); }
.feature-card h3 {
    font-size: 1.5rem; margin-bottom: 0.75rem; transition: color 0.3s; color: #fff;
}
.feature-card:hover h3.hover-gold { color: var(--gold); }
.feature-card:hover h3.hover-orange { color: var(--orange); }
.feature-card:hover h3.hover-blue { color: var(--altitude); }
.feature-card p { color: var(--gray-400); line-height: 1.75; }

/* ============================================ */
/* MENU SECTION */
/* ============================================ */
.menu-tabs {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin-bottom: 3rem;
}
.menu-tab {
    padding: 0.625rem 1.25rem; border-radius: 9999px;
    font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    color: var(--gray-400); cursor: pointer; transition: all 0.3s;
}
.menu-tab:hover { border-color: rgba(250,204,21,0.2); color: var(--gold); }
.menu-tab.active { background: rgba(250,204,21,0.1); border-color: rgba(250,204,21,0.3); color: var(--gold); }

.menu-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item {
    padding: 1.25rem 1.5rem; border-radius: 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    transition: all 0.3s;
}
.menu-item:hover {
    border-color: rgba(250,204,21,0.2); background: rgba(255,255,255,0.04);
    transform: translateX(4px);
}
.menu-item .item-name { font-weight: 600; color: #fff; font-size: 0.95rem; }
.menu-item .item-desc { color: var(--gray-500); font-size: 0.8rem; margin-top: 0.25rem; }
.menu-item .item-price {
    font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem;
    color: var(--gold); white-space: nowrap;
}

/* Order CTA */
.order-cta {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--gold), var(--orange));
    color: var(--cockpit); font-weight: 700; font-size: 1.125rem; border-radius: 9999px;
    transition: all 0.3s;
}
.order-cta:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(250,204,21,0.25); }
.order-cta svg { width: 1.25rem; height: 1.25rem; }
.order-note { color: var(--gray-500); font-size: 0.875rem; margin-top: 0.75rem; }

/* ============================================ */
/* F16 SAUCE SECTION */
/* ============================================ */
.f16-card {
    position: relative; border-radius: 1.5rem; overflow: hidden;
    background: linear-gradient(to right, rgba(249,115,22,0.1), rgba(127,29,29,0.1), rgba(250,204,21,0.1));
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
}
@media (min-width: 640px) { .f16-card { padding: 3rem; } }
@media (min-width: 1024px) { .f16-card { padding: 4rem; } }
.f16-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 24rem; height: 24rem; background: rgba(249,115,22,0.2);
    border-radius: 50%; filter: blur(100px);
}
.f16-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .f16-grid { grid-template-columns: 1fr 1fr; } }
.f16-text p { color: var(--gray-300); font-size: 1.125rem; line-height: 1.75; margin-bottom: 2rem; }
.spice-level { display: flex; align-items: center; gap: 1.5rem; }
.spice-icons { display: flex; gap: 0.125rem; }
.spice-icons span { font-size: 1.25rem; }
.spice-label { color: var(--gray-400); font-size: 0.875rem; }

/* F16 spinning graphic */
.f16-visual { display: flex; justify-content: center; }
.f16-circles {
    position: relative; width: 16rem; height: 16rem;
}
@media (min-width: 640px) { .f16-circles { width: 20rem; height: 20rem; } }
.f16-circles .ring {
    position: absolute; border-radius: 50%; border: 2px solid;
}
.f16-circles .ring-1 { inset: 0; border-color: rgba(249,115,22,0.2); animation: spin 20s linear infinite; }
.f16-circles .ring-2 { inset: 1rem; border-color: rgba(249,115,22,0.1); animation: spin 15s linear infinite reverse; }
.f16-circles .ring-3 { inset: 2rem; border-color: rgba(250,204,21,0.2); animation: spin 25s linear infinite; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.f16-center {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.f16-badge {
    width: 8rem; height: 8rem; border-radius: 50%;
    background: linear-gradient(to bottom right, var(--orange), #dc2626);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(249,115,22,0.3);
}
.f16-badge span { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: #fff; }

/* ============================================ */
/* AWARDS */
/* ============================================ */
.awards-grid {
    display: grid; gap: 2rem; max-width: 56rem; margin: 0 auto;
}
@media (min-width: 768px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
.award-card {
    text-align: center; padding: 2rem; border-radius: 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s;
}
.award-card:hover { border-color: rgba(250,204,21,0.3); transform: translateY(-8px); }
.award-icon {
    width: 5rem; height: 5rem; margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(250,204,21,0.2), rgba(249,115,22,0.2));
    display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.award-card h3 { font-size: 1.25rem; color: var(--gold); margin-bottom: 0.5rem; }
.award-card p { color: var(--gray-400); font-size: 0.875rem; }

/* Rating bar */
.rating-bar {
    margin-top: 4rem; max-width: 48rem; margin-left: auto; margin-right: auto;
}
.rating-bar-inner {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2rem;
    padding: 2rem; border-radius: 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
}
.rating-item { text-align: center; }
.rating-value { font-family: 'Bebas Neue', sans-serif; font-size: 2.25rem; color: var(--gold); }
.rating-value .small { font-size: 1.125rem; color: var(--gray-500); }
.rating-label { font-size: 0.75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; }
.rating-divider { width: 1px; height: 3rem; background: var(--white-10); display: none; }
@media (min-width: 640px) { .rating-divider { display: block; } }

/* ============================================ */
/* REVIEWS MARQUEE */
/* ============================================ */
.reviews-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.reviews-track {
    display: flex; gap: 1.5rem;
    animation: marquee 40s linear infinite; width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card {
    flex-shrink: 0; width: 350px; padding: 1.5rem; border-radius: 1rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.review-card:hover { border-color: rgba(250,204,21,0.2); }
.review-stars { color: var(--gold); margin-bottom: 1rem; }
.review-card .review-text { color: var(--gray-300); line-height: 1.75; margin-bottom: 1rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
    width: 2.5rem; height: 2.5rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
}
.reviewer-avatar-gold { background: rgba(250,204,21,0.2); color: var(--gold); }
.reviewer-avatar-orange { background: rgba(249,115,22,0.2); color: var(--orange); }
.reviewer-avatar-blue { background: rgba(59,130,246,0.2); color: var(--altitude); }
.reviewer-avatar-green { background: rgba(34,197,94,0.2); color: #4ade80; }
.reviewer-avatar-purple { background: rgba(168,85,247,0.2); color: #c084fc; }
.reviewer-avatar-pink { background: rgba(236,72,153,0.2); color: #f472b6; }
.reviewer-name { font-size: 0.875rem; font-weight: 600; color: #fff; }
.reviewer-source { font-size: 0.75rem; color: var(--gray-500); }

@media (max-width: 768px) {
    .reviews-track { animation-duration: 25s; }
    .review-card { width: 300px; }
}
@media (max-width: 480px) { .review-card { width: 280px; } }

/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
    display: flex; align-items: flex-start; gap: 1.25rem;
    padding: 1.5rem; border-radius: 1rem;
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(250,204,21,0.2); }
.contact-icon {
    width: 3rem; height: 3rem; border-radius: 0.75rem;
    background: rgba(250,204,21,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: background 0.3s;
}
.contact-card:hover .contact-icon { background: rgba(250,204,21,0.2); }
.contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold); stroke: var(--gold); fill: none; }
.contact-card h3 { font-family: 'Inter', sans-serif; font-weight: 600; color: #fff; margin-bottom: 0.25rem; font-size: 1rem; }
.contact-card p { color: var(--gray-400); font-size: 0.95rem; }
.contact-link { color: var(--gold); transition: color 0.3s; }
.contact-card:hover .contact-link { color: var(--orange); }

/* Hours */
.hours-row { display: flex; justify-content: space-between; gap: 2rem; font-size: 0.875rem; }
.hours-row + .hours-row { margin-top: 0.25rem; }
.hours-day { color: var(--gray-400); }
.hours-time { color: #fff; font-weight: 500; }

/* Social links */
.social-links { display: flex; gap: 1rem; padding-top: 1rem; }
.social-link {
    width: 3rem; height: 3rem; border-radius: 0.75rem;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.social-link:hover { border-color: rgba(250,204,21,0.3); background: rgba(250,204,21,0.1); }
.social-link svg { width: 1.25rem; height: 1.25rem; color: var(--gray-400); fill: var(--gray-400); transition: color 0.3s, fill 0.3s; }
.social-link:hover svg { color: var(--gold); fill: var(--gold); }

/* Map */
.map-container {
    border-radius: 1rem; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); height: 500px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; filter: invert(90%) hue-rotate(180deg) brightness(0.95) contrast(0.9); }

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta-box {
    position: relative; padding: 3rem; border-radius: 1.5rem; overflow: hidden;
}
@media (min-width: 640px) { .cta-box { padding: 4rem; } }
.cta-bg {
    position: absolute; inset: 0; border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(250,204,21,0.1), rgba(249,115,22,0.05), var(--cockpit));
    border: 1px solid rgba(250,204,21,0.2);
}
.cta-glow {
    position: absolute; top: 0; right: 0; width: 16rem; height: 16rem;
    background: rgba(250,204,21,0.1); border-radius: 50%; filter: blur(80px);
}
.cta-content { position: relative; }
.cta-content h2 { margin-bottom: 1.5rem; }
.cta-content > p { color: var(--gray-400); font-size: 1.125rem; margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; } }
.btn-cta-gold {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2rem; background: var(--gold); color: var(--cockpit);
    font-weight: 700; font-size: 1.125rem; border-radius: 9999px; transition: all 0.3s;
}
.btn-cta-gold:hover { background: var(--orange); transform: scale(1.05); box-shadow: 0 0 40px rgba(250,204,21,0.3); }
.btn-cta-gold svg { width: 1.25rem; height: 1.25rem; }
.btn-cta-outline {
    padding: 1rem 2rem; border: 2px solid rgba(250,204,21,0.4);
    color: var(--gold); font-weight: 600; font-size: 1.125rem;
    border-radius: 9999px; transition: all 0.3s;
}
.btn-cta-outline:hover { background: rgba(250,204,21,0.1); transform: scale(1.05); }

/* ============================================ */
/* FOOTER */
/* ============================================ */
footer {
    position: relative; border-top: 1px solid rgba(255,255,255,0.05); padding: 3rem 0;
}
.footer-inner {
    display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-icon {
    width: 2rem; height: 2rem; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon svg { width: 1.25rem; height: 1.25rem; fill: var(--cockpit); }
.footer-logo span { font-family: 'Bebas Neue', sans-serif; font-size: 1.125rem; letter-spacing: 0.05em; }
.footer-copy { color: var(--gray-500); font-size: 0.875rem; text-align: center; }
.footer-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-links a { color: var(--gray-500); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ============================================ */
/* GSAP ANIMATION INITIAL STATES */
/* ============================================ */
/* Reveal animations - initial states */
.reveal-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.feature-card, .award-card {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1),
                border-color 0.5s, background 0.5s;
}

/* Revealed state */
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.feature-card.revealed,
.award-card.revealed {
    opacity: 1; transform: none;
}
/* Hero elements animate in via CSS keyframes (GSAP ticker may not run in background tabs) */
.hero-element {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease-out forwards;
}
.hero-element:nth-child(1) { animation-delay: 0.2s; }
.hero-element:nth-child(2) { animation-delay: 0.35s; }
.hero-element:nth-child(3) { animation-delay: 0.5s; }
.hero-element:nth-child(4) { animation-delay: 0.65s; }
.hero-element:nth-child(5) { animation-delay: 0.8s; }
@keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================ */
/* FLYING PLANES */
/* ============================================ */

.planes-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5; /* Above background orbs, below content */
    overflow: hidden;
}

.flying-plane {
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    transition: opacity 1.5s ease;
    filter: drop-shadow(0 0 4px currentColor);
}

.plane-icon {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.5;
    transition: opacity 0.3s;
}

/* Trail behind the plane (below = behind, since plane SVG points up and rotation +90 aligns with velocity) */
.plane-trail {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 1.5px;
    height: 0;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, currentColor, transparent);
    opacity: 0;
    pointer-events: none;
    transition: height 0.3s ease, opacity 0.3s ease;
}


/* Glow effect on UI elements when a plane lands */
.plane-landed {
    animation: landingGlow 0.6s ease-out;
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.3), 0 0 40px rgba(250, 204, 21, 0.1) !important;
}

@keyframes landingGlow {
    0% { box-shadow: 0 0 0 rgba(250, 204, 21, 0); }
    50% { box-shadow: 0 0 25px rgba(250, 204, 21, 0.4), 0 0 50px rgba(250, 204, 21, 0.15); }
    100% { box-shadow: 0 0 20px rgba(250, 204, 21, 0.3), 0 0 40px rgba(250, 204, 21, 0.1); }
}

/* Reduce planes on small screens */
@media (max-width: 768px) {
    .flying-plane:nth-child(n+4) {
        display: none;
    }
}
