/* =========================================================================
   MUBA TAXI SERVICES — visual system
   Identity: classic cab. Jet black + taxi yellow, checkerboard, plate type,
   chunky offset-shadow buttons. Deliberately distinct from the safari /
   scooter siblings (no earth tones, no beach pastels, no soft ghost buttons).
   ========================================================================= */

/* ---- self-hosted webfonts (no external origin; CSP-safe). latin subset. ---- */
@font-face {
  font-family: "Anton"; font-style: normal; font-weight: 400; font-display: optional;
  src: url("/assets/fonts/anton-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow"; font-style: normal; font-weight: 400; font-display: optional;
  src: url("/assets/fonts/barlow-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow"; font-style: normal; font-weight: 500; font-display: optional;
  src: url("/assets/fonts/barlow-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow"; font-style: normal; font-weight: 600; font-display: optional;
  src: url("/assets/fonts/barlow-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow"; font-style: normal; font-weight: 700; font-display: optional;
  src: url("/assets/fonts/barlow-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow"; font-style: normal; font-weight: 800; font-display: optional;
  src: url("/assets/fonts/barlow-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* palette */
  --ink:        #0c0c0e;   /* page */
  --ink-2:      #141417;   /* raised section */
  --ink-3:      #1b1b20;   /* cards */
  --ink-4:      #26262d;   /* hover / lines */
  --taxi:       #ffce0a;   /* primary cab yellow */
  --taxi-2:     #ffd84a;   /* lighter (hover) */
  --taxi-deep:  #f0a500;   /* amber accent */
  --cream:      #f4f1e6;   /* primary text on dark */
  --muted:      #9b9ba6;   /* secondary text */
  --wa:         #25d366;   /* whatsapp green (recognition only) */
  --line:       rgba(255,255,255,.10);
  --line-2:     rgba(255,255,255,.06);

  /* type */
  --display: 'Anton', 'Arial Narrow', 'Helvetica Neue Condensed', 'Oswald', system-ui, sans-serif;
  --sans:    'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* metrics */
  --wrap: 1200px;
  --radius: 6px;
  --checker: 15px;             /* checker square size */
  --pad: clamp(64px, 9vw, 128px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--cream);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--taxi); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--taxi); color: #111; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .95; text-transform: uppercase; letter-spacing: .005em; }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.05rem, 4.6vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); }
p  { color: #d9d6cb; }
strong { color: var(--cream); font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--taxi);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--taxi); display: inline-block; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #cecabd; max-width: 56ch; }
.muted { color: var(--muted); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 36px); }
.section { padding-block: var(--pad); position: relative; }
.section--alt { background: var(--ink-2); }
.section-head { max-width: 60ch; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head .lead { margin-top: 18px; }

/* ---------- signature motifs ---------- */
.checker {
  height: var(--checker); width: 100%;
  background:
    repeating-conic-gradient(#000 0 25%, var(--taxi) 0 50%) 0 0 / calc(var(--checker)*2) calc(var(--checker)*2);
}
.checker--tall { height: calc(var(--checker)*2); }
.hazard {
  background: repeating-linear-gradient(-45deg, var(--taxi) 0 16px, #111 16px 32px);
}

/* roof-light "TAXI" sign glyph used in the wordmark */
.roof {
  display: inline-grid; place-items: center;
  background: var(--taxi); color: #111;
  font-family: var(--sans); font-weight: 800; font-size: .62rem; letter-spacing: .12em;
  padding: 3px 7px 2px; border-radius: 3px 3px 2px 2px; line-height: 1;
  box-shadow: 0 0 0 2px #111, 0 0 14px rgba(255,206,10,.5);
}

/* license-plate badge */
.plate {
  display: inline-flex; align-items: center; gap: .5ch;
  font-family: var(--display); letter-spacing: .12em;
  background: #f6f3e7; color: #16160f;
  border: 2px solid #111; border-radius: 5px;
  padding: .28em .55em; line-height: 1;
  box-shadow: inset 0 0 0 2px #c9c5b2;
}
.plate small { font-family: var(--sans); font-weight: 700; letter-spacing: .04em; font-size: .62em; color: #6b6855; }

/* tag chip */
.tag {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #4a3a00; background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.22); border-radius: 999px;
  padding: .42em .8em;
}
.tag--park { color: #1a5c1a; background: rgba(26,92,26,.10); border-color: rgba(26,92,26,.38); }

/* ---------- buttons ---------- */
.btn {
  --shadow: #000;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 700; font-size: .98rem; letter-spacing: .05em; text-transform: uppercase;
  padding: 15px 26px; border: 2px solid #111; border-radius: var(--radius);
  background: var(--ink-3); color: var(--cream);
  box-shadow: 4px 4px 0 0 var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--shadow); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 0 var(--shadow); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }

.btn--primary { background: var(--taxi); color: #141200; border-color: #111; }
.btn--primary:hover { background: var(--taxi-2); }

.btn--ghost { background: transparent; color: var(--taxi); border-color: var(--taxi); --shadow: rgba(255,206,10,.30); }
.btn--ghost:hover { background: var(--taxi); color: #141200; border-color: #111; --shadow: #000; }

.btn--wa { background: var(--wa); color: #06351a; border-color: #0c0c0e; }
.btn--wa:hover { background: #34e077; }

/* dark buttons for use on yellow backgrounds */
.on-yellow .btn--primary { background: #111; color: var(--taxi); --shadow: rgba(0,0,0,.35); }
.on-yellow .btn--primary:hover { background: #000; }
.on-yellow .btn--ghost { color: #141200; border-color: #141200; --shadow: rgba(0,0,0,.25); }
.on-yellow .btn--ghost:hover { background: #111; color: var(--taxi); border-color:#111; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===================================================================== */
/* NAV                                                                    */
/* ===================================================================== */
.nav-wrap { position: sticky; top: 0; z-index: 60; }
.nav {
  background: rgba(12,12,14,.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .6em; }
.brand .word { font-family: var(--display); font-size: 1.5rem; letter-spacing: .03em; line-height: 1; white-space: nowrap; }
.brand .word b { color: var(--taxi); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .95rem; color: #d7d4ca; letter-spacing: .01em; transition: color .15s; }
.nav-links a:hover { color: var(--taxi); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; letter-spacing: .02em; }
.nav-phone svg { width: 1.1em; height: 1.1em; color: var(--taxi); }
.nav-toggle { display: none; background: var(--ink-3); border: 2px solid var(--line); border-radius: var(--radius); padding: 9px 11px; }
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ===================================================================== */
/* HERO                                                                   */
/* ===================================================================== */
.hero { position: relative; background: radial-gradient(120% 90% at 85% -10%, #1c1c22 0%, var(--ink) 55%); overflow: hidden; }
.hero::before { /* faint road hazard accent top-right */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 100% 0, rgba(255,206,10,.10), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px);
  align-items: center; padding-block: clamp(48px, 7vw, 96px);
}
.hero h1 { margin: 16px 0 0; }
.hero h1 .hl { color: var(--taxi); display: inline-block; }
.hero .lead { margin-top: 22px; }
.hero .btn-row { margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; color: var(--muted); font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.stars { color: var(--taxi); letter-spacing: .08em; }

/* framed hero photo with roof-light + plate */
.hero-card { position: relative; }
.frame {
  position: relative; border: 3px solid #111; border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.85), 0 0 0 1px var(--line);
  background: var(--ink-3);
}
.frame img { width: 100%; aspect-ratio: 4/3.1; object-fit: cover; }
.frame .checker { position: absolute; left: 0; right: 0; bottom: 0; height: 12px; }
.hero-card .roof { position: absolute; top: -14px; left: 22px; font-size: .8rem; padding: 6px 12px 5px; z-index: 2; }
.hero-card .float-plate { position: absolute; right: -10px; bottom: 26px; font-size: 1.5rem; transform: rotate(-3deg); z-index: 2; }
.hero-badge {
  position: absolute; left: -16px; bottom: -16px; z-index: 3;
  width: 104px; height: 104px; border-radius: 50%;
  border: 3px solid var(--taxi); background: #000; padding: 5px;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,.8);
}
.hero-badge img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

/* ===================================================================== */
/* METER STATS                                                            */
/* ===================================================================== */
.meter-band { border-block: 1px solid var(--line); background: linear-gradient(var(--ink-2), var(--ink)); }
.meters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.meter { background: var(--ink); padding: 26px clamp(16px,2vw,28px); text-align: center; }
.meter .num { font-family: var(--display); font-size: clamp(2.1rem, 4vw, 3rem); color: var(--taxi); line-height: 1; font-variant-numeric: tabular-nums; }
.meter .lbl { margin-top: 8px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ===================================================================== */
/* SERVICES                                                               */
/* ===================================================================== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 24px 26px; position: relative; overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.card::after { content:""; position:absolute; left:0; top:0; height:4px; width:100%; background: var(--taxi); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(255,206,10,.4); background: #202026; }
.card:hover::after { transform: scaleX(1); }
.card .ico { display: grid; place-items: center; width: 48px; height: 48px; color: var(--taxi); margin-bottom: 18px; }
.card .ico svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; color: #c4c1b6; }
.card .note { margin-top: 14px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; color: var(--taxi); text-transform: uppercase; }

/* ===================================================================== */
/* THE CAR                                                                */
/* ===================================================================== */
.car-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 52px); align-items: center; }
.car-media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.car-media .big { grid-column: 1 / -1; }
.car-media figure { position: relative; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); }
.car-media img { width: 100%; height: 100%; object-fit: cover; }
.car-media .big img { aspect-ratio: 16/9; }
.car-media .sm img { aspect-ratio: 3/4; }
.spec-list { display: grid; gap: 14px; margin-top: 26px; }
.spec { display: flex; gap: 14px; align-items: flex-start; }
.spec .dot { flex: none; width: 26px; height: 26px; border-radius: 6px; background: rgba(255,206,10,.14); color: var(--taxi); display: grid; place-items: center; margin-top: 2px; }
.spec .dot svg { width: 15px; height: 15px; }
.spec b { display: block; }
.spec span { color: var(--muted); font-size: .94rem; }
.car-plate-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ===================================================================== */
/* FARES — the bright yellow rate-sheet block                             */
/* ===================================================================== */
.fares { background: var(--taxi); color: #1a1602; }
.fares::before { content:""; display:block; height: var(--checker);
  background: repeating-conic-gradient(#000 0 25%, #ffe680 0 50%) 0 0 / calc(var(--checker)*2) calc(var(--checker)*2); }
.fares .eyebrow { color: #4a3700; }
.fares .eyebrow::before { background: #1a1602; }
.fares h2 { color: #161200; }
.fares .lead { color: #4a3c05; }
.fare-tools { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin: 26px 0 22px; }
.fare-search { position: relative; flex: 1 1 320px; max-width: 440px; }
.fare-search input {
  width: 100%; font: 600 1rem var(--sans); color: #16160f;
  background: #fff6d4; border: 2px solid #161200; border-radius: var(--radius);
  padding: 13px 16px 13px 44px; box-shadow: 3px 3px 0 0 rgba(0,0,0,.25);
}
.fare-search input::placeholder { color: #6f5a14; }
.fare-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #6b5800; }
.fare-count { font-weight: 700; font-size: .9rem; color: #5a4700; letter-spacing: .02em; }

.fare-table-wrap { border: 2px solid #161200; border-radius: 10px; overflow: hidden; box-shadow: 6px 6px 0 0 rgba(0,0,0,.22); background: #fffdf3; }
table.fares-table { width: 100%; border-collapse: collapse; }
.fares-table thead th { background: #161200; color: var(--taxi); text-align: left; font-family: var(--sans); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; padding: 14px 18px; }
.fares-table thead th:last-child { text-align: right; }
.fares-table tbody tr { border-top: 1px solid rgba(0,0,0,.10); transition: background .12s; }
.fares-table tbody tr:nth-child(even) { background: rgba(0,0,0,.035); }
.fares-table tbody tr:hover { background: #fff0b8; }
.fares-table td { padding: 13px 18px; vertical-align: middle; }
.fares-table .dest { font-weight: 600; color: #1a1602; }
.fares-table .dest .sub { display: block; font-size: .76rem; font-weight: 600; color: #5e4d00; letter-spacing: .02em; text-transform: none; }
.fares-table .tagcell { white-space: nowrap; }
.fares-table .price { text-align: right; white-space: nowrap; font-family: var(--display); font-size: 1.18rem; color: #161200; letter-spacing: .02em; }
.fares-table .price small { font-family: var(--sans); font-weight: 700; font-size: .62em; color: #6b5800; margin-right: .3em; }
.fares-table .bookcell { text-align: right; width: 1%; }
.fare-book { display: inline-flex; align-items: center; gap: .45em; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
  background: #161200; color: var(--taxi); border-radius: 5px; padding: 8px 12px; transition: background .15s, transform .1s; }
.fare-book:hover { background: #000; transform: translateY(-1px); }
.fare-book svg { width: 14px; height: 14px; }
.fare-empty { padding: 28px 18px; text-align: center; color: #6b5800; font-weight: 600; display: none; }
.fare-foot { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-top: 22px; }
.fare-note { display: flex; gap: 12px; align-items: flex-start; max-width: 62ch; }
.fare-note .dot { flex: none; width: 28px; height: 28px; border-radius: 7px; background: #161200; color: var(--taxi); display: grid; place-items: center; }
.fare-note .dot svg { width: 16px; height: 16px; }
.fare-note p { color: #2e2600; font-size: .96rem; }
.fare-note b { color: #161200; }

/* ===================================================================== */
/* DRIVER                                                                 */
/* ===================================================================== */
.driver-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.driver-photo { position: relative; }
.driver-photo .frame img { aspect-ratio: 4/5; }
.driver-photo .roof { position: absolute; top: -13px; left: 20px; z-index: 2; }
.driver-sign { position: absolute; right: -14px; bottom: 26px; z-index: 2; background: var(--taxi); color: #141200; border: 2px solid #111; border-radius: 8px; padding: 12px 16px; box-shadow: 5px 5px 0 0 #000; transform: rotate(2deg); }
.driver-sign b { font-family: var(--display); font-size: 1.5rem; display: block; line-height: .9; }
.driver-sign span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.trust { display: flex; gap: 12px; align-items: flex-start; background: var(--ink-3); border: 1px solid var(--line); border-radius: 9px; padding: 16px; }
.trust .dot { flex: none; width: 30px; height: 30px; border-radius: 7px; background: rgba(255,206,10,.14); color: var(--taxi); display: grid; place-items: center; }
.trust .dot svg { width: 17px; height: 17px; }
.trust b { display: block; font-size: .98rem; }
.trust span { color: var(--muted); font-size: .86rem; }

/* ===================================================================== */
/* GALLERY                                                                */
/* ===================================================================== */
.gallery { column-count: 3; column-gap: 14px; }
.shot { position: relative; display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: var(--ink-3); margin: 0 0 14px; break-inside: avoid; }
.shot img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.05); }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px; font-size: .82rem; font-weight: 600;
  color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.82)); letter-spacing: .02em; }
.shot figcaption::before { content: "📍 "; }

/* ===================================================================== */
/* BOOKING                                                                */
/* ===================================================================== */
.booking { background: var(--ink-2); }
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 26px; }
.ccard { display: flex; gap: 16px; align-items: center; background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; transition: border-color .15s, transform .15s; }
.ccard:hover { border-color: rgba(255,206,10,.4); transform: translateX(3px); }
.ccard .ico { flex: none; width: 44px; height: 44px; border-radius: 9px; background: rgba(255,206,10,.13); color: var(--taxi); display: grid; place-items: center; }
.ccard .ico svg { width: 22px; height: 22px; }
.ccard .ico--wa { background: rgba(37,211,102,.14); color: var(--wa); }
.ccard small { display: block; color: var(--muted); font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; }
.ccard b { font-size: 1.18rem; letter-spacing: .01em; }

/* form */
.book-form { background: var(--ink-3); border: 1px solid var(--line); border-radius: 14px; padding: clamp(22px, 3vw, 34px); }
.book-form .checker { border-radius: 6px; margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: 500 1rem var(--sans); color: var(--cream);
  background: var(--ink); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 13px 14px; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: #6f6f7a; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--taxi); box-shadow: 0 0 0 3px rgba(255,206,10,.18); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffce0a' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; padding-right: 42px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.book-form .btn { width: 100%; margin-top: 8px; }
.form-hint { margin-top: 14px; font-size: .84rem; color: var(--muted); text-align: center; }

/* ===================================================================== */
/* FOOTER                                                                 */
/* ===================================================================== */
.footer { background: #060607; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-block: clamp(46px, 6vw, 72px); }
.footer .badge { width: 92px; height: 92px; border-radius: 50%; border: 3px solid var(--taxi); padding: 4px; background: #000; margin-bottom: 18px; }
.footer .badge img { border-radius: 50%; }
.footer p { color: var(--muted); font-size: .95rem; max-width: 38ch; }
.footer h3 { font-family: var(--sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; color: var(--cream); margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer ul a, .footer ul li { color: var(--muted); font-size: .96rem; }
.footer ul a:hover { color: var(--taxi); }
.footer-bottom { border-top: 1px solid var(--line); }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-block: 20px; color: var(--muted); font-size: .85rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--taxi); }

/* ---------- floating whatsapp + back to top ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 80; display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.6), 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 2.6s infinite; }
.fab svg { width: 30px; height: 30px; }
.fab span { position: absolute; right: 70px; background: #111; color: #fff; border: 1px solid var(--line); padding: 8px 12px; border-radius: 8px; font-size: .82rem; font-weight: 600; white-space: nowrap; opacity: 0; transform: translateX(8px); transition: .2s; pointer-events: none; }
.fab:hover span { opacity: 1; transform: translateX(0); }
@keyframes pulse { 0% { box-shadow: 0 12px 28px -8px rgba(0,0,0,.6), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 12px 28px -8px rgba(0,0,0,.6), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 12px 28px -8px rgba(0,0,0,.6), 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .fab { animation: none; } .shot:hover img { transform: none; } }

/* ===================================================================== */
/* RESPONSIVE                                                             */
/* ===================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; margin-inline: auto; order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .car-grid, .driver-grid, .booking-grid { grid-template-columns: 1fr; }
  .driver-photo { max-width: 460px; }
  .gallery { column-count: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 70px; flex-direction: column; gap: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav[data-open="true"] .nav-links a { padding: 14px clamp(18px,4vw,36px); width: 100%; border-top: 1px solid var(--line-2); }
  .meters { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  :root { --pad: clamp(52px, 12vw, 80px); }
  .nav-inner { gap: 10px; }
  .brand .word { font-size: 1.25rem; }
  .nav-actions { gap: 9px; }
  .nav-actions .btn { padding: 11px 15px; font-size: .82rem; box-shadow: 3px 3px 0 0 #000; }
  .nav-toggle { padding: 8px 9px; }
  .cards { grid-template-columns: 1fr; }
  .field-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery { column-count: 2; }
  .fares-table .bookcell { display: none; }       /* keep table tidy on phones */
  .hero .btn-row .btn { flex: 1 1 100%; }
  .float-plate { display: none; }
}
