/* ═══════════════════════════════════════════════════════════════
   Bag & Book It — Master Stylesheet
   Source of truth: index.html design tokens & component styles.
   All pages share this file. No inline <style> blocks needed.
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ─────────────────────────────────────────── */
:root {
  /* Core palette — from index.html */
  --color-bg:      #FFFFFF;
  --color-soft:    #F7F7F5;
  --color-text:    #0A0A0A;
  --color-muted:   #6B6B6B;
  --color-border:  #E8E8E5;
  --color-accent:  #E8FF59;
  --color-success: #2BB673;
  --color-star:    #F5A623;

  /* Aliases so inner-page refs to --color-primary / --color-surface still work */
  --color-primary:   var(--color-text);
  --color-surface:   var(--color-soft);
  --color-secondary: var(--color-text);

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: var(--font-sans);
  --font-body:    var(--font-sans);

  /* Spacing scale — matches index.html sections (5rem) */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Misc */
  --radius:          8px;
  --radius-lg:       16px;
  --transition-fast: 0.2s ease;
}

/* ── 2. Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { text-decoration: none; color: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.25rem; }

/* ── 3. Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem,   4vw, 3rem); }
h3 { font-size: clamp(1.25rem,2vw, 1.75rem); }
h4 { font-size: 1.1rem; font-weight: 700; }
small { font-size: 0.875rem; color: var(--color-muted); }

/* ── 4. Layout Primitives ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

/* Section colour variants */
.section--soft     { background: var(--color-soft); }
.section--alt      { background: var(--color-soft); }
.section--dark     { background: var(--color-text); color: #FFF; }
.section--accent   { background: var(--color-soft); }
.section--gradient { background: var(--color-soft); }
.section--bordered { border-top: 1px solid var(--color-border); }

/* Children inside dark sections sit above pseudo shapes */
.section--dark > .container,
.section--accent > .container,
.section--gradient > .container { position: relative; z-index: 1; }

/* Section header block */
.section-header      { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--color-muted); margin-bottom: 0.75rem;
}
h2.section-title, .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; margin: 0 0 0.75rem;
}
.section-subtitle, .section-lead {
  font-size: 1.125rem; color: var(--color-muted);
  max-width: 620px; margin: 0; line-height: 1.6;
}
.section-subtitle.mx-auto, .section-lead.mx-auto { margin-left: auto; margin-right: auto; }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Pricing / comparison */
.pricing-grid    { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); align-items: end; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.comparison-grid > * { background: var(--color-soft); padding: var(--space-md); border-bottom: 1px solid var(--color-border); }
.comparison-grid > *:nth-child(odd) { border-right: 1px solid var(--color-border); }

