/* RushXO UI Upgrade — Mobile-First Redesign */

/* ── GLOBAL ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1A1A1A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY ──────────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.25; font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.3; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; margin: 0 0 6px; }
p { font-size: 17px; line-height: 1.75; margin: 0 0 16px; color: #333; }

em.gold, em { color: #B8860B; font-style: italic; }

/* ── TOP STRIP ───────────────────────────────────────────────────── */
.topstrip {
  background: linear-gradient(90deg, #0A0A0A 0%, #1A1A2E 100%);
  color: #D4AF37;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-align: center;
  padding: 10px 20px;
}
.topstrip a { color: #F4D772; text-decoration: none; border-bottom: 1px solid rgba(244,215,114,.4); }

/* ── NAVIGATION ──────────────────────────────────────────────────── */
nav, .nav, header nav {
  background: #050510 !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,.15) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}

nav a, .nav a {
  color: #D4D4D4 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
nav a:hover { color: #D4AF37 !important; background: rgba(212,175,55,.08) !important; }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #050510 0%, #0A0A1A 60%, #0D0D20 100%) !important;
  padding: 80px 0 60px !important;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,134,11,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding: 48px 0 40px !important; }
}

.hero h1 { color: #FFFFFF !important; }
.hero-sub { color: #B0B0C0 !important; font-size: 17px !important; line-height: 1.75 !important; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 16px;
}

/* ── HERO STATS ──────────────────────────────────────────────────── */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 12px;
  padding: 20px;
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.hero-stat-num {
  font-size: 1.8rem !important;
  font-weight: 700;
  color: #D4AF37 !important;
  line-height: 1;
}
.hero-stat-label { font-size: 12px !important; color: #888 !important; margin-top: 4px; }

/* ── HERO CTAS ───────────────────────────────────────────────────── */
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────────── */
.btn, .book-btn, button[class*="btn"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px !important;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-gold, .book-btn {
  background: linear-gradient(135deg, #B8860B 0%, #D4AF37 100%) !important;
  color: #0A0A0A !important;
  box-shadow: 0 4px 20px rgba(212,175,55,.3);
}
.btn-gold:hover, .book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(212,175,55,.4);
}

.btn-ghost {
  background: transparent !important;
  color: #D4AF37 !important;
  border: 1.5px solid rgba(212,175,55,.5) !important;
}
.btn-ghost:hover {
  background: rgba(212,175,55,.08) !important;
  border-color: #D4AF37 !important;
}

/* ── QUOTE CARD ──────────────────────────────────────────────────── */
.quote-card {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  padding: 32px !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.3) !important;
  border: 1px solid rgba(212,175,55,.2) !important;
}

.quote-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0A0A0A !important;
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #E5E1D8 !important;
}

.field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F0EDE8;
}
.field-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.field-label { font-size: 11px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: .08em; }
.field-value { font-size: 15px; font-weight: 600; color: #1A1A1A; margin-top: 2px; }

.vehicle-pick {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin: 16px 0;
}

.veh {
  border: 1.5px solid #E5E1D8;
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: #FAFAF7;
}
.veh.active, .veh:hover {
  border-color: #D4AF37;
  background: #FFFBF0;
}
.veh-icon { font-size: 22px; }
.veh-name { font-size: 11px; font-weight: 600; color: #555; margin-top: 4px; }
.veh-price { font-size: 12px; font-weight: 700; color: #B8860B; margin-top: 2px; }

/* ── TRUST LINE ──────────────────────────────────────────────────── */
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  font-size: 13px;
  color: #888;
}
.trust-line b { color: #D4AF37; }
.dot { color: #444; }

/* ── FEATURE CARDS ───────────────────────────────────────────────── */
.feature-card, a.feature-card {
  display: flex !important;
  flex-direction: column !important;
  background: #FFFFFF !important;
  border: 1.5px solid #E8E4DC !important;
  border-radius: 14px !important;
  padding: 24px !important;
  text-decoration: none !important;
  color: #1A1A1A !important;
  transition: all .25s !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.06) !important;
}

.feature-card:hover {
  border-color: #D4AF37 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 32px rgba(184,134,11,.15) !important;
}

.feature-card .icon {
  font-size: 28px !important;
  margin-bottom: 12px !important;
  line-height: 1 !important;
}

.feature-card .roman {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: #B8860B !important;
  margin-bottom: 6px !important;
}

.feature-card h4 {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0A0A0A !important;
  margin: 0 0 8px !important;
}

.feature-card p {
  font-size: 14px !important;
  color: #555 !important;
  line-height: 1.6 !important;
  margin: 0 0 12px !important;
  flex: 1 !important;
}

.feature-card .arrow {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #B8860B !important;
  letter-spacing: .05em !important;
}

/* ── AIRPORT GRID ────────────────────────────────────────────────── */
.airport-grid, [class*="airport-card"] {
  background: #FFFFFF !important;
  border: 1.5px solid #E8E4DC !important;
  border-radius: 12px !important;
  padding: 20px !important;
  transition: all .2s !important;
}
.airport-grid:hover, [class*="airport-card"]:hover {
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 20px rgba(184,134,11,.12) !important;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq details {
  border: 1.5px solid #E8E4DC;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq details[open] { border-color: #D4AF37; }
.faq summary {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 18px 20px !important;
  cursor: pointer !important;
  color: #1A1A1A !important;
  list-style: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.faq summary::after { content: '+'; font-size: 20px; color: #B8860B; font-weight: 300; }
.faq details[open] summary::after { content: '−'; }
.faq .a { padding: 0 20px 18px; font-size: 16px !important; color: #444; line-height: 1.7; }

/* ── ROUTES TABLE ────────────────────────────────────────────────── */
.routes-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px !important;
}
.routes-table thead tr {
  background: #0A0A1A;
  color: #D4AF37;
}
.routes-table th {
  padding: 14px 16px;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: left;
}
.routes-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #F0EDE8;
  font-size: 15px !important;
  vertical-align: middle;
}
.routes-table tr:hover td { background: #FAFAF7; }
.routes-table .fare {
  font-weight: 700;
  color: #B8860B;
  font-size: 16px !important;
}

/* ── CTA BANNER ──────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #050510 0%, #0D0D20 100%) !important;
  padding: 80px 0 !important;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(184,134,11,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #FFFFFF !important; margin-bottom: 16px; }
.cta-banner p { color: #B0B0C0 !important; font-size: 17px !important; margin-bottom: 32px; }
.cta-banner .row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ────────────────────────────────────────────────────── */
.fixed-sec { padding: 60px 0; }
.vehicles { padding: 60px 0; }
.vehicles .head { text-align: center; margin-bottom: 32px; }
.vehicles .head h2 { margin-bottom: 8px; }
.vehicles .head p { color: #666; font-size: 16px !important; margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
footer {
  background: #050510 !important;
  color: #888 !important;
  padding: 48px 0 24px !important;
  border-top: 1px solid rgba(212,175,55,.1) !important;
}
footer a { color: #D4D4D4 !important; text-decoration: none; font-size: 14px !important; }
footer a:hover { color: #D4AF37 !important; }
.foot-bot {
  border-top: 1px solid rgba(255,255,255,.06) !important;
  padding-top: 20px !important;
  margin-top: 32px !important;
  font-size: 12px !important;
  color: #555 !important;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ── MOBILE OVERRIDES ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .fixed-sec, .vehicles { padding: 40px 0; }
  .cta-banner { padding: 52px 0 !important; }
  .btn, .book-btn { padding: 14px 20px; font-size: 15px !important; width: 100%; text-align: center; }
  .hero-ctas { flex-direction: column; }
  .routes-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .vehicle-pick { grid-template-columns: repeat(3,1fr); }
  .quote-card { padding: 24px !important; border-radius: 12px !important; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 12px; padding: 16px; }
  .hero-stat-num { font-size: 1.5rem !important; }
}

/* ── DISCLAIM ────────────────────────────────────────────────────── */
.disclaim {
  font-size: 13px !important;
  color: #999 !important;
  margin-top: 12px !important;
  text-align: center;
}

/* ── RELATED / CHIPS ─────────────────────────────────────────────── */
.related { background: #FAFAF7; border-radius: 10px; padding: 20px 24px; }
.related .l { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #B8860B; margin-bottom: 10px; }
.related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.related li a { font-size: 14px; color: #333; text-decoration: none; }
.related li a:hover { color: #B8860B; }

/* ── SECTION EYEBROW ─────────────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #B8860B;
  margin-bottom: 10px;
}

/* ── PROSE ───────────────────────────────────────────────────────── */
.fixed-prose { max-width: 760px; margin: 0 auto; }
.fixed-prose h2 { margin-bottom: 20px; }
.fixed-prose h3 { color: #B8860B; margin: 24px 0 8px; }
.fixed-prose p { font-size: 16px !important; }
.fixed-prose a { color: #B8860B; }
.fixed-prose ul, .fixed-prose ol { padding-left: 20px; line-height: 2; }
