/* =====================================================
   Easy MiniCab — Production stylesheet
   Tokens, layout, components, utilities, responsive
   ===================================================== */

:root {
  /* Midnight & Brass — premium executive theme */
  --brand: #0d1b2a;            /* deep navy */
  --brand-dark: #050d18;       /* near-black navy */
  --brand-darker: #08111e;     /* deepest navy for high-contrast bands */
  --accent: #c9a961;           /* brass gold */
  --accent-dark: #a78843;      /* darker brass */
  --ink: #1a1a1a;              /* near-black body text */
  --ink-2: #2a2a2a;
  --muted: #6b6960;            /* warm grey */
  --muted-2: #94918a;
  --line: #ebe6da;             /* warm hairline */
  --line-2: #d8d2c3;
  --bg: #fdfcf8;               /* warm off-white */
  --bg-2: #f5f0e3;             /* cream */
  --card: #ffffff;
  --success: #4a7c52;
  --danger: #a3382e;
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(15,29,46,0.06);
  --shadow-strong: 0 20px 50px rgba(15,29,46,0.10);
  --grid: 1200px;
  --grid-narrow: 920px;
  --space-1: 6px; --space-2: 12px; --space-3: 18px; --space-4: 24px; --space-5: 36px; --space-6: 56px; --space-7: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--brand-dark); }
h1, h2 { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; color: var(--ink); line-height: 1.15; letter-spacing: -.5px; }
h3, h4 { font-family: 'Inter', sans-serif; color: var(--ink); line-height: 1.3; }
h1 { font-size: clamp(36px, 5.5vw, 60px); font-weight: 700; letter-spacing: -1px; }
h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; letter-spacing: -.5px; }
h3 { font-size: 21px; font-weight: 700; letter-spacing: -.2px; }
h4 { font-size: 16px; font-weight: 700; }
p { color: var(--ink-2); }
.muted { color: var(--muted); }

/* Skip-to-content for accessibility */
.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 12px 18px; z-index: 100; }
.skip:focus { left: 12px; top: 12px; }

/* Layout */
.container { width: 100%; max-width: var(--grid); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--grid-narrow); }
section { padding: var(--space-7) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-6); }
.eyebrow { color: var(--brand); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; }
.section-head h2 { margin: 10px 0 12px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Top utility bar */
.topbar { background: var(--brand-dark); color: #fff; padding: 8px 0; font-size: 13px; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #fff; opacity: .85; }
.topbar a:hover { opacity: 1; }
.topbar .pill { background: rgba(255,255,255,.12); padding: 2px 10px; border-radius: 999px; font-size: 12px; }

/* Main nav */
nav.main {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
}
nav.main .container { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--brand-dark); }
.logo .mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 60%, var(--accent) 200%);
  display: grid; place-items: center; color: var(--accent); font-weight: 800;
  font-family: 'Playfair Display', Georgia, serif;
  border: 1px solid rgba(201,169,97,0.4);
}
.nav-links { list-style: none; display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-cta { display: inline-flex; gap: 12px; align-items: center; }

/* Mobile nav toggle */
.nav-toggle { display: none; background: transparent; border: 1px solid var(--line); width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); position: relative; display: block; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-accent { background: var(--accent); color: var(--brand); border-color: var(--accent); font-weight: 700; }
.btn-accent:hover { background: var(--accent-dark); color: var(--brand); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* Hero */
.hero {
  position: relative; padding: var(--space-7) 0 calc(var(--space-7) + 20px); overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(13,27,42,0.06), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(201,169,97,0.20), transparent 60%),
    var(--bg);
}
.hero .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero .lede { margin-top: 18px; color: var(--muted); font-size: 19px; max-width: 540px; }
.hero .trust { margin-top: 28px; display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.hero .trust .num { font-weight: 800; font-size: 22px; color: var(--brand-dark); display: block; }
.hero .trust .lbl { font-size: 13px; color: var(--muted); }
.hero .cta-row { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero {
  padding: 80px 0 60px;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(201,169,97,0.18), transparent 60%),
    var(--bg);
  text-align: center;
}
.page-hero h1 { max-width: 800px; margin: 0 auto 14px; }
.page-hero p.lede { color: var(--muted); font-size: 18px; max-width: 640px; margin: 0 auto; }

/* Booking widget */
.book-card {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow-strong);
  padding: 26px; border: 1px solid var(--line);
}
.book-card h3 { font-size: 18px; margin-bottom: 4px; }
.book-card .sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.tabs { display: flex; gap: 6px; padding: 4px; background: var(--bg); border-radius: 999px; margin-bottom: 18px; }
.tab { flex: 1; text-align: center; padding: 10px 14px; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: 14px; color: var(--muted); border: 0; background: transparent; }
.tab.active { background: var(--card); color: var(--brand-dark); box-shadow: 0 2px 8px rgba(15,29,46,0.06); }
.field { position: relative; margin-bottom: 12px; }
.field label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg); font: inherit; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(46,117,182,0.12); }
.field.with-icon input { padding-left: 44px; }
.field .icon { position: absolute; left: 14px; top: 38px; width: 18px; height: 18px; border-radius: 50%; }
.field.pickup .icon { background: var(--accent); }
.field.dropoff .icon { background: var(--brand); }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quote-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px dashed var(--line); margin-top: 8px; }
.quote-row .price { font-weight: 800; font-size: 22px; color: var(--brand-dark); }
.quote-row .price small { color: var(--muted); font-weight: 500; font-size: 13px; margin-left: 6px; }

