:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --panel: #1b1b1b;
  --line: #2a2a2a;
  --gold: #d4af37;
  --gold-soft: #e8cf7a;
  --white: #f5f5f3;
  --muted: #a3a19b;
  --radius: 10px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .brand {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
  margin: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.section-inner { max-width: var(--maxw); margin: 0 auto; padding: 80px 24px; }
.muted { color: var(--muted); }
.muted.small { font-size: 0.875rem; }
.text-gold { color: var(--gold); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { font-size: 1rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { font-size: 0.9rem; color: var(--white); opacity: 0.85; }
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }
@media (max-width: 860px) { .nav-links { display: none; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: 6px; font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent; cursor: pointer; transition: transform 0.15s, opacity 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-gold { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #14110a; }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }

/* Hero */
.hero { padding: 100px 24px 60px; border-bottom: 1px solid var(--line); }
.hero-inner { max-width: var(--maxw); margin: 0 auto; }
.eyebrow { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.15; }
.lede { max-width: 560px; font-size: 1.1rem; color: var(--muted); margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.stat-value { font-family: 'Cinzel', serif; color: var(--gold); font-size: 1.6rem; }
.stat-label { color: var(--muted); font-size: 0.82rem; }

/* Section headings */
.trust h2, .services h2, .booking h2, .drivers h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 40px; text-align: center;
}

/* Trust */
.trust-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.trust-card { background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.trust-icon { font-size: 1.3rem; color: var(--gold); margin-bottom: 12px; }
.trust-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.trust-card p { color: var(--muted); font-size: 0.92rem; }

/* Services */
.services { background: var(--charcoal); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.service-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.service-card h3 { font-size: 1rem; color: var(--gold); margin-bottom: 6px; }
.service-card p { color: var(--muted); font-size: 0.88rem; }

/* Booking */
.booking-form-wrap { max-width: 640px; margin: 0 auto; }
.booking h2, .booking .muted { text-align: center; }
#booking-form { margin-top: 32px; }
.field { position: relative; margin-bottom: 18px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 6px; }
input, select {
  width: 100%; padding: 12px 14px; background: var(--charcoal);
  border: 1px solid var(--line); border-radius: 6px; color: var(--white); font-size: 0.95rem;
}
input:focus, select:focus { border-color: var(--gold); }
.suggestions {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 20;
  list-style: none; margin: 4px 0 0; padding: 0; background: var(--panel);
  border: 1px solid var(--line); border-radius: 6px; max-height: 220px; overflow-y: auto;
  display: none;
}
.suggestions.open { display: block; }
.suggestions li { padding: 10px 14px; font-size: 0.88rem; cursor: pointer; border-bottom: 1px solid var(--line); }
.suggestions li:last-child { border-bottom: none; }
.suggestions li:hover { background: var(--line); color: var(--gold); }
.route-status { font-size: 0.85rem; color: var(--gold); min-height: 20px; margin-bottom: 8px; }
.map { height: 0; overflow: hidden; border-radius: var(--radius); margin-bottom: 16px; transition: height 0.25s; }
.map.visible { height: 240px; border: 1px solid var(--line); }
.fare-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-top: 8px; border-top: 1px solid var(--line);
}
.fare-amount { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold); margin: 4px 0; }
.form-message { min-height: 20px; font-size: 0.88rem; margin-top: 12px; }
.form-message.success { color: #7fd88f; }
.form-message.error { color: #e07a7a; }

/* Drivers */
.commission-box { background: var(--charcoal); border: 1px solid var(--gold); border-radius: var(--radius); padding: 28px; margin: 32px 0; }
.commission-box h3 { font-size: 1.05rem; margin-bottom: 20px; }
.commission-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.commission-item { display: flex; flex-direction: column; }
.commission-label { font-size: 0.8rem; color: var(--muted); }
.commission-value { font-family: 'Cinzel', serif; font-size: 1.6rem; margin: 4px 0; }
.commission-keep { color: #7fd88f; }
.commission-fee { color: var(--gold); }
.commission-pay { color: var(--gold); }
.commission-desc { font-size: 0.8rem; color: var(--muted); }

.tiers { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin-bottom: 12px; }
.tier-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.tier-featured { border-color: var(--gold); }
.tier-price { font-family: 'Cinzel', serif; font-size: 1.4rem; color: var(--gold); margin: 8px 0; }
.tier-price span { font-size: 0.8rem; color: var(--muted); font-family: 'Inter', sans-serif; }
.tier-note { text-align: center; margin-bottom: 32px; }

.driver-form { max-width: 640px; margin: 0 auto; }
.checkbox-label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.checkbox-label input { width: auto; margin-top: 3px; }
.checkbox-label span { font-size: 0.88rem; color: var(--muted); }

/* Footer */
.footer { border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

.floating-whatsapp {
  position: fixed; bottom: 20px; right: 20px; z-index: 60;
  background: #25d366; color: #06210f; padding: 12px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.85rem; box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

@media (max-width: 640px) {
  .section-inner { padding: 56px 18px; }
  .field-row { grid-template-columns: 1fr; }
  .fare-row { flex-direction: column; align-items: stretch; }
  .fare-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}
