/* ═══════════════════════════════════════════════════════
   FLYING TAXI SERVICE — Shared Stylesheet (Reskin)
   Design: city.html reference — Orbitron + Inter
   Palette: #0a0e27 bg · #00d4ff cyan · #ff00ff magenta
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;600;700&display=swap');

:root {
  --bg:          #0a0e27;
  --bg2:         #1a1f3a;
  --bg3:         #12172e;
  --primary:     #00d4ff;
  --primary-dark:#0099cc;
  --secondary:   #ff00ff;
  --accent:      #00ffaa;
  --white:       #ffffff;
  --light:       #ffffff;
  --muted:       rgba(255,255,255,0.6);
  --muted-border:rgba(0,212,255,0.2);
  --mono:        'Orbitron', sans-serif;
  --sans:        'Inter', sans-serif;
  --red:         #ff5f7e;
  --amber:       #ffd166;
  --blue:        #00d4ff;
  --grad-1:      linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #006699 100%);
  --grad-2:      linear-gradient(135deg, #ff00ff 0%, #cc00cc 50%, #990099 100%);
  --grad-3:      linear-gradient(135deg, #00d4ff 0%, #ff00ff 100%);

  /* Legacy compat — map old names so existing HTML keeps working */
  --green:        #00d4ff;
  --green-dim:    #0099cc;
  --green-faint:  rgba(0,212,255,0.08);
  --green-border: rgba(0,212,255,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated radial gradient background (matches city.html) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,212,255,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,0,255,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from { opacity: 0.6; }
  to   { opacity: 1;   }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--mono);
  letter-spacing: -0.02em;
}

/* Gradient headings utility */
.gradient-text {
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,39,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--muted-border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--mono); font-size: 1rem; font-weight: 900;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo::before { content: '✈'; font-size: 0.85rem; -webkit-text-fill-color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  color: var(--white); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

.nav-cta {
  padding: 0.6rem 1.6rem !important;
  background: var(--grad-1) !important;
  border: none !important;
  border-radius: 50px !important;
  color: var(--white) !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 30px rgba(0,212,255,0.4) !important;
  opacity: 1 !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--muted-border);
  color: var(--primary);
  padding: 6px 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

/* ── TICKER ── */
.ticker-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--muted-border);
  overflow: hidden; height: 34px;
  display: flex; align-items: center;
  position: relative; z-index: 1;
}
.ticker-label {
  font-family: var(--mono); font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--bg); background: var(--grad-1);
  padding: 0 14px; height: 100%;
  display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-track {
  display: flex; animation: ticker 40s linear infinite; white-space: nowrap;
}
.ticker-track span {
  font-family: var(--sans); font-size: 0.72rem;
  color: rgba(255,255,255,0.6); padding: 0 24px;
}
.ticker-track span b { color: var(--primary); font-weight: 600; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── PAGE HEADER ── */
.page-header {
  padding: 80px 5vw 60px;
  border-bottom: 1px solid var(--muted-border);
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(0,212,255,0.04) 0%, transparent 100%);
  text-align: center;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; }

.page-label {
  font-family: var(--mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--primary); margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 10px;
}
.page-label::before,
.page-label::after { content:''; width:32px; height:1px; background:var(--primary); display:block; opacity:0.5; }

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1;
  margin-bottom: 1rem;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header h1 em {
  font-style: normal;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto; }

/* ── SECTION HELPERS ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

.section-label {
  font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--primary); margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after { content:''; flex:1; height:1px; background: rgba(0,212,255,0.2); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}

.section-sub { font-size: 0.95rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: 540px; }

/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  color: var(--white); background: var(--grad-1);
  padding: 0.75rem 2rem; border-radius: 50px; border: none;
  text-decoration: none; cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,212,255,0.4); }

.btn-secondary {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 700;
  color: var(--primary); background: transparent;
  padding: 0.7rem 2rem; border-radius: 50px;
  border: 2px solid var(--primary);
  text-decoration: none; cursor: pointer;
  transition: background 0.3s, color 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: var(--primary); color: var(--bg); }

/* ── CARDS ── */
.card {
  background: rgba(26,31,58,0.6);
  border: 1px solid var(--muted-border);
  border-radius: 20px; padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,212,255,0.2);
}

