/* ═══════════════════════════════════════════════════════
   POP2FLY — Light Elegance / Red Accents
   ═══════════════════════════════════════════════════════ */
:root {
    --bg: #ffffff;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --bg-surface: #ffffff;
    --red: #FF00F3;
    --red-light: #ff33f5;
    --red-dim: #cc00c2;
    --red-glow: rgba(255, 0, 243, 0.07);
    --text: #18181b;
    --text-secondary: #65637a;
    --text-muted: #a09dae;
    --border: rgba(24, 24, 27, 0.08);
    --border-red: rgba(255, 0, 243, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --font-display: 'Sora', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
::selection { background: var(--red); color: #fff; }

/* ─── Cursor Glow ─── */
.cursor-glow {
    position: fixed; width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 243, 0.04) 0%, rgba(255, 0, 243, 0.01) 35%, transparent 65%);
    pointer-events: none; z-index: 9998;
}
@media (max-width: 768px) { .cursor-glow { display: none; } }

/* ─── Scroll Reveal ─── */
[data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 9000;
    padding: 0 clamp(20px, 4vw, 60px);
    transition: all 0.5s var(--ease);
}
.navbar::after {
    content: ''; position: absolute; bottom: 0; left: 5%; right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    opacity: 0; transition: opacity 0.5s;
}
.navbar.scrolled {
    background: rgba(250, 249, 247, 0.9);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 1px 24px rgba(0,0,0,0.04);
}
.navbar.scrolled::after { opacity: 1; }
.nav-inner {
    max-width: 1400px; margin: 0 auto; height: 80px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 42px; }
.brand-text {
    font-family: var(--font-body); font-weight: 700;
    font-size: 1.3rem; letter-spacing: 3px;
}
.brand-accent { color: var(--red); }
.nav-links { display: flex; gap: 40px; }
.nav-link {
    color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
    font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
    position: relative; transition: color 0.3s;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1.5px; background: var(--text);
    transition: width 0.4s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    color: var(--red); text-decoration: none; font-size: 0.8rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    padding: 10px 28px; border: 1.5px solid var(--border-red);
    border-radius: 100px; transition: all 0.4s var(--ease);
}
.nav-cta:hover { background: var(--red); color: #fff; border-color: var(--red); }
@media (max-width: 768px) { .nav-links { display: none; } .nav-inner { height: 64px; } }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
    position: absolute; inset: 0;
    background: #ffffff;
}
.hero-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.018'/%3E%3C/svg%3E");
    opacity: 0.6;
}
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(194, 23, 46, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(194, 23, 46, 0.018) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black 15%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 50%, black 15%, transparent 65%);
}
.hero-ambient { display: none; }
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
    position: absolute; background: var(--red); border-radius: 50%;
    opacity: 0; animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    15%  { opacity: 0.25; transform: scale(1); }
    85%  { opacity: 0.1; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}
.hero-content {
    position: relative; z-index: 5; text-align: center;
    padding: 0 20px; max-width: 900px;
}
.hero-eyebrow {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin-bottom: 32px; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 5px; text-transform: uppercase; color: var(--text-secondary);
}
.eyebrow-line { width: 40px; height: 1px; background: var(--text); opacity: 0.2; }
.hero-title { font-family: var(--font-display); line-height: 1.05; margin-bottom: 28px; }
.title-line {
    display: block; font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400; letter-spacing: -2px;
}
.title-accent {
    white-space: nowrap;
    font-style: italic;
    color: var(--text);
}
@media (max-width: 500px) {
    .title-accent { font-size: clamp(1.2rem, 5vw, 2rem); }
}
.hero-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem); color: var(--text-secondary);
    font-weight: 300; max-width: 550px; margin: 0 auto 50px; line-height: 1.8;
}
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; margin-bottom: 60px;
}
.stat { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); }
.stat-label {
    display: block; font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--text-muted); margin-top: 8px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-cta {
    display: inline-flex; align-items: center; gap: 10px; color: var(--text-secondary);
    text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 32px; border: 1px solid rgba(24,24,27,0.1); border-radius: 100px;
    transition: all 0.4s var(--ease);
}
.hero-scroll-cta:hover { color: var(--red); border-color: var(--border-red); transform: translateY(3px); }
.hero-scroll-cta svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 768px) { .hero-stats { gap: 24px; flex-wrap: wrap; } .stat-number { font-size: 2rem; } }