/* ── 5. Utility Classes ──────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left;   }
.text-right  { text-align: right;  }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-xs   { margin-top: var(--space-xs); }
.mt-sm   { margin-top: var(--space-sm); }
.mt-md   { margin-top: var(--space-md); }
.mt-lg   { margin-top: var(--space-lg); }
.mt-xl   { margin-top: var(--space-xl); }
.mb-xs   { margin-bottom: var(--space-xs); }
.mb-sm   { margin-bottom: var(--space-sm); }
.mb-md   { margin-bottom: var(--space-md); }
.mb-lg   { margin-bottom: var(--space-lg); }
.mb-xl   { margin-bottom: var(--space-xl); }

/* ── 6. Navigation ───────────────────────────────────────────── */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky; top: 0; z-index: 100;
}
.site-nav    { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.nav-logo    { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.4rem; }
.nav-logo-img{ height: 38px; }
.nav-links   { display: flex; gap: var(--space-md); align-items: center; }
.nav-link    { font-weight: 500; font-size: 0.95rem; transition: color var(--transition-fast); }
.nav-link:hover { color: var(--color-muted); }
.nav-toggle  { display: none; background: none; border: none; cursor: pointer; color: var(--color-text); padding: 0.5rem; }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none;
  font-weight: 500; font-size: 0.95rem;
  color: var(--color-text); cursor: pointer;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-dropdown-toggle::after { content: "▾"; font-size: 0.8em; transition: transform var(--transition-fast); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 0.5rem 0; min-width: 260px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition-fast); pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-dropdown-menu .nav-link { display: block; padding: 0.6rem 1.25rem; font-size: 0.9rem; }
.nav-dropdown-menu .nav-link:hover { background: var(--color-soft); }
.footer-col__title{
  color: #FFF;
}
.nav-cta {
  display: inline-flex; align-items: center; color: #FFF;
  padding: 0.6rem 1.25rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  transition: opacity var(--transition-fast);
}
.nav-cta:hover { opacity: 0.85; }

/* ── 7. Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--color-text); color: #FFF; padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-lg); margin-bottom: var(--space-xl); }
.footer-col-title { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--color-accent); }
.footer-links     { list-style: none; padding: 0; }
.footer-links li  { margin-bottom: 0.6rem; }
.footer-links a   { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition-fast); }
.footer-links a:hover { color: #FFF; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-md); text-align: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ── 8. Buttons ──────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.75rem; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border-radius: 8px;
  transition: all var(--transition-fast);
  min-height: 48px; border: 1px solid transparent;
}
.btn-primary  { background: var(--color-text); color: #FFF; border-color: var(--color-text); }
.btn-primary:hover { background: #333; border-color: #333; }
.btn-secondary{ background: var(--color-soft); color: var(--color-text); border-color: var(--color-border); }
.btn-secondary:hover { background: var(--color-border); }
.btn-ghost    { background: transparent; color: var(--color-text); border-color: var(--color-text); }
.btn-ghost:hover { background: var(--color-text); color: #FFF; }

.btn-primary-full {
  width: 100%; background: var(--color-text); color: #FFF;
  border: none; border-radius: 10px;
  padding: 1rem; font-size: 1rem; font-weight: 600;
  cursor: pointer; margin-top: 0.5rem;
  transition: opacity var(--transition-fast);
}
.btn-primary-full:hover { opacity: 0.9; }

.btn-accent {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 1rem 1.75rem;
  background: var(--color-accent); color: var(--color-text);
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 700; white-space: nowrap;
  transition: opacity var(--transition-fast);
}
.btn-accent:hover { opacity: 0.9; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 8px;
  color: #FFF; font-size: 0.9rem; font-weight: 600;
  transition: all var(--transition-fast);
}
.btn-outline-white:hover { background: #FFF; color: var(--color-text); border-color: #FFF; }

.btn-book-now {
  width: 100%; background: var(--color-text); color: #FFF;
  padding: 14px 24px; border: none; border-radius: 8px;
  font-size: 1rem; font-weight: 600; cursor: pointer; margin-top: 16px;
  transition: background var(--transition-fast);
}
.btn-book-now:hover { background: #333; }

/* ── 9. Tags & Badges ────────────────────────────────────────── */
.tag, .badge {
  display: inline-block; padding: 0.25rem 0.75rem;
  background: var(--color-soft); color: var(--color-text);
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  border: 1px solid var(--color-border); border-radius: 99px;
}

/* ── 10. Cards ───────────────────────────────────────────────── */
.card {
  background: var(--color-soft); padding: var(--space-md);
  border-radius: var(--radius); border: 1px solid var(--color-border);
}
.card-image {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
  margin-bottom: var(--space-sm);
}
.metric-card {
  background: var(--color-soft); padding: var(--space-md);
  border: 1px solid var(--color-border); border-radius: var(--radius);
  border-top: 4px solid var(--color-accent);
}

/* ── 11. Hero — Homepage Grid Style ─────────────────────────── */
.hero {
  position: relative; padding: 5rem 0;
  overflow: hidden; background: var(--color-soft);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  opacity: 0.7; pointer-events: none;
}
.hero-grid {
  position: relative; display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: #FFF; border: 1px solid var(--color-border); border-radius: 99px;
  font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--color-text);
}
.hero-pill .dot {
  width: 7px; height: 7px;
  background: var(--color-success); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(43,182,115,0.15);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero h1 { font-size: clamp(2.5rem,6vw,4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin: 0 0 1.25rem; }
.hero h1 em { font-style: normal; background: linear-gradient(180deg,transparent 60%,var(--color-accent) 60%); padding: 0 0.1em; }
.hero p.lead { font-size: 1.15rem; color: var(--color-muted); max-width: 500px; margin: 0 0 2rem; line-height: 1.6; }

.hero-steps-inline { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.hero-steps-inline span { font-size: 0.85rem; color: var(--color-muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-steps-inline span strong { color: var(--color-text); font-weight: 700; }
.hero-steps-inline .arrow { color: var(--color-border); margin: 0 0.3rem; }

/* ── 12. Hero — Inner Page Dark Overlay ─────────────────────── */
.hero--with-image { background-size: cover; background-position: center; }
.hero--with-image::before { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.72); z-index: 0; }

/* Override the homepage grid pseudo on dark variants */
.section--dark.hero::before,
.hero--with-image::before { background: rgba(10,10,10,0.72); background-image: none; mask-image: none; -webkit-mask-image: none; opacity: 1; }

.hero-content  { position: relative; z-index: 1; width: 100%; }
.hero-title    { font-weight: 800; color: #FFF; margin-bottom: 1.5rem; font-size: clamp(2.25rem, 5vw, 3.5rem); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 60ch; line-height: 1.6; }
.hero-cta-group{ display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__eyebrow { display: block; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin-bottom: 1rem; }
.hero__badge   {
  display: inline-block; padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.1); border: 1px solid var(--color-accent);
  color: var(--color-accent); border-radius: 99px;
  font-size: 0.82rem; font-weight: 600; margin-right: 0.5rem; margin-bottom: 0.5rem;
}
.hero__metrics { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }

/* Page header (lighter dark band, no image bg) */
.page-header {
  background: var(--color-text); color: #FFF;
  padding: 5rem 0; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, transparent 0, transparent 50px,
    rgba(255,255,255,0.025) 50px, rgba(255,255,255,0.025) 51px
  );
  pointer-events: none;
}
.page-header > .container { position: relative; z-index: 1; }
.page-header .hero-title   { color: #FFF; }
.page-header .hero-subtitle{ color: rgba(255,255,255,0.75); }
.page-header .section-eyebrow { color: var(--color-accent); }

/* ── 13. Booking Card ────────────────────────────────────────── */
.booking-card {
  background: #FFF; border-radius: 16px; padding: 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.booking-card h3  { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.25rem; }
.booking-card .sub{ font-size: 0.85rem; color: var(--color-muted); margin: 0 0 1.25rem; }
.booking-field {
  display: flex; align-items: center;
  background: var(--color-soft); border: 1px solid transparent;
  border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 0.6rem;
  transition: all 0.2s;
}
.booking-field:focus-within { background: #FFF; border-color: var(--color-text); }
.booking-field svg { width: 18px; height: 18px; color: var(--color-muted); margin-right: 0.75rem; flex-shrink: 0; }
.booking-field input, .booking-field select {
  background: transparent; border: none; outline: none;
  font-size: 0.95rem; font-family: inherit;
  color: var(--color-text); width: 100%; cursor: pointer;
}
.booking-field input::placeholder { color: var(--color-muted); }
.booking-disclaimer { font-size: 0.75rem; color: var(--color-muted); text-align: center; margin: 0.75rem 0 0; }

/* Uber inline booking form */
.hero-booking-card {
  background: #FFF; border-radius: 12px; padding: 2rem;
  max-width: 440px; width: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.booking-form-group { display: flex; margin-bottom: 12px; position: relative; }
.booking-form-control {
  width: 100%; height: 50px; padding: 12px 14px 12px 42px;
  background: var(--color-soft); border: 1px solid transparent; border-radius: 8px;
  font-size: 1rem; font-family: var(--font-body); color: var(--color-text);
  transition: box-shadow 0.15s, background 0.15s;
}
.booking-form-control::placeholder { color: var(--color-muted); }
.booking-form-control:focus { outline: none; background: #FFF; box-shadow: inset 0 0 0 2px var(--color-text); }
.booking-form-icon { position: absolute; top: 15px; left: 14px; width: 18px; height: 18px; color: var(--color-muted); pointer-events: none; }
select.booking-form-control { appearance: none; cursor: pointer; }

.hero-booking-inline {
  display: flex; align-items: center; justify-content: center;
  background: #FFF; padding: 0.5rem; border-radius: 99px;
  max-width: 850px; width: 100%; margin: 0 auto; position: relative; z-index: 2;
}
.hero-booking-inline .booking-form-group { flex: 1; margin: 0; padding: 0 1.5rem 0 1rem; border-right: 1px solid var(--color-border); }
.hero-booking-inline .booking-form-group:last-of-type { border-right: none; }
.hero-booking-inline .booking-form-control { background: transparent; border: none; padding: 1rem 0.5rem; border-radius: 0; box-shadow: none; }
.hero-booking-inline .btn-book-now { margin: 0; padding: 1.1rem 2rem; border-radius: 99px; white-space: nowrap; width: auto; }

/* ── 14. Trust Strip ─────────────────────────────────────────── */
.trust-strip { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 1.5rem 0; background: #FFF; }
.trust-strip-inner { display: flex; justify-content: space-around; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; color: var(--color-muted); }

.feature-strip { display: flex; gap: var(--space-lg); overflow-x: auto; padding: var(--space-md) 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.feature-strip__item { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap; font-weight: 600; }

/* ── 15. How It Works ────────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.how-grid::before { content: ''; position: absolute; top: 30px; left: 12%; right: 12%; height: 2px; background-image: linear-gradient(90deg,var(--color-border) 50%,transparent 50%); background-size: 12px 2px; z-index: 0; }
.how-step { position: relative; text-align: center; background: var(--color-bg); padding: 0 1rem; z-index: 1; }
.how-step .badge { width: 60px; height: 60px; border-radius: 50%; background: var(--color-text); color: #FFF; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; margin: 0 auto 1.25rem; border: 4px solid var(--color-bg); box-shadow: 0 0 0 1px var(--color-border); }
.how-step h3 { font-size: 1.15rem; font-weight: 700; margin: 0 0 0.5rem; }
.how-step p  { font-size: 0.9rem; color: var(--color-muted); margin: 0; }
.how-step .icon-large { width: 32px; height: 32px; color: var(--color-muted); margin: 0 auto 1rem; }
.timing-callout { margin: 3rem auto 0; padding: 1.25rem 1.5rem; background: var(--color-text); color: #FFF; border-radius: 12px; display: flex; align-items: center; gap: 1rem; max-width: 700px; }
.timing-callout svg { width: 28px; height: 28px; color: var(--color-accent); flex-shrink: 0; }
.timing-callout strong { color: var(--color-accent); }

/* ── 16. Services Grid ───────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.service-card { padding: 2rem; border: 1px solid var(--color-border); border-radius: 16px; background: #FFF; transition: all 0.25s ease; display: flex; flex-direction: column; gap: 0.5rem; min-height: 240px; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.07); border-color: var(--color-text); }
.service-card .icon-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--color-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; transition: background 0.2s; }
.service-card:hover .icon-wrap { background: var(--color-accent); }
.service-card .icon-wrap svg { width: 28px; height: 28px; color: var(--color-text); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.service-card p  { font-size: 0.9rem; color: var(--color-muted); margin: 0; flex-grow: 1; }
.service-card .link { font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem; }

/* ── 17. Areas / Map ─────────────────────────────────────────── */
.areas-section { position: relative; background: var(--color-text); color: #FFF; overflow: hidden; }
.areas-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg,transparent 0,transparent 50px,rgba(255,255,255,0.03) 50px,rgba(255,255,255,0.03) 51px); pointer-events: none; }
.areas-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.areas-grid h2 { color: #FFF; font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 1rem; line-height: 1.1; }
.areas-grid p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin: 0 0 2rem; }
.pill-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.pill-tag  { padding: 0.5rem 1rem; border: 1px solid rgba(255,255,255,0.2); border-radius: 99px; font-size: 0.85rem; background: rgba(255,255,255,0.04); }
.map-mock  { position: relative; aspect-ratio: 1; border-radius: 20px; background: #1A1A1A; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; background-image: radial-gradient(circle at 30% 40%,rgba(232,255,89,0.15) 0%,transparent 30%),radial-gradient(circle at 70% 60%,rgba(232,255,89,0.08) 0%,transparent 25%),linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px); background-size: 100% 100%,100% 100%,30px 30px,30px 30px; }
.map-pin   { position: absolute; width: 14px; height: 14px; background: var(--color-accent); border-radius: 50%; animation: ping 2.5s infinite; }
.map-pin:nth-child(1){top:30%;left:35%;}
.map-pin:nth-child(2){top:55%;left:60%;animation-delay:0.6s;}
.map-pin:nth-child(3){top:45%;left:22%;animation-delay:1.2s;}
.map-pin:nth-child(4){top:70%;left:45%;animation-delay:1.8s;}
@keyframes ping {
  0%  { box-shadow: 0 0 0 0    rgba(232,255,89,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(232,255,89,0);   }
  100%{ box-shadow: 0 0 0 0    rgba(232,255,89,0);   }
}

/* ── 18. Why / Feature List ──────────────────────────────────── */
.why-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image { border-radius: 16px; width: 100%; aspect-ratio: 4/5; object-fit: cover; background: var(--color-soft); }
.why-list  { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem 0; border-bottom: 1px solid var(--color-border); }
.why-list li:last-child { border-bottom: none; }
.why-list .check { flex-shrink: 0; width: 36px; height: 36px; background: var(--color-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.why-list .check svg { width: 18px; height: 18px; color: var(--color-text); }
.why-list strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-list span   { font-size: 0.9rem; color: var(--color-muted); }

/* ── 19. Testimonial ─────────────────────────────────────────── */
.testimonial-band { background: var(--color-soft); text-align: center; padding: 5rem 0; }
.testimonial-band .stars { color: var(--color-star); font-size: 1.2rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-band p { font-size: clamp(1.25rem,2.5vw,1.6rem); font-weight: 500; line-height: 1.4; max-width: 800px; margin: 0 auto 1.5rem; letter-spacing: -0.01em; }
.testimonial-band .author      { font-size: 0.9rem; font-weight: 600; }
.testimonial-band .author span { color: var(--color-muted); font-weight: 400; }
.testimonial-slider { overflow: hidden; position: relative; border: 1px solid var(--color-border); background: var(--color-soft); border-radius: var(--radius); }
.testimonial-slider__track { display: flex; transition: transform 0.5s ease; }
.testimonial-slider__item  { min-width: 100%; padding: var(--space-md); }
.testimonial-slider__nav   { display: flex; gap: 0.5rem; justify-content: center; margin-top: var(--space-md); padding-bottom: var(--space-md); }

/* ── 20. Stats ───────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; text-align: center; }
.stats-row .value { font-size: clamp(1.75rem,3vw,2.5rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.25rem; }
.stats-row .label { font-size: 0.8rem; color: var(--color-muted); font-weight: 500; }

/* ── 21. FAQ ─────────────────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 0; display: flex; justify-content: space-between; align-items: center; font-size: 1rem; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--color-muted); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 0 1.1rem; font-size: 0.92rem; color: var(--color-muted); line-height: 1.6; }
.faq-search { width: 100%; padding: 1rem 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: inherit; font-size: 1rem; background: var(--color-soft); outline: none; margin-bottom: var(--space-md); }
.faq-search:focus { background: #FFF; border-color: var(--color-text); }

/* Accordion (JS-toggled version) */
.accordion-item { background: var(--color-soft); border: 1px solid var(--color-border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; }
.accordion-header { padding: 1.1rem 1.5rem; cursor: pointer; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; min-height: 48px; background: var(--color-soft); }
.accordion-header::after { content: '+'; font-size: 1.4rem; color: var(--color-muted); transition: transform var(--transition-fast); }
.accordion-item.is-open .accordion-header::after { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 1.5rem; }
.accordion-item.is-open .accordion-content { max-height: 600px; padding-bottom: 1.25rem; }

/* ── 22. Final CTA ───────────────────────────────────────────── */
.final-cta { background: var(--color-text); color: #FFF; padding: 5rem 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: var(--color-accent); border-radius: 50%; filter: blur(120px); opacity: 0.2; }
.final-cta-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.final-cta h2 { color: #FFF; font-size: clamp(2rem,4vw,3rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 0.5rem; line-height: 1.1; }
.final-cta p  { color: rgba(255,255,255,0.7); margin: 0; font-size: 1.05rem; }

/* ── 23. Advanced Layout Components ─────────────────────────── */

/* Bento grid */
.bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--space-sm); grid-auto-rows: minmax(200px, auto); }
.bento-item { background: var(--color-soft); padding: var(--space-md); display: flex; flex-direction: column; border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row:   span 2; }

/* Horizontal scroll */
.horizontal-scroll { display: flex; overflow-x: scroll; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: var(--space-md); padding-bottom: var(--space-md); }
.horizontal-scroll__item { scroll-snap-align: start; flex-shrink: 0; width: 85vw; max-width: 400px; border: 1px solid var(--color-border); border-radius: var(--radius); }

/* Sticky story */
.sticky-story { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.sticky-story__pin { position: sticky; top: 6rem; }

/* Card stack */
.card-stack { position: relative; display: flex; flex-direction: column; gap: var(--space-md); }
.card-stack > *:nth-child(2) { transform: translateY(20px); z-index: 2; }
.card-stack > *:nth-child(3) { transform: translateY(40px); z-index: 3; }

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 2rem 0; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 24px; width: 3px; background: var(--color-border); border-radius: 2px; }
.timeline-item  { position: relative; padding-left: 4rem; margin-bottom: 3rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker { position: absolute; left: 12px; top: 4px; width: 26px; height: 26px; background: var(--color-accent); border: 3px solid var(--color-bg); border-radius: 50%; z-index: 2; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: var(--color-text); box-shadow: 0 0 0 1px var(--color-border); }
.timeline-content { background: var(--color-soft); padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--color-border); }

/* Tabs */
.tabs-container { margin-top: var(--space-md); }
.tab-list { display: flex; flex-wrap: wrap; border-bottom: 2px solid var(--color-border); margin-bottom: var(--space-md); }
.tab-btn { padding: 0.75rem 1.5rem; border: none; background: none; font-weight: 600; font-size: 0.95rem; color: var(--color-muted); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all var(--transition-fast); }
.tab-btn:hover    { color: var(--color-text); }
.tab-btn.is-active{ color: var(--color-text); border-bottom-color: var(--color-text); }
.tab-panel         { display: none; }
.tab-panel.is-active { display: block; }

/* Pricing toggle */
.pricing-toggle { display: flex; align-items: center; gap: 1rem; cursor: pointer; justify-content: center; margin-bottom: var(--space-lg); }
.pricing-toggle__track { width: 48px; height: 26px; background: var(--color-soft); border: 1px solid var(--color-border); position: relative; border-radius: 13px; }
.pricing-toggle__thumb { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; background: var(--color-text); transition: transform var(--transition-fast); border-radius: 50%; }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--color-accent); z-index: 9999; width: 0%; transition: width 0.1s; }

/* Comparison slider */
.comparison-slider { position: relative; width: 100%; overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--color-border); border-radius: var(--radius); }

/* Image collage */
.image-collage { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; border-radius: var(--radius); overflow: hidden; }
.image-collage__item { aspect-ratio: 1; object-fit: cover; width: 100%; }
.image-mask { clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%); }

/* Trust badges group */
.trust-badges { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; }

/* App Store buttons */
.app-btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.app-btn { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--color-soft); color: var(--color-text); padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 600; border: 1px solid var(--color-border); transition: all var(--transition-fast); min-height: 48px; }
.app-btn:hover { background: var(--color-text); color: #FFF; border-color: var(--color-text); }
.app-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ── 24. Editorial Typography ────────────────────────────────── */
.editorial-stat  { font-size: clamp(3rem,8vw,6rem); font-weight: 800; color: var(--color-accent); line-height: 1; margin-bottom: 0.5rem; }
.editorial-quote { font-size: clamp(1.35rem,3vw,2.25rem); line-height: 1.35; border-left: 4px solid var(--color-accent); padding-left: 2rem; margin: 3rem auto; max-width: 800px; }

/* ── 25. Uber Dark-Frame Hero ────────────────────────────────── */
.uber-hero-wrapper { padding: 1rem; background: var(--color-bg); }
.uber-hero-framed { background: var(--color-text); border-radius: 20px; padding: 8rem 2rem 6rem; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 85vh; position: relative; overflow: hidden; }
.uber-hero-framed::before { content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 150%; background: radial-gradient(circle,rgba(255,255,255,0.07) 0%,transparent 60%); z-index: 0; pointer-events: none; }
.uber-hero-framed .uber-hero-title   { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 800; color: #FFF; margin-bottom: 1.5rem; letter-spacing: -0.04em; position: relative; z-index: 2; }
.uber-hero-framed .uber-hero-subtitle{ font-size: 1.2rem; color: rgba(255,255,255,0.65); margin-bottom: 3.5rem; line-height: 1.5; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }

/* ── 26. Decorative Shape Classes ────────────────────────────── */
.shape-dots::before         { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle,rgba(255,255,255,0.12) 1px,transparent 1px); background-size: 24px 24px; pointer-events: none; z-index: 0; }
.shape-stripes::before      { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent 0,transparent 20px,rgba(10,10,10,0.03) 20px,rgba(10,10,10,0.03) 21px); pointer-events: none; z-index: 0; }
.shape-accent-stripes::before{ content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,rgba(10,10,10,0.04) 0,rgba(10,10,10,0.04) 2px,transparent 2px,transparent 10px); pointer-events: none; z-index: 0; }
.shape-dark-blur::before    { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(232,255,89,0.15) 0%,transparent 70%); border-radius: 50%; pointer-events: none; z-index: 0; }
.shape-gradient-poly::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 50%; background: rgba(255,255,255,0.03); clip-path: polygon(0 50%,100% 0,100% 100%,0 100%); pointer-events: none; z-index: 0; }
.shape-cta-rings::before    { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; z-index: 0; }
.shape-cta-rings::after     { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 80%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none; z-index: 0; }
.shape-blob::after          { content: ''; position: absolute; width: 600px; height: 600px; top: -200px; right: -100px; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; background: rgba(255,255,255,0.03); pointer-events: none; z-index: 0; animation: morph 15s ease-in-out infinite alternate; }
.shape-diagonal-stripes::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,0.02) 20px,rgba(255,255,255,0.02) 40px); pointer-events: none; z-index: 0; }
@keyframes morph { 0%{border-radius:40% 60% 70% 30%/40% 50% 60% 50%;} 100%{border-radius:60% 40% 30% 70%/60% 30% 70% 40%;} }

/* ── 27. Animations ──────────────────────────────────────────── */
.animate-fade-up   { opacity: 0; transform: translateY(24px); animation: fadeUp    0.6s ease forwards; }
.animate-slide-left{ opacity: 0; transform: translateX(-24px); animation: slideLeft  0.6s ease forwards; }
.animate-slide-right{opacity: 0; transform: translateX(24px);  animation: slideRight 0.6s ease forwards; }
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }
@keyframes fadeUp    { to { opacity:1; transform:none; } }
@keyframes slideLeft { to { opacity:1; transform:none; } }
@keyframes slideRight{ to { opacity:1; transform:none; } }

/* ── 28. Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .how-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .how-grid::before { display: none; }
  .areas-grid     { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid       { grid-template-columns: 1fr; }
  .stats-row      { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .sticky-story   { grid-template-columns: 1fr; }
  .sticky-story__pin { position: relative; top: 0; }
  .uber-hero-wrapper { padding: 0; }
  .uber-hero-framed  { border-radius: 0; padding: 5rem 1rem 4rem; }
  .bento-item--wide  { grid-column: span 1; }
  .timeline::before  { left: 16px; }
  .timeline-marker   { left: 3px; width: 22px; height: 22px; font-size: 0.75rem; }
  .timeline-item     { padding-left: 3rem; }
  .editorial-quote   { padding-left: 1rem; border-left-width: 2px; }
  .hero-booking-inline { flex-direction: column; border-radius: 16px; padding: 1rem; gap: 1rem; }
  .hero-booking-inline .booking-form-group { border-right: none; border-bottom: 1px solid var(--color-border); width: 100%; padding: 0 0 1rem; }
  .hero-booking-inline .btn-book-now { width: 100%; border-radius: 10px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-bg); flex-direction: column; padding: var(--space-md); border-bottom: 1px solid var(--color-border); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
  .nav-open .nav-links { display: flex; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4, .comparison-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .horizontal-scroll__item { width: 90vw; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .section       { padding: 3.5rem 0; }
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .tab-btn       { padding: 0.6rem 1rem; font-size: 0.85rem; }
}