/* ── GRID BORDER PATTERN (replaces solid-line grid) ── */
.grid-border {
  display: grid; gap: 16px;
  border-radius: 20px; overflow: hidden;
}
.grid-border > * {
  background: rgba(26,31,58,0.6);
  border: 1px solid var(--muted-border);
  border-radius: 20px;
  transition: border-color 0.3s, transform 0.3s;
}
.grid-border > *:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

/* ── STATUS PILLS ── */
.pill {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 50px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.pill-live   { background:rgba(0,255,170,0.15); color:#00ffaa; border:1px solid rgba(0,255,170,0.3); }
.pill-soon   { background:rgba(0,212,255,0.15); color:var(--primary); border:1px solid rgba(0,212,255,0.3); }
.pill-future { background:rgba(255,0,255,0.1);  color:#ff00ff; border:1px solid rgba(255,0,255,0.25); }
.pill-red    { background:rgba(255,95,126,0.1); color:var(--red); border:1px solid rgba(255,95,126,0.25); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg2);
  border-top: 1px solid var(--muted-border);
  border-bottom: 1px solid var(--muted-border);
  padding: 80px 5vw; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%); width:700px; height:350px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.1) 0%, transparent 65%);
  pointer-events:none;
}
.cta-band h2 {
  font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight:900;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom:0.8rem; position:relative;
}
.cta-band p { font-size:1rem; color:rgba(255,255,255,0.7); margin-bottom:2rem; position:relative; }
.cta-note { margin-top:1rem; font-family:var(--sans); font-size:0.72rem; color:rgba(255,255,255,0.4); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--muted-border);
  border-bottom: 1px solid var(--muted-border);
  padding: 40px 5vw;
}
.stats-bar-inner { max-width:1200px; margin:0 auto; }
.stat-block { padding:24px; text-align:center; }
.stat-num {
  font-family: var(--mono); font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: var(--grad-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label { font-size:0.78rem; color:rgba(255,255,255,0.6); text-transform:uppercase; letter-spacing:0.1em; }

/* ── FORM ELEMENTS ── */
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-label { font-family:var(--sans); font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.6); }
.form-input, .form-select, .form-textarea {
  background: rgba(26,31,58,0.8);
  border: 1px solid var(--muted-border);
  color: var(--white); padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--sans); font-size: 0.92rem;
  transition: border-color 0.3s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,0.3); }
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── TABLE ── */
.data-table { width:100%; border-collapse:collapse; }
.data-table th {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5); padding: 12px 16px;
  border-bottom: 1px solid var(--muted-border); text-align: left;
  background: rgba(26,31,58,0.8);
}
.data-table td {
  padding: 13px 16px; border-bottom: 1px solid rgba(0,212,255,0.06);
  font-size: 0.88rem; color: var(--white);
  transition: background 0.2s;
}
.data-table tr:hover td { background: rgba(0,212,255,0.04); }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid var(--muted-border); }
.faq-q {
  font-family: var(--sans); font-size: 0.95rem; font-weight: 600;
  color: var(--white); padding: 18px 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--primary); }
.faq-q-arrow { font-size: 0.8rem; color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-q.open .faq-q-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a.open { max-height: 400px; padding-bottom: 18px; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--muted-border);
  padding: 56px 5vw 28px; position: relative; z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand-name {
  font-family: var(--mono); font-size: 1rem; font-weight: 900;
  background: var(--grad-3);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.footer-brand-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--mono); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; line-height: 2; }
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.footer-legal a:hover { color: var(--primary); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-up { animation: fadeUp 0.6s ease both; }
.anim-up:nth-child(1){animation-delay:0.05s}
.anim-up:nth-child(2){animation-delay:0.12s}
.anim-up:nth-child(3){animation-delay:0.19s}
.anim-up:nth-child(4){animation-delay:0.26s}
.anim-up:nth-child(5){animation-delay:0.33s}
.anim-up:nth-child(6){animation-delay:0.4s}

/* ── RESPONSIVE ── */
@media(max-width:1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(10,14,39,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--muted-border);
    padding: 24px 5vw; gap: 1.2rem; z-index: 200;
  }
  .nav-links.open a { font-size: 1.1rem; }
  .nav-mobile-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr; }
  .page-header { padding: 56px 5vw 40px; }
  .btn-primary, .btn-secondary { padding: 0.65rem 1.5rem; font-size: 0.88rem; }
}
