/* ===========================
   Francis Luxury Transfers
   Premium private transportation — design system
   =========================== */

:root {
  --ivory: #f8f5ee;
  --ivory-deep: #f1ead9;
  --charcoal: #24211d;
  --charcoal-soft: #6b6459;
  --charcoal-faint: #948c7d;
  --deep: #14110d;
  --deep-soft: #1e1a15;
  --white: #ffffff;
  --bronze: #a9793c;
  --bronze-dark: #8a5f2c;
  --bronze-light: #c99b5c;
  --bronze-pale: #e8c98a;
  --bronze-wash: rgba(169, 121, 60, 0.1);
  --gold-gradient: linear-gradient(135deg, #d9ab5f 0%, #a9793c 55%, #8a5f2c 100%);
  --gold-shadow: 0 10px 26px rgba(169, 121, 60, 0.35);
  --border: #e6ddc9;
  --border-soft: #efe9da;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(36, 33, 29, 0.06), 0 1px 1px rgba(36, 33, 29, 0.04);
  --shadow-md: 0 14px 32px rgba(36, 33, 29, 0.09);
  --shadow-lg: 0 24px 56px rgba(36, 33, 29, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --bottom-nav-height: 68px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal-soft);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

section[id] { scroll-margin-top: 84px; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 16px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(28px, 3.6vw, 38px); }
h3 { font-size: 19px; margin-bottom: 8px; }

p { margin: 0 0 16px; color: var(--charcoal-soft); }

svg { width: 1em; height: 1em; fill: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,0) 55%);
  pointer-events: none;
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(169, 121, 60, 0.48); transform: translateY(-1px); filter: brightness(1.04); }
.btn-primary:active { transform: translateY(0) scale(0.98); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: #37322b; transform: translateY(-1px); }
.btn-dark:active { transform: translateY(0) scale(0.98); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-ghost-gold {
  background: rgba(20, 17, 13, 0.25);
  border-color: var(--bronze-light);
  color: var(--white);
  backdrop-filter: blur(2px);
}
.btn-ghost-gold:hover { background: rgba(201, 155, 92, 0.16); border-color: var(--bronze-pale); }
.btn-ghost-gold:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--bronze); color: var(--bronze-dark); }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.vehicle-card .btn { overflow: visible; white-space: normal; height: auto; min-height: 40px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--bronze-dark);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, gap .2s ease;
}
.text-link:hover { border-color: var(--bronze-dark); gap: 9px; }
.text-link svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow .2s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 52px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  font-weight: 500;
  font-size: 14.5px;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--bronze);
  transition: width .2s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--charcoal);
  position: relative;
  flex-shrink: 0;
}
.menu-toggle svg {
  width: 24px;
  height: 24px;
  transition: opacity .2s ease, transform .2s ease;
}
.menu-toggle .close-icon {
  opacity: 0;
  transform: rotate(-90deg);
  position: absolute;
}
.menu-toggle[aria-expanded="true"] .menu-icon {
  opacity: 0;
  transform: rotate(90deg);
}
.menu-toggle[aria-expanded="true"] .close-icon {
  opacity: 1;
  transform: rotate(0);
}
.language-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.language-toggle:hover {
  border-color: var(--bronze);
  background: var(--ivory);
  color: var(--bronze-dark);
}
.language-toggle:active {
  transform: scale(0.95);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 108px 0 72px;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/suv-driver-plaza.jpg') center 30% / cover no-repeat;
  z-index: -2;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 8% 105%, rgba(20, 17, 13, 0.2) 0%, transparent 55%),
    linear-gradient(100deg, var(--deep) 0%, rgba(20, 17, 13, 0.82) 38%, rgba(20, 17, 13, 0.4) 68%, rgba(20, 17, 13, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 8, 6, 0.6) 0%, rgba(10, 8, 6, 0.08) 40%, rgba(10, 8, 6, 0.28) 100%);
  z-index: -1;
}
.hero-inner { width: 100%; }
.hero-copy { max-width: 620px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--bronze-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 600;
}
.hero-eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bronze-light));
}
.hero-eyebrow .ornament { font-size: 10px; }
.hero-title {
  color: var(--white);
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  line-height: 1.08;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero-subtitle {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--bronze-pale);
  font-size: clamp(14px, 1.8vw, 18px);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 22px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.hero-sub {
  font-size: 16.5px;
  color: #ece7da;
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #ece7da;
  position: relative;
  padding-left: 20px;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(201, 155, 92, 0.4);
}
.hero-trust-item:first-child::before { display: none; }
.hero-trust-item svg { width: 17px; height: 17px; color: var(--bronze-light); flex-shrink: 0; }

/* ---------- Quote bar ---------- */
.quote-bar-wrap { position: relative; z-index: 5; }
.quote-bar {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  padding: 26px 24px 22px;
  margin-top: -40px;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 0.8fr auto;
  gap: 18px;
  align-items: end;
  overflow: hidden;
}
.quote-bar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.qb-field { display: flex; flex-direction: column; gap: 6px; }
.qb-field label {
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--charcoal-faint);
}
.qb-field input, .qb-field select {
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 6px 2px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--charcoal);
  background: transparent;
  transition: border-color .2s ease;
}
.qb-field input:focus, .qb-field select:focus { outline: none; border-color: var(--bronze); }
.qb-field input::placeholder { color: var(--charcoal-faint); }