/* Hero staggered animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow            { animation: fadeInUp 1s 0.2s var(--ease) both; }
.hero-title .title-line:nth-child(1) { animation: fadeInUp 1s 0.4s var(--ease) both; }
.hero-title .title-line:nth-child(2) { animation: fadeInUp 1s 0.6s var(--ease) both; }
.hero-subtitle           { animation: fadeInUp 1s 0.8s var(--ease) both; }
.hero-stats              { animation: fadeInUp 1s 1s   var(--ease) both; }
.hero-scroll-cta         { animation: fadeInUp 1s 1.2s var(--ease) both; }

/* ═══════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════ */
.marquee-strip {
    overflow: hidden; padding: 18px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.marquee-track {
    display: flex; gap: 40px; animation: marqueeScroll 25s linear infinite;
    width: max-content; font-size: 0.75rem; font-weight: 500;
    letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted);
}
.marquee-dot { color: var(--text-muted); font-size: 0.5rem; opacity: 0.5; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.section-header { text-align: center; max-width: 650px; margin: 0 auto 60px; padding: 0 20px; }
.section-tag {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 4px; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400; line-height: 1.2; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--text); }
.section-desc { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.8; }

/* ═══════════════════════════════════════
   FLEET / JET CARDS
   ═══════════════════════════════════════ */
.fleet-section { padding: 120px clamp(20px, 5vw, 80px); }
.fleet-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px; max-width: 1300px; margin: 0 auto;
}
.jet-card {
    position: relative; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease);
    box-shadow: 0 2px 16px rgba(0,0,0,0.03);
}
.jet-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius-md);
    border: 2px solid transparent; transition: border-color 0.5s;
    z-index: 10; pointer-events: none;
}
.jet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.07), 0 0 0 1px rgba(194,23,46,0.05);
}
.jet-card-visual { position: relative; overflow: hidden; }
.jet-card-img-wrapper { position: relative; height: 260px; overflow: hidden; }
.jet-card-img-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.jet-card:hover .jet-card-img-wrapper img { transform: scale(1.06); }
.jet-card-overlay { display: none; }
.img-fallback {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
    display: flex; align-items: center; justify-content: center;
}
.img-fallback::after { content: '✈'; font-size: 4rem; opacity: 0.07; }
.jet-category {
    position: absolute; top: 16px; left: 16px; font-size: 0.65rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text);
    background: rgba(255,255,255,0.9); backdrop-filter: blur(12px);
    padding: 6px 14px; border-radius: 100px; border: 1px solid var(--border); z-index: 5;
}
.jet-price { display: flex; align-items: baseline; gap: 6px; margin-top: 14px; }
.price-from { display: block; font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.price-amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; }
.price-unit { font-size: 0.75rem; color: var(--text-muted); }
.jet-card-body { padding: 24px; }
.jet-route-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 1.5px;
    color: var(--text-secondary); margin-bottom: 10px;
}
.jet-route-badge svg { stroke: var(--text-muted); opacity: 0.6; }
.jet-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; margin-bottom: 16px; }
.jet-specs { display: flex; gap: 20px; }
.spec { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-secondary); }
.spec svg { stroke: var(--text-muted); }