/* Cordic widget container */
.cordic-mount {
  background: var(--card); border-radius: var(--radius); border: 1px solid var(--line);
  min-height: 480px; padding: 24px; display: grid; place-items: center; text-align: center; color: var(--muted);
}
.cordic-mount .ph-title { color: var(--brand-dark); font-weight: 700; margin-bottom: 8px; }

/* Tile grids */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tiles-3 { grid-template-columns: repeat(3, 1fr); }
.tiles-2 { grid-template-columns: repeat(2, 1fr); }
.tile {
  background: var(--card); border-radius: var(--radius); padding: 26px; border: 1px solid var(--line);
  transition: transform .15s, box-shadow .15s, border-color .15s; display: block; color: var(--ink);
}
.tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: rgba(46,117,182,0.4); color: var(--ink); }
.tile .icon-box {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,169,97,0.14), rgba(13,27,42,0.06));
  border: 1px solid rgba(201,169,97,0.25);
  display: grid; place-items: center; color: var(--brand); font-size: 22px; margin-bottom: 18px; font-weight: 700;
}
.tile h3 { font-size: 18px; margin-bottom: 6px; }
.tile p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.tile .more { display: inline-block; margin-top: 12px; font-weight: 600; color: var(--brand); font-size: 14px; }

/* How it works */
.how { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; padding: 28px 22px; border-radius: var(--radius); background: var(--bg); }
.step .num { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: var(--accent); display: grid; place-items: center; font-weight: 800; margin: 0 auto 14px; font-family: 'Playfair Display', Georgia, serif; font-size: 18px; border: 2px solid var(--accent); }
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 14px; }