/* ---------- Sections ---------- */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  font-size: 12px;
  color: var(--bronze-dark);
  margin-bottom: 14px;
}
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--ivory); }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.section-head .eyebrow { display: inline-flex; flex-direction: column; align-items: center; gap: 8px; }
.section-head .eyebrow::after { content: '\2726'; font-size: 9px; line-height: 1; }
.section-head.left .eyebrow { display: inline-block; }
.section-head.left .eyebrow::after { display: none; }
.section-sub { font-size: 16px; }

/* Consistent warm photographic grade across all real photos */
.vehicle-media img,
.about-media img,
.gallery-item img,
.hero-bg {
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
}

/* ---------- Stats ---------- */
.stats {
  background: var(--white);
  padding: 44px 0 56px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.stat-item { text-align: left; border-left: 2px solid var(--border); padding-left: 18px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--bronze-dark);
  display: block;
  margin-bottom: 4px;
}
.stat-label { font-weight: 600; color: var(--charcoal); font-size: 14.5px; display: block; margin-bottom: 3px; }
.stat-desc { font-size: 12.5px; color: var(--charcoal-faint); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-media-wrap { position: relative; }
.about-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.about-media img { width: 100%; height: 100%; object-fit: contain; background: var(--white); }
.about-badge {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 148px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  padding: 12px;
}
.about-badge img { width: 100%; display: block; }
.check-list { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bronze-wash);
  border: 1px solid var(--bronze-light);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 6.5px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--bronze-dark);
  border-bottom: 1.5px solid var(--bronze-dark);
  transform: rotate(-45deg);
}

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bronze-pale);
}
.service-card:active { transform: translateY(-1px) scale(0.99); }
.service-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--bronze-wash);
  color: var(--bronze-dark);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--bronze-pale);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bronze-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1.5px solid var(--bronze-pale);
  box-shadow: inset 0 0 0 4px var(--ivory-deep), 0 6px 16px rgba(169, 121, 60, 0.14);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.service-card:hover .service-icon { transform: translateY(-2px); box-shadow: inset 0 0 0 4px var(--ivory-deep), 0 10px 22px rgba(169, 121, 60, 0.22); }
.service-icon svg { width: 25px; height: 25px; }
.service-card h3 { font-size: 18px; margin-bottom: 8px; }
.service-card p { font-size: 14px; margin-bottom: 18px; flex: 1; }
.service-card .text-link { margin-top: auto; }

/* ---------- Fleet ---------- */
.fleet-head {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.vehicle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vehicle-media { aspect-ratio: 16 / 11; overflow: hidden; }
.vehicle-media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-body { padding: 20px 22px 22px; }
.vehicle-body h3 { font-size: 18px; margin-bottom: 12px; }
.vehicle-specs { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.vehicle-spec { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--charcoal-soft); }
.vehicle-spec svg { width: 15px; height: 15px; color: var(--bronze-dark); flex-shrink: 0; }
.vehicle-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.vehicle-amenities span {
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--charcoal-soft);
  border: 1px solid var(--border);
}