/* Selected */
.jet-card.selected::before { border-color: var(--red); }
.jet-card.selected { box-shadow: 0 0 0 2px var(--red), 0 16px 48px rgba(194,23,46,0.1); }
.jet-card-select-indicator {
    position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
    border-radius: 50%; background: var(--red);
    display: flex; align-items: center; justify-content: center;
    z-index: 10; opacity: 0; transform: scale(0.5);
    transition: all 0.4s var(--spring);
}
.jet-card-select-indicator svg { stroke: #fff; }
.jet-card.selected .jet-card-select-indicator { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════
   MAP
   ═══════════════════════════════════════ */
.map-section { padding: 120px clamp(20px, 5vw, 80px); background: #ffffff; }
.map-wrapper { max-width: 1200px; margin: 0 auto; position: relative; }
.map-container {
    height: 540px; border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* Leaflet theme overrides */
.leaflet-container { background: var(--bg-elevated) !important; font-family: var(--font-body) !important; }
.leaflet-tile-pane { filter: saturate(0.15) brightness(1.02); }
.leaflet-control-zoom a { background: var(--bg-card) !important; color: var(--text-secondary) !important; border-color: var(--border) !important; }
.leaflet-control-zoom a:hover { background: var(--bg-elevated) !important; color: var(--text) !important; }
.leaflet-popup-content-wrapper {
    background: var(--bg-card) !important; color: var(--text) !important;
    border-radius: var(--radius-sm) !important; border: 1px solid var(--border) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    font-family: var(--font-body) !important; font-size: 0.85rem !important;
}
.leaflet-popup-tip { background: var(--bg-card) !important; }

/* Markers */
.custom-marker { background: none; border: none; }
.marker-active .marker-dot {
    width: 12px; height: 12px; border-radius: 50%; position: relative;
    background: var(--red); border: 2.5px solid #fff;
    box-shadow: 0 0 0 3px rgba(194, 23, 46, 0.2), 0 2px 8px rgba(194, 23, 46, 0.3);
}
.marker-active .marker-dot::after {
    content: ''; position: absolute; inset: -8px;
    border: 1.5px solid var(--red); border-radius: 50%;
    opacity: 0; animation: markerPulse 2.5s ease-out infinite;
}
.marker-inactive .marker-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--red); border: 2px solid #fff;
    box-shadow: 0 0 0 2px rgba(194, 23, 46, 0.15), 0 1px 6px rgba(194, 23, 46, 0.2);
}
@keyframes markerPulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(3); opacity: 0; } }
.map-legend {
    position: absolute; bottom: 20px; left: 20px; display: flex; gap: 20px;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
    padding: 10px 20px; border-radius: 100px; border: 1px solid var(--border);
    font-size: 0.72rem; color: var(--text-secondary); z-index: 1000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.legend-item { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.active-route { background: var(--red); }
.legend-dot.airport { background: var(--red); opacity: 0.5; }

/* ═══════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════ */
.booking-section { position: relative; padding: 120px clamp(20px, 5vw, 80px); overflow: hidden; }
.booking-bg { position: absolute; inset: 0; z-index: 0; }
.booking-gradient {
    position: absolute; inset: 0;
    background: #ffffff;
}
.booking-inner {
    position: relative; z-index: 1; max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start;
}
@media (max-width: 960px) { .booking-inner { grid-template-columns: 1fr; gap: 50px; } }
.booking-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.2; margin-bottom: 16px; }
.booking-title em { font-style: italic; color: var(--text); }
.booking-desc { font-size: 1rem; color: var(--text-secondary); font-weight: 300; line-height: 1.8; margin-bottom: 40px; }
.booking-features { display: flex; flex-direction: column; gap: 24px; }
.b-feature { display: flex; align-items: flex-start; gap: 16px; }
.b-feature-icon {
    width: 48px; height: 48px; min-width: 48px; border-radius: 12px;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.b-feature-icon svg { stroke: var(--text); }
.b-feature strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.b-feature span { font-size: 0.82rem; color: var(--text-muted); }

/* Form */
.form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.form-card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
    flex-wrap: wrap; gap: 12px;
}
.form-card-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }
.selected-flight-badge {
    display: flex; align-items: center; gap: 6px; font-size: 0.72rem;
    letter-spacing: 1px; color: var(--text-muted); padding: 6px 14px;
    border: 1px solid var(--border); border-radius: 100px;
    transition: all 0.4s var(--ease);
}
.selected-flight-badge.active { color: var(--red); border-color: var(--border-red); background: rgba(194, 23, 46, 0.04); }
.selected-flight-badge svg { stroke: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px;
}
.form-input {
    width: 100%; background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px 16px; color: var(--text);
    font-family: var(--font-body); font-size: 0.95rem; transition: all 0.3s; outline: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(194, 23, 46, 0.06); background: #fff; }
.route-input { color: var(--text); font-weight: 500; cursor: default; }
.submit-btn {
    width: 100%; display: flex; align-items: center; justify-content: center;
    gap: 12px; padding: 18px 32px; margin-top: 8px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dim) 100%);
    color: #fff; font-family: var(--font-body); font-size: 0.85rem;
    font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.submit-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 100%);
    opacity: 0; transition: opacity 0.4s;
}
.submit-btn:hover::before { opacity: 1; }
.submit-btn .btn-text, .submit-btn .btn-icon { position: relative; z-index: 1; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(194, 23, 46, 0.2); }
.submit-btn:disabled { background: var(--bg-surface); color: var(--text-muted); cursor: not-allowed; transform: none; box-shadow: none; }
.submit-btn:disabled::before { display: none; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); padding: 60px clamp(20px, 5vw, 80px) 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.footer-brand { text-align: center; }
.footer-brand .brand-text { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--red); }
.footer-bottom { font-size: 0.72rem; color: var(--text-muted); padding-top: 30px; border-top: 1px solid var(--border); width: 100%; text-align: center; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,0,243,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

select.form-input {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a09dae' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.map-cta {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 80px; margin-bottom: 10px;
    font-size: 0.8rem; letter-spacing: 2.5px; text-transform: uppercase;
    font-weight: 500; color: var(--text-muted);
}
.map-cta svg { animation: scrollBounce 2s ease-in-out infinite; stroke: var(--text-muted); }
.footer-logo { height: 50px; margin-bottom: 12px; }

/* ─── Fleet Search Bar ─── */
.fleet-search {
    max-width: 1300px; margin: 0 auto 40px;
}
.search-bar {
    display: flex; align-items: stretch; gap: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 8px 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.search-field {
    flex: 1; padding: 10px 18px;
}
.search-field label {
    display: block; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
}
.search-input {
    width: 100%; background: transparent; border: none;
    font-family: var(--font-body); font-size: 0.92rem;
    color: var(--text); outline: none; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23a09dae' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
}
.search-divider {
    width: 1px; background: var(--border); margin: 8px 0;
}
.search-reset {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 20px; margin: 6px 6px 6px 12px;
    background: transparent; border: 1px solid var(--border);
    border-radius: 100px; font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-muted);
    cursor: pointer; transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.search-reset:hover {
    color: var(--red); border-color: var(--border-red);
}
.search-reset svg { flex-shrink: 0; }
@media (max-width: 900px) {
    .search-bar { flex-direction: column; gap: 0; }
    .search-divider { width: 100%; height: 1px; margin: 0; }
    .search-reset { margin: 8px 6px 6px; justify-content: center; }
}

/* ─── No Flights Modal ─── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 48px 40px;
    max-width: 580px; width: 100%; position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    transform: translateY(20px); transition: transform 0.4s var(--ease);
    max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-card { transform: translateY(0); }
.modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 1.8rem;
    color: var(--text-muted); cursor: pointer;
    transition: color 0.3s; line-height: 1;
}
.modal-close:hover { color: var(--red); }
.modal-icon { text-align: center; margin-bottom: 20px; }
.modal-icon svg { stroke: var(--red); }
.modal-title {
    font-family: var(--font-display); font-size: 1.6rem;
    font-weight: 400; text-align: center; margin-bottom: 12px;
}
.modal-title em { font-style: italic; color: var(--text); }
.modal-desc {
    font-size: 0.92rem; color: var(--text-secondary);
    text-align: center; line-height: 1.7; margin-bottom: 32px;
}
.modal-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-card .form-group { margin-bottom: 16px; }
.modal-card .submit-btn { margin-top: 8px; }
.modal-success {
    display: none; flex-direction: column; align-items: center;
    gap: 16px; text-align: center; padding: 20px 0;
}
.modal-success svg { stroke: #22c55e; }
.modal-success p {
    font-size: 1rem; color: var(--text-secondary); line-height: 1.7;
}
@media (max-width: 500px) {
    .modal-card { padding: 32px 24px; }
    .modal-card .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   ADMIN PAGES
   ═══════════════════════════════════════ */
/* Login */
.admin-login-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--bg); padding: 20px;
}
.admin-login-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 48px 40px;
    max-width: 420px; width: 100%; text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.admin-back-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.78rem; color: var(--text-muted); text-decoration: none;
    letter-spacing: 1px; margin-bottom: 32px; transition: color 0.3s;
}
.admin-back-link:hover { color: var(--red); }
.admin-login-icon { margin-bottom: 20px; }
.admin-login-icon svg { stroke: var(--red); }
.admin-login-title {
    font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 400; margin-bottom: 8px;
}
.admin-login-title em { font-style: italic; color: var(--red); }
.admin-login-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }
.admin-error {
    background: rgba(194,23,46,0.06); border: 1px solid rgba(194,23,46,0.2);
    color: var(--red); font-size: 0.82rem; padding: 10px 16px;
    border-radius: var(--radius-sm); margin-bottom: 20px;
}
.admin-login-card .form-group { margin-bottom: 20px; text-align: left; }