/* Fares */
.fares-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.fare-card { background: var(--card); border-radius: var(--radius); border: 1px solid var(--line); padding: 28px; }
.fare-card h3 { font-size: 20px; margin-bottom: 16px; color: var(--brand-dark); }
.fare-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.fare-row:last-child { border-bottom: none; }
.fare-row .price { font-weight: 700; color: var(--brand-dark); }
.fare-table { width: 100%; border-collapse: collapse; }
.fare-table th, .fare-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.fare-table th { background: var(--bg-2); color: var(--brand-dark); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.fare-table td.price { font-weight: 700; color: var(--brand-dark); text-align: right; }

/* Apps section */
.apps { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.apps .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.apps ul.feat { list-style: none; margin: 18px 0 24px; }
.apps ul.feat li { padding: 8px 0 8px 28px; position: relative; color: var(--ink); }
.apps ul.feat li::before { content: "✓"; color: var(--brand); position: absolute; left: 0; font-weight: 800; }
.app-store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; gap: 10px; align-items: center; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 12px; }
.store-btn:hover { background: var(--brand-darker); color: #fff; }
.store-btn .small { font-size: 11px; opacity: .8; display: block; line-height: 1; }
.store-btn .big { font-size: 17px; font-weight: 700; line-height: 1.1; }

/* Phone mockup */
.phones { position: relative; height: 540px; }
.phone { position: absolute; width: 240px; height: 480px; border-radius: 36px; background: #0f1d2e; padding: 12px; box-shadow: 0 30px 60px rgba(15,29,46,0.20); border: 4px solid #1a2c44; }
.phone .screen { background: #fff; height: 100%; border-radius: 26px; overflow: hidden; position: relative; }
.phone-1 { left: 0; top: 30px; transform: rotate(-6deg); }
.phone-2 { right: 0; top: 60px; transform: rotate(5deg); }
.phone .header-pill { background: var(--brand); color: #fff; text-align: center; padding: 14px; font-weight: 700; font-size: 14px; }
.phone .map { height: 200px; background: linear-gradient(135deg, #d8e4f1 25%, #c4d3e6 25%, #c4d3e6 50%, #d8e4f1 50%, #d8e4f1 75%, #c4d3e6 75%, #c4d3e6); background-size: 18px 18px; position: relative; }
.phone .map::after { content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(242,169,0,.25); transform: translate(-50%, -50%); }
.phone .pin-driver { position: absolute; left: 30%; top: 30%; width: 12px; height: 12px; background: var(--brand); border: 2px solid #fff; border-radius: 50%; }
.phone .info { padding: 14px; font-size: 12px; }
.phone .info h4 { font-size: 14px; margin-bottom: 6px; }
.phone .info .driver-row { display: flex; align-items: center; gap: 10px; margin: 12px 0; padding: 10px; background: var(--bg); border-radius: 10px; }
.phone .info .av { width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.phone .info .row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--muted); }
.phone .info .row b { color: var(--ink); }
.phone .cta-fake { background: var(--brand); color: #fff; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 13px; margin-top: 8px; }

/* Corporate dark band */
.corporate { background: var(--brand-dark); color: #fff; }
.corporate h2, .corporate h3 { color: #fff; }
.corporate p { color: rgba(255,255,255,0.85); }
.corporate .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
.corporate p.lede { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 22px; }
.corporate ul.feat { list-style: none; margin-bottom: 20px; }
.corporate ul.feat li { padding: 8px 0 8px 28px; position: relative; color: #fff; }
.corporate ul.feat li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: 800; }
.corporate-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(6px); }
.corp-form .field input, .corp-form .field select, .corp-form .field textarea { background: rgba(255,255,255,0.10); color: #fff; border-color: rgba(255,255,255,0.20); }
.corp-form .field input::placeholder, .corp-form .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.corp-form .field label { color: rgba(255,255,255,0.6); }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.testimonial .stars { color: var(--accent); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial p { color: var(--ink); font-size: 16px; line-height: 1.55; }
.testimonial .who { display: flex; gap: 12px; align-items: center; margin-top: 18px; }
.testimonial .av { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; }
.testimonial .who small { color: var(--muted); display: block; }

/* FAQ */
.faq-list details { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; margin-bottom: 12px; }
.faq-list details[open] { border-color: var(--brand); }
.faq-list summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--brand); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { color: var(--muted); margin-top: 12px; line-height: 1.6; }

/* Final CTA */
.footer-cta { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%); color: #fff; text-align: center; padding: 80px 0; position: relative; overflow: hidden; }
.footer-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 200px at 50% 100%, rgba(201,169,97,0.18), transparent 70%); pointer-events: none; }
.footer-cta .container { position: relative; }
.footer-cta h2 { color: #fff; margin-bottom: 12px; }
.footer-cta p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 24px; }

/* Footer */
footer.site { background: var(--brand-darker); color: rgba(255,255,255,0.78); padding: 60px 0 24px; border-top: 1px solid rgba(201,169,97,0.20); }
footer.site .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
footer.site h4 { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
footer.site .logo { color: #fff; }
footer.site .logo .mark { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 60%, var(--accent) 200%); }
footer.site p { color: rgba(255,255,255,0.78); margin: 0; }
footer.site p.tagline { margin-top: 16px; max-width: 320px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.72); }
footer.site p.legal-id { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); }
footer.site ul { list-style: none; }
footer.site ul li { margin-bottom: 10px; font-size: 14px; }
footer.site a { color: rgba(255,255,255,0.78); }
footer.site a:hover { color: var(--accent); }
footer.site .legal { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.65); }
footer.site .legal a { color: rgba(255,255,255,0.78); }
footer.site .legal a:hover { color: var(--accent); }

/* Long-form prose pages (legal, blog, help) */
.prose { max-width: 720px; margin: 0 auto; color: var(--ink-2); font-size: 17px; line-height: 1.7; }
.prose h2 { font-size: 28px; margin: 48px 0 14px; }
.prose h3 { font-size: 21px; margin: 32px 0 10px; color: var(--ink); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose ul li, .prose ol li { margin-bottom: 8px; }
.prose a { font-weight: 500; }
.prose blockquote { border-left: 4px solid var(--brand); padding: 12px 20px; background: var(--bg-2); border-radius: 0 12px 12px 0; margin: 24px 0; color: var(--ink); font-style: italic; }
.prose code { background: var(--bg-2); padding: 2px 8px; border-radius: 6px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.9em; }
.prose hr { border: 0; height: 1px; background: var(--line); margin: 36px 0; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .15s, box-shadow .15s; display: block; color: var(--ink); }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--ink); }
.post-card .img { height: 180px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%); position: relative; }
.post-card .img.alt { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); }
.post-card .img.alt2 { background: linear-gradient(135deg, var(--ink) 0%, var(--brand-dark) 100%); }
.post-card .body { padding: 22px; }
.post-card .tag { display: inline-block; font-size: 12px; color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.post-card h3 { font-size: 19px; margin-bottom: 8px; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: 14px; }
.post-card .meta { display: flex; gap: 12px; margin-top: 14px; color: var(--muted-2); font-size: 13px; }

/* Breadcrumb */
.crumbs { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--brand); }
.crumbs span { margin: 0 8px; }

/* Lead form blocks */
.lead-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 36px; }
.mb-3 { margin-bottom: 24px; }
.gap-md { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero .container, .apps .container, .corporate .container { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .tiles-3, .t-grid, .post-grid, footer.site .grid, .fares-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--card); border-bottom: 1px solid var(--line); padding: 16px 24px;
  }
  .nav-links.open li { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links.open li:last-child { border-bottom: 0; }
}
@media (max-width: 600px) {
  .tiles, .tiles-3, .t-grid, .post-grid, footer.site .grid, .fares-grid, .steps { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 60px; }
  section { padding: 56px 0; }
  .row-2 { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .nav-cta .btn-ghost { display: none; }
}

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

/* =====================================================
   Application form (drive-with-us)
   ===================================================== */
.app-form { max-width: 820px; margin: 0 auto; }
.app-form .form-section {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 8px; margin-bottom: 20px; scroll-margin-top: 80px;
}
.app-form .form-section h2 {
  font-size: 22px; color: var(--brand-dark); margin-bottom: 6px;
  padding-bottom: 12px; border-bottom: 2px solid var(--brand);
  display: flex; align-items: center; gap: 12px;
}
.app-form .form-section h2 .num {
  width: 32px; height: 32px; border-radius: 8px; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 15px; font-weight: 800;
}
.app-form .form-section .section-intro { color: var(--muted); font-size: 14px; margin-bottom: 18px; margin-top: 12px; }
.app-form .form-section.subhead-block {
  background: var(--bg-2); border-color: var(--brand);
}
.app-form .field { margin-bottom: 16px; }
.app-form .required { color: #c1382b; font-weight: 700; }
.app-form .field label { font-size: 13px; }
.app-form .row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }

/* Date triplet (DD MM YYYY) */
.date-triplet { display: grid; grid-template-columns: 70px 70px 110px; gap: 8px; align-items: center; }
.date-triplet input { padding: 12px; text-align: center; }
.date-triplet .sep { color: var(--muted-2); font-weight: 700; }

/* Checkbox / radio groups */
.check-list { display: grid; gap: 8px; padding: 14px 16px; background: var(--bg); border-radius: 12px; border: 1px solid var(--line); }
.check-list.cols { grid-template-columns: repeat(2, 1fr); }
.check-list.cols-4 { grid-template-columns: repeat(4, 1fr); }
.check-list label { font-size: 14px; display: flex; align-items: center; gap: 8px; color: var(--ink); margin: 0; text-transform: none; letter-spacing: 0; font-weight: 500; cursor: pointer; }
.check-list input[type="checkbox"], .check-list input[type="radio"] { width: 18px; height: 18px; accent-color: var(--brand); }

/* File upload */
.file-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.file-field {
  background: var(--bg); border: 2px dashed var(--line-2); border-radius: 12px; padding: 16px;
  transition: border-color .15s, background .15s;
}
.file-field:hover { border-color: var(--brand); background: #fff; }
.file-field label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 13px; text-transform: uppercase; letter-spacing: .4px; }
.file-field input[type="file"] { font-size: 13px; padding: 6px 0; background: transparent; border: 0; width: 100%; }
.file-field .hint { color: var(--muted); font-size: 12px; margin-top: 4px; }
.file-field.has-file { border-color: var(--success); background: #effaf3; }

/* Section divider banner */
.banner-section {
  background: var(--ink); color: #fff; padding: 18px 24px; border-radius: 12px;
  text-align: center; font-weight: 700; margin: 28px 0 16px; font-size: 16px;
}
.banner-section.warn { background: var(--brand-darker); }

/* Form actions */
.form-actions {
  display: flex; gap: 12px; justify-content: space-between; align-items: center; flex-wrap: wrap;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 28px; margin-top: 20px;
}
.form-actions .left { color: var(--muted); font-size: 13px; max-width: 420px; }

/* Compliance text block */
.compliance-block {
  background: var(--bg-2); border-left: 4px solid var(--brand); border-radius: 0 12px 12px 0;
  padding: 16px 20px; margin: 16px 0; font-size: 14px; color: var(--ink);
}
.compliance-block strong { color: var(--brand-dark); }

/* Print styles — clean A4 layout */
@media print {
  @page { size: A4; margin: 14mm; }
  html, body { background: #fff !important; color: #000 !important; }
  .topbar, nav.main, .footer-cta, footer.site, .form-actions, .skip { display: none !important; }
  .page-hero { padding: 0 0 12px !important; background: #fff !important; }
  .page-hero h1 { font-size: 22pt; }
  .page-hero .lede, .crumbs { display: none !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
  section { padding: 12px 0 !important; }
  .app-form .form-section {
    border: 1px solid #999 !important; box-shadow: none !important; padding: 12px !important;
    page-break-inside: avoid; margin-bottom: 12px !important;
  }
  .app-form .form-section h2 {
    font-size: 13pt !important; border-bottom: 1.5px solid #000 !important; padding-bottom: 6px !important; margin-bottom: 8px !important;
  }
  .app-form .form-section h2 .num { background: #000 !important; }
  .field label { font-size: 9pt !important; color: #000 !important; }
  .field input, .field select, .field textarea {
    background: #fff !important; border: 1px solid #999 !important; padding: 4px 8px !important;
    font-size: 10pt !important; color: #000 !important;
  }
  .file-field { border: 1px solid #999 !important; background: #fff !important; padding: 6px 10px !important; }
  .file-field input[type="file"] { display: none !important; }
  .file-field::after { content: "[ Document attached ]"; font-size: 9pt; color: #555; font-style: italic; }
  .check-list { border: 1px solid #999 !important; background: #fff !important; padding: 6px 10px !important; }
  .banner-section { background: #fff !important; color: #000 !important; border: 1.5px solid #000 !important; }
  .compliance-block { background: #fafafa !important; border-left: 3px solid #000 !important; }
  a { color: #000 !important; text-decoration: none !important; }
  .row-2, .row-3, .file-grid, .check-list.cols, .check-list.cols-4 { display: grid !important; }
  .form-print-header { display: block !important; text-align: center; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #000; }
  .form-print-header h2 { font-size: 14pt; }
  .form-print-header p { font-size: 9pt; color: #555; }
}
.form-print-header { display: none; }

/* =====================================================
   Fleet section / page
   ===================================================== */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fleet-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); border-color: var(--accent); }
.fleet-card .silo {
  height: 160px; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  display: grid; place-items: center; color: var(--accent); position: relative;
  border-bottom: 3px solid var(--accent);
}
.fleet-card .silo svg { width: 140px; height: auto; }
.fleet-card .silo .badge {
  position: absolute; top: 12px; right: 12px; background: var(--accent); color: var(--brand);
  font-weight: 800; font-size: 12px; letter-spacing: 1px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
}
.fleet-card .body { padding: 22px; }
.fleet-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; margin-bottom: 4px; color: var(--brand); font-weight: 700; }
.fleet-card .example { color: var(--muted); font-size: 13px; margin-bottom: 14px; font-style: italic; }
.fleet-card .stat-row { display: flex; gap: 16px; margin-bottom: 14px; padding: 12px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fleet-card .stat { flex: 1; }
.fleet-card .stat .num { font-size: 22px; font-weight: 800; color: var(--brand); display: block; line-height: 1; font-family: 'Playfair Display', Georgia, serif; }
.fleet-card .stat .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
.fleet-card p.use { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

.capacity-table th, .capacity-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.capacity-table { width: 100%; border-collapse: collapse; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.capacity-table thead th { background: var(--brand); color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; border: 0; }
.capacity-table tbody tr:last-child td { border-bottom: 0; }
.capacity-table .cap-class { font-weight: 700; color: var(--brand); }
.capacity-table .num { font-weight: 700; color: var(--brand); text-align: center; font-family: 'Playfair Display', Georgia, serif; font-size: 18px; }

/* Cordic CTA card */
.cordic-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 36px 36px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,169,97,0.3);
}
.cordic-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 100% 0%, rgba(201,169,97,0.30), transparent 60%);
  pointer-events: none;
}
.cordic-cta * { position: relative; }
.cordic-cta .pre {
  color: var(--accent); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
}
.cordic-cta h2 { color: #fff; font-size: 32px; line-height: 1.1; margin-bottom: 12px; }
.cordic-cta p { color: rgba(255,255,255,0.82); font-size: 16px; margin-bottom: 20px; }
.cordic-cta .btn-primary { background: var(--accent); color: var(--brand); border-color: var(--accent); }
.cordic-cta .btn-primary:hover { background: #d8bb78; color: var(--brand); }
.cordic-cta .quick-list { display: flex; gap: 22px; margin-top: 18px; flex-wrap: wrap; color: rgba(255,255,255,0.8); font-size: 13px; }
.cordic-cta .quick-list span { display: inline-flex; align-items: center; gap: 6px; }
.cordic-cta .quick-list span::before { content: "✓"; color: var(--accent); font-weight: 800; }

/* Responsive fleet grid */
@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } .cordic-cta { padding: 28px 24px; } .cordic-cta h2 { font-size: 26px; } }

/* =====================================================
   Conversion sprint — sticky bar, WhatsApp, quote form
   ===================================================== */

/* Sticky mobile action bar */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  display: none;
  background: var(--brand-darker); border-top: 1px solid rgba(201,169,97,0.25);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom)); gap: 6px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.sticky-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 10px 6px; border-radius: 10px;
  background: transparent; color: rgba(255,255,255,0.92); font-weight: 700; font-size: 12px;
  text-decoration: none; text-transform: uppercase; letter-spacing: .5px;
  transition: background .15s ease;
}
.sticky-bar a:hover { color: var(--accent); }
.sticky-bar a .ico { font-size: 18px; line-height: 1; }
.sticky-bar a.primary { background: var(--accent); color: var(--brand); }
.sticky-bar a.primary:hover { background: #d8bb78; color: var(--brand); }
.sticky-bar a.whatsapp { background: #25D366; color: #fff; }
.sticky-bar a.whatsapp:hover { background: #1da851; color: #fff; }

@media (max-width: 768px) {
  .sticky-bar { display: flex; }
  /* Add bottom padding so the sticky bar doesn't cover footer/CTAs */
  body { padding-bottom: 76px; }
}

/* WhatsApp floating button (all viewports) */
.wa-float {
  position: fixed; right: 18px; bottom: 22px; z-index: 55;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 10px 24px rgba(37,211,102,0.55); color: #fff; }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float .pulse {
  position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.6); animation: wa-pulse 2s ease-out infinite; pointer-events: none;
}
@keyframes wa-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 768px) {
  .wa-float { bottom: calc(86px + env(safe-area-inset-bottom)); right: 14px; width: 54px; height: 54px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* Hero quote form (above the fold) */
.quote-card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-strong);
  padding: 26px;
  position: relative;
}
.quote-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--brand) 100%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.quote-card .qc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.quote-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; color: var(--brand); margin: 0; }
.quote-card .qc-head .badge {
  background: var(--bg-2); color: var(--brand); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 1px; text-transform: uppercase;
}
.quote-card .field { margin-bottom: 12px; }
.quote-card .field label { font-size: 11px; letter-spacing: 1px; color: var(--muted); }
.quote-card .field input { padding-left: 44px; }
.quote-card .field.with-icon::before {
  position: absolute; left: 16px; top: 38px; width: 12px; height: 12px; border-radius: 50%; content: "";
}
.quote-card .field.pickup::before { background: var(--accent); box-shadow: 0 0 0 4px rgba(201,169,97,0.18); }
.quote-card .field.dropoff::before { background: var(--brand); box-shadow: 0 0 0 4px rgba(13,27,42,0.10); }
.quote-card .row-2 { gap: 10px; }
.quote-card .qc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.quote-card .qc-actions .btn { flex: 1; min-width: 140px; }
.quote-card .qc-actions .btn-wa {
  background: #25D366; color: #fff; border-color: #25D366;
}
.quote-card .qc-actions .btn-wa:hover { background: #1da851; color: #fff; }
.quote-card .qc-foot {
  margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}