/* ---------- Gallery ---------- */
.gallery-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--bronze-pale) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--bronze-pale); border-radius: 999px; }
.gallery-item {
  flex: 0 0 300px;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cta { margin-top: 28px; text-align: center; }

/* ---------- Routes ---------- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.route-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.route-card:hover { border-color: var(--bronze-light); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.route-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  color: var(--bronze-dark);
  border: 1.5px solid var(--bronze-pale);
  box-shadow: inset 0 0 0 3px var(--bronze-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.route-icon svg { width: 19px; height: 19px; }
.route-body h3 { font-size: 14.5px; margin-bottom: 2px; }
.route-body p { font-size: 12.5px; margin: 0; }
.routes-cta { text-align: center; }

/* ---------- Why us (dark) ---------- */
.why-us-dark {
  position: relative;
  background: var(--deep);
  background-image:
    radial-gradient(circle at 90% 10%, rgba(169, 121, 60, 0.12), transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(169, 121, 60, 0.1), transparent 45%);
  padding: 96px 0;
}
.why-us-dark .eyebrow { color: var(--bronze-light); }
.why-us-dark .section-head h2 { color: var(--white); }
.why-us-sub { color: #b9b0a0; }
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 56px;
  max-width: 900px;
  margin: 0 auto;
}
.why-item {
  padding-top: 20px;
  border-top: 1px solid rgba(201, 155, 92, 0.25);
}
.why-item h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.why-item p { color: #b9b0a0; font-size: 14.5px; margin: 0; }

/* ---------- Booking form ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}
.booking-copy a { color: var(--bronze-dark); font-weight: 600; }
.booking-call-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px 10px 10px;
  margin-top: 8px;
}
.booking-call-chip .icon-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-call-chip .icon-circle svg { width: 17px; height: 17px; }
.booking-call-chip span { font-weight: 600; color: var(--charcoal); font-size: 14.5px; }
.booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 7px;
  color: var(--charcoal-faint);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--ivory);
  color: var(--charcoal);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px var(--bronze-wash);
}
.form-group textarea { resize: vertical; }
.booking-form-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.form-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 4px 2px;
}
.form-toggle-row .form-group-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--charcoal-faint);
}
.switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-track {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease;
}
.switch-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s ease;
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .switch-track { background: var(--bronze); }
.switch input:checked + .switch-track::before { transform: translateX(20px); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--bronze-pale);
  background:
    linear-gradient(var(--bronze-dark), var(--bronze-dark)) center / 12px 1.6px no-repeat,
    linear-gradient(var(--bronze-dark), var(--bronze-dark)) center / 1.6px 12px no-repeat;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item[open] summary::after {
  background: linear-gradient(var(--bronze-dark), var(--bronze-dark)) center / 12px 1.6px no-repeat;
}
.faq-item p {
  padding: 0 44px 22px 4px;
  color: var(--charcoal-soft);
  font-size: 15px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--bronze-light); }
.contact-card svg { width: 28px; height: 28px; color: var(--bronze-dark); margin-bottom: 12px; }
.contact-card p { margin: 0; font-weight: 600; color: var(--charcoal); overflow-wrap: break-word; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #c7c0b1; padding-top: 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand-logo img { height: 40px; border-radius: 6px; }
.footer-brand-logo strong { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); display: block; text-transform: none; }
.footer-brand-tagline { font-size: 10px; letter-spacing: 1.5px; color: var(--bronze-light); text-transform: uppercase; }
.site-footer p { color: #a49d8d; font-size: 13.5px; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 13.5px; color: #c7c0b1; }
.footer-col a:hover { color: var(--bronze-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--bronze-light); margin-top: 2px; flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.footer-social a:hover { background: var(--bronze); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: #8a8374;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #8a8374; }
.footer-bottom-links a:hover { color: var(--bronze-light); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  opacity: 0;
  transform: scale(0.7) translateY(10px);
  pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.whatsapp-fab.visible { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ---------- Mobile menu drawer ---------- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  max-height: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  overflow: hidden;
  transition: max-height .3s var(--ease);
  box-shadow: 0 4px 12px rgba(36, 33, 29, 0.08);
}
.mobile-menu[aria-expanded="true"] {
  max-height: calc(100vh - 68px);
}
.mobile-menu-link {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border-soft);
  transition: background .2s ease, color .2s ease;
}
.mobile-menu-link:hover {
  background: var(--ivory);
  color: var(--bronze-dark);
}
.mobile-menu-link:active {
  transform: scale(0.98);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .quote-bar { grid-template-columns: 1fr 1fr; }
  .quote-bar .qb-submit { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-media-wrap { order: -1; max-width: 480px; margin: 0 auto; }
  .fleet-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-actions .btn-primary, .header-actions .btn-dark { display: none; }
  .menu-toggle { display: flex; }
  .language-toggle { display: flex; }
  .header-inner { padding: 12px 20px; }
  .brand-logo { height: 42px; }
  .mobile-menu { display: block; }
}

@media (max-width: 700px) {
  .services-grid, .routes-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-strip { margin: 0 -24px; padding: 0 24px 10px; }
  .gallery-item { flex: 0 0 78%; height: 300px; }
  .booking-form-buttons { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .about-badge { width: 104px; right: -12px; bottom: -16px; padding: 9px; }
  .hero { padding: 88px 0 0; min-height: auto; }
  .hero-bg { background-position: 78% 30%; }
  .hero-inner { padding-bottom: 56px; }
  .hero-trust { gap: 16px 22px; }
  .quote-bar {
    grid-template-columns: 1fr;
    margin-top: -28px;
    padding: 20px;
    gap: 16px;
  }
  .section { padding: 56px 0; }
  .section-tight { padding: 44px 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .stat-item { padding-left: 10px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 13px; }
  .stat-desc { font-size: 11px; }
  .fleet-head { gap: 20px; }
  .vehicle-body { padding: 18px 16px 16px; }
  .vehicle-body h3 { font-size: 16px; margin-bottom: 10px; }
  .vehicle-specs { gap: 6px; margin-bottom: 12px; }
  .vehicle-spec { font-size: 12.5px; }
  .vehicle-amenities { gap: 6px; margin-bottom: 14px; }
  .vehicle-amenities span { font-size: 10.5px; padding: 3px 8px; }
  .why-us-dark { padding: 64px 0; }
  .why-list { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .booking-form { padding: 22px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .btn-flat, .btn-block-mobile { width: 100%; }
  .hero-cta .btn { width: 100%; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