/* Panel */
.admin-page { min-height: 100vh; background: var(--bg); }
.admin-topbar {
    position: sticky; top: 0; z-index: 100;
    background: var(--bg-card); border-bottom: 1px solid var(--border);
    padding: 0 clamp(20px, 4vw, 60px);
}
.admin-topbar-inner {
    max-width: 1200px; margin: 0 auto; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
}
.admin-badge {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 2px;
    color: var(--red); background: rgba(194,23,46,0.08);
    padding: 3px 10px; border-radius: 100px; margin-left: 10px;
    vertical-align: middle;
}
.admin-topbar-actions { display: flex; gap: 24px; }
.admin-topbar-link {
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1.5px;
    text-transform: uppercase; text-decoration: none;
    color: var(--text-secondary); transition: color 0.3s;
}
.admin-topbar-link:hover { color: var(--text); }
.admin-topbar-link.logout:hover { color: var(--red); }
.admin-content {
    max-width: 1200px; margin: 0 auto;
    padding: 48px clamp(20px, 4vw, 60px) 80px;
}
.admin-section { margin-bottom: 56px; }
.admin-section-title {
    font-family: var(--font-display); font-size: 1.6rem;
    font-weight: 400; margin-bottom: 28px;
}
.admin-section-title em { font-style: italic; color: var(--red); }
.admin-count {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
    color: var(--text-muted); background: var(--bg-elevated);
    padding: 3px 10px; border-radius: 100px; margin-left: 8px;
    vertical-align: middle;
}
.admin-flights-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}
.admin-flight-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s;
}
.admin-flight-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.admin-flight-header {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 12px;
}
.admin-flight-header h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
}
.admin-flight-cat {
    font-size: 0.62rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--red);
    background: rgba(194,23,46,0.06); padding: 4px 10px;
    border-radius: 100px; white-space: nowrap;
}
.admin-flight-route {
    font-size: 0.82rem; font-weight: 500; color: var(--red);
    letter-spacing: 1px; margin-bottom: 14px;
}
.admin-flight-details {
    display: flex; gap: 16px; font-size: 0.78rem; color: var(--text-secondary);
    margin-bottom: 16px;
}
.admin-delete-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px; background: transparent;
    border: 1px solid var(--border); border-radius: 100px;
    font-family: var(--font-body); font-size: 0.72rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.admin-delete-btn:hover {
    color: var(--red); border-color: var(--border-red);
    background: rgba(194,23,46,0.04);
}
.admin-form-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.05);
}
.admin-form-subtitle {
    font-family: var(--font-display); font-size: 1.1rem;
    font-weight: 400; color: var(--text); margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.search-go {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 24px; margin: 6px 0 6px 12px;
    background: var(--red); border: none;
    border-radius: 100px; font-family: var(--font-body);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: #fff;
    cursor: pointer; transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.search-go:hover {
    background: var(--red-dim); transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(194,23,46,0.2);
}
.search-go svg { stroke: #fff; flex-shrink: 0; }

/* ─── Airport Search Dropdown ─── */
.search-airport { position: relative; }
.airport-dropdown {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 100;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-top: 4px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    display: none; max-height: 280px; overflow-y: auto;
}
.airport-dropdown-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 16px; cursor: pointer; transition: background 0.2s;
}
.airport-dropdown-item:hover { background: var(--bg-elevated); }
.airport-dropdown-item:not(:last-child) { border-bottom: 1px solid var(--border); }
.airport-dropdown-name { font-size: 0.88rem; font-weight: 500; }
.airport-dropdown-meta {
    font-size: 0.72rem; color: var(--text-muted);
    letter-spacing: 1px; font-weight: 500;
}
.airport-dropdown-empty {
    padding: 16px; text-align: center;
    font-size: 0.85rem; color: var(--text-muted);
}

/* ─── Upload Zone ─── */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 40px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    background: var(--bg-elevated);
}
.upload-zone:hover {
    border-color: var(--red);
    background: rgba(255, 0, 243, 0.02);
}
.upload-zone.drag-over {
    border-color: var(--red);
    background: rgba(255, 0, 243, 0.05);
    transform: scale(1.01);
}
.upload-content {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.upload-content svg { stroke: var(--text-muted); }
.upload-zone:hover .upload-content svg { stroke: var(--red); }
.upload-text {
    font-size: 0.92rem; font-weight: 500; color: var(--text-secondary);
}
.upload-hint {
    font-size: 0.75rem; color: var(--text-muted);
}
.upload-preview {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.upload-preview img {
    max-width: 200px; max-height: 140px; object-fit: cover;
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.upload-filename {
    font-size: 0.82rem; font-weight: 500; color: var(--text-secondary);
}
.upload-remove {
    background: none; border: 1px solid var(--border);
    border-radius: 100px; padding: 6px 16px;
    font-family: var(--font-body); font-size: 0.72rem;
    font-weight: 500; color: var(--text-muted);
    cursor: pointer; transition: all 0.3s;
}
.upload-remove:hover {
    color: var(--red); border-color: var(--border-red);
}

/* ═══════════════════════════════════════
   LANGUAGE / SEATS / GALLERY / TRENDING
   ═══════════════════════════════════════ */
/* ─── Language Switch ─── */
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 2px; background: var(--bg-elevated); border-radius: 100px; padding: 3px; }
.lang-btn {
    padding: 5px 10px; border: none; background: transparent;
    font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
    letter-spacing: 1px; color: var(--text-muted); cursor: pointer;
    border-radius: 100px; transition: all 0.3s;
}
.lang-btn.active { background: #fff; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.lang-btn:hover:not(.active) { color: var(--text-secondary); }

/* ─── Seats Countdown Badge ─── */
.seats-countdown {
    position: absolute; bottom: 16px; left: 16px; display: flex; align-items: center; gap: 6px;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    padding: 6px 12px; border-radius: 100px; z-index: 5;
}
.seats-dot {
    width: 6px; height: 6px; border-radius: 50%; background: #22c55e;
    animation: seatPulse 2s ease-in-out infinite;
}
@keyframes seatPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.seats-text { font-size: 0.7rem; font-weight: 600; color: #fff; letter-spacing: 0.5px; }

/* ─── Gallery Button ─── */
.gallery-btn {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
    padding: 8px 16px; background: transparent; border: 1px solid var(--border);
    border-radius: 100px; font-family: var(--font-body); font-size: 0.7rem;
    font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    color: var(--text-muted); cursor: pointer; transition: all 0.3s;
}
.gallery-btn:hover { color: var(--red); border-color: var(--border-red); }

/* ─── Trending Section ─── */
.trending-section {
    padding: 120px clamp(20px, 5vw, 80px); background: #ffffff;
}
.trending-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px; max-width: 1300px; margin: 0 auto;
}
.trending-card {
    border-radius: var(--radius-md); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--border);
    cursor: pointer; transition: all 0.4s var(--ease);
}
.trending-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.trending-img { position: relative; height: 200px; overflow: hidden; }
.trending-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.trending-card:hover .trending-img img { transform: scale(1.08); }
.trending-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.trending-tag {
    position: absolute; top: 14px; left: 14px;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    color: #fff; background: var(--red); padding: 4px 12px; border-radius: 100px;
}
.trending-info { padding: 18px 20px; }
.trending-info h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; }
.trending-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ─── Dynamic Price Box ─── */
.dynamic-price-box {
    background: var(--bg-elevated); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 18px 20px; margin: 16px 0;
}
.price-row {
    display: flex; justify-content: space-between; padding: 6px 0;
    font-size: 0.85rem; color: var(--text-secondary);
}
.price-row.total {
    border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px;
    font-weight: 700; font-size: 1rem; color: var(--text);
}

/* ─── Lightbox ─── */
.lightbox-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    background: none; border: none; color: #fff;
    font-size: 2.2rem; cursor: pointer; z-index: 10;
    opacity: 0.7; transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-content { max-width: 80vw; max-height: 80vh; text-align: center; }
.lightbox-content img {
    max-width: 100%; max-height: 70vh; object-fit: contain;
    border-radius: 8px;
}
.lightbox-caption { color: #fff; font-size: 0.9rem; margin-top: 16px; opacity: 0.7; }
.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.1); border: none; color: #fff;
    font-size: 2.5rem; padding: 10px 18px; cursor: pointer;
    border-radius: 8px; transition: background 0.3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 0.8rem; opacity: 0.6; letter-spacing: 2px;
}

/* ─── Jet Date Badge ─── */
.jet-date-badge {
    display: flex; align-items: center; gap: 6px;
    margin-top: 6px;
}
.jet-date-badge svg { stroke: var(--text-muted); flex-shrink: 0; }
.jet-date-badge span {
    font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ─── Age Warning ─── */
.age-warning {
    display: flex; align-items: center; gap: 8px;
    margin-top: 8px; padding: 10px 14px;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 8px;
}
.age-warning svg { stroke: #ef4444; flex-shrink: 0; }
.age-warning span { font-size: 0.78rem; font-weight: 500; color: #ef4444; }

/* ═══════════════════════════════════════
   EXTRAS — Bottom Sheet
   ═══════════════════════════════════════ */
/* ─── Extras Trigger ─── */
.extras-trigger {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px; background: var(--bg-elevated);
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    cursor: pointer; transition: all 0.35s; user-select: none;
}
.extras-trigger:hover { border-color: rgba(255,0,243,0.25); background: rgba(255,0,243,0.02); }
.extras-trigger-left { display: flex; align-items: center; gap: 14px; }
.extras-trigger-sparkle {
    font-size: 1rem; width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,0,243,0.07); border-radius: 10px;
    color: var(--red); transition: transform 0.3s;
}
.extras-trigger:hover .extras-trigger-sparkle { transform: scale(1.1) rotate(15deg); }
.extras-trigger-title { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.extras-trigger-sub { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; transition: color 0.3s; }
.extras-trigger-sub.has-selection { color: var(--red); font-weight: 600; }
.extras-trigger-arrow { display: flex; }
.extras-trigger-arrow svg { stroke: var(--text-muted); transition: transform 0.3s; }
.extras-trigger:hover .extras-trigger-arrow svg { transform: translateX(3px); stroke: var(--red); }

/* ─── Bottom Sheet Backdrop ─── */
.sheet-backdrop {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.4); backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.sheet-backdrop.active { opacity: 1; pointer-events: all; }

/* ─── Bottom Sheet ─── */
.extras-sheet {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
    background: #fff; border-radius: 24px 24px 0 0;
    max-height: 85vh; overflow-y: auto;
    transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -8px 60px rgba(0,0,0,0.12);
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.extras-sheet.active { transform: translateY(0); }

.sheet-handle {
    display: flex; justify-content: center; padding: 12px 0 4px; cursor: pointer;
}
.sheet-handle span {
    width: 36px; height: 4px; background: #d4d4d8; border-radius: 100px;
    transition: background 0.3s;
}
.sheet-handle:hover span { background: #a1a1aa; }

.sheet-header { text-align: center; padding: 8px 28px 20px; }
.sheet-header h3 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
    color: var(--text); margin-bottom: 6px;
}
.sheet-header p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── Service Cards Grid ─── */
.sheet-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; padding: 0 24px 24px;
}

.sheet-card {
    position: relative; padding: 20px 16px 16px;
    background: var(--bg-elevated); border: 1.5px solid var(--border);
    border-radius: 16px; cursor: pointer;
    transition: all 0.35s var(--ease); overflow: hidden;
}
.sheet-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,0,243,0.06) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.35s;
}
.sheet-card:hover { border-color: rgba(255,0,243,0.2); transform: translateY(-2px); }
.sheet-card:hover::before { opacity: 1; }

.sheet-card.active {
    border-color: var(--red); background: #fff;
    box-shadow: 0 4px 20px rgba(255,0,243,0.12);
}
.sheet-card.active::before { opacity: 1; }

.sheet-card-check {
    position: absolute; top: 12px; right: 12px;
    width: 24px; height: 24px; border-radius: 50%;
    border: 2px solid #d4d4d8; display: flex;
    align-items: center; justify-content: center;
    transition: all 0.3s; background: #fff;
}
.sheet-card-check svg { opacity: 0; stroke: #fff; transition: opacity 0.2s; }
.sheet-card.active .sheet-card-check {
    background: var(--red); border-color: var(--red);
    box-shadow: 0 2px 8px rgba(255,0,243,0.3);
    animation: checkPop 0.35s var(--ease);
}
.sheet-card.active .sheet-card-check svg { opacity: 1; }

@keyframes checkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.sheet-card-price {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: var(--text); margin-bottom: 8px; position: relative;
}
.sheet-card-name {
    font-size: 0.82rem; font-weight: 600; color: var(--text);
    margin-bottom: 4px; position: relative; line-height: 1.3;
}
.sheet-card-desc {
    font-size: 0.68rem; color: var(--text-muted); line-height: 1.4;
    position: relative;
}

/* ─── Sheet Footer ─── */
.sheet-footer {
    position: sticky; bottom: 0; background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px; display: flex;
    align-items: center; justify-content: space-between; gap: 16px;
}
.sheet-total { display: flex; flex-direction: column; }
.sheet-total-label { font-size: 0.75rem; color: var(--text-muted); }
.sheet-total-price {
    font-family: var(--font-display); font-size: 1.3rem;
    font-weight: 700; color: var(--red);
}
.sheet-footer .submit-btn { flex-shrink: 0; min-width: 140px; }

@media (max-width: 768px) {
    .nav-right { gap: 8px; }
    .lang-switch { display: none; }
    .trending-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .lightbox-nav { font-size: 1.8rem; padding: 8px 14px; }
}
@media (max-width: 500px) {
    .trending-grid { grid-template-columns: 1fr; }
    .sheet-grid { grid-template-columns: 1fr; gap: 10px; padding: 0 16px 16px; }
    .extras-sheet { max-height: 90vh; }
    .sheet-footer { padding: 12px 16px; }
}

/* ═══════════════════════════════════════
   ADMIN STATS / CHARTS / TABLES
   ═══════════════════════════════════════ */
/* ─── Stats Cards ─── */
.stats-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px; margin-bottom: 40px;
}
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.stat-card-icon { margin-bottom: 14px; }
.stat-card-icon svg { stroke: var(--red); }
.stat-card-value {
    font-family: var(--font-display); font-size: 2rem;
    font-weight: 700; color: var(--text); line-height: 1;
    margin-bottom: 6px;
}
.stat-card-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ─── Charts Grid ─── */
.charts-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px;
}
.chart-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.chart-card h4 {
    font-family: var(--font-display); font-size: 1rem;
    font-weight: 500; margin-bottom: 16px; color: var(--text);
}

/* ─── Occupancy Bar ─── */
.occupancy-bar {
    height: 4px; background: var(--bg-elevated);
    border-radius: 100px; margin: 12px 0 16px; overflow: hidden;
}
.occupancy-fill {
    height: 100%; background: var(--red); border-radius: 100px;
    transition: width 0.5s var(--ease);
}

/* ─── Admin Tables ─── */
.admin-table-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.admin-table-scroll { overflow-x: auto; }
.admin-table {
    width: 100%; border-collapse: collapse; font-size: 0.82rem;
}
.admin-table th {
    padding: 14px 16px; text-align: left;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--text-muted);
    background: var(--bg-elevated); border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.admin-table td {
    padding: 12px 16px; border-bottom: 1px solid var(--border);
    color: var(--text-secondary); white-space: nowrap;
}
.admin-table tbody tr:hover { background: var(--bg-elevated); }
.admin-table tbody tr:last-child td { border-bottom: none; }
@media (max-width: 768px) {
    .stats-cards { grid-template-columns: 1fr 1fr; }
    .charts-grid { grid-template-columns: 1fr; }
}

/* ─── Admin Extras ─── */
.admin-extras-list { display: flex; flex-direction: column; gap: 8px; }
.admin-extra-row {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.admin-extra-icon { font-size: 1.3rem; }
.admin-extra-name { font-size: 0.88rem; font-weight: 500; color: var(--text); flex: 1; }
.admin-extra-price { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); min-width: 50px; }
.admin-extra-price-input {
    width: 80px; padding: 6px 10px; border: 1px solid var(--border);
    border-radius: 6px; font-family: var(--font-body); font-size: 0.82rem;
    font-weight: 600; text-align: right; color: var(--text);
    background: var(--bg-elevated);
}
.admin-extra-price-input:focus { border-color: var(--red); outline: none; }