/*
Theme Name: Taxi Perth Theme
Theme URI: https://taxiperth.com.au
Author: MH Tech Solutions
Author URI: https://mhtechsol.com
Description: Custom theme for Taxi Perth — Fixed Fares, No Surge. Perth's independent taxi service.
Version: 1.0.0
License: Private
Text Domain: taxiperth
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Palette — Yellow / Grey / White */
  --midnight:     #1A1A1A;   /* dark grey — primary dark bg */
  --midnight2:    #2D2D2D;   /* dark grey 2 — card on dark */
  --earth:        #4A4A4A;   /* medium grey — formerly rust accent */
  --sun:          #FFCA25;   /* yellow — primary brand accent */
  --sun-light:    #FFD452;   /* lighter yellow — hover */
  --sand:         #F0F0F0;   /* light grey — soft section bg */
  --cream:        #F8F8F8;   /* near-white — page bg */
  --white:        #FFFFFF;
  --text:         #1A1A1A;   /* dark grey text */
  --muted:        #6B6B6B;   /* medium grey text */
  --border:       #E0E0E0;   /* light grey border */
  --border-dark:  rgba(255,255,255,0.10);

  /* Functional */
  --green:  #22c55e;
  --red:    #ef4444;
  --blue:   #3b82f6;

  /* Spacing */
  --section-py:     80px;
  --section-py-sm:  48px;
  --container:      1200px;
  --gutter:         40px;

  /* Radius */
  --radius:     10px;
  --radius-sm:  6px;
  --radius-btn: 50px;
  --radius-lg:  18px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);
  --shadow-booking: 0 20px 60px rgba(0,0,0,0.25);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Figtree', 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sun); text-decoration: none; }
a:hover { color: var(--earth); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display, h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Oswald', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(44px, 7vw, 80px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-size: clamp(22px, 3vw, 30px); }
h4 { font-size: 20px; }

.eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--sun);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-title { margin-bottom: 12px; }
.section-sub {
  font-size: 17px;
  color: var(--midnight);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.section { padding: var(--section-py) 0; }
.section-sm { padding: var(--section-py-sm) 0; }

.section-dark  { background: var(--midnight); color: var(--white); }
.section-dark2 { background: var(--midnight2); color: var(--white); }
.section-sand  { background: var(--sand); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-dark .section-sub,
.section-dark2 .section-sub { color: rgba(255,255,255,0.55); }
.section-dark .eyebrow,
.section-dark2 .eyebrow { color: var(--midnight); background: var(--sun); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ============================================================
   HORIZON DIVIDER — signature brand element
   ============================================================ */
.horizon-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--midnight), var(--sun) 55%, transparent 85%);
  border: none;
  margin: 0;
}

.horizon-divider-centered {
  height: 3px;
  width: 120px;
  background: linear-gradient(90deg, var(--midnight), var(--sun));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--sun);
  color: var(--midnight);
  border-color: var(--sun);
}
.btn-primary:hover {
  background: var(--sun-light);
  border-color: var(--sun-light);
  color: var(--midnight);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,202,37,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.btn-outline-sun {
  background: transparent;
  color: var(--sun);
  border-color: var(--sun);
}
.btn-outline-sun:hover {
  background: var(--sun);
  color: var(--midnight);
}

.btn-dark {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}
.btn-dark:hover {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.btn-call {
  background: var(--midnight);
  color: var(--white);
  border-color: #fff;
}
.btn-call:hover {
  background: var(--earth);
  border-color: var(--earth);
  color: var(--white);
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--midnight);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-img {
  height: 76px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header-logo-img { height: 52px; }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.15s;
}
.header-phone:hover { color: var(--sun); }
.header-phone svg { flex-shrink: 0; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px; border-radius: 6px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--sun); background: rgba(255,255,255,0.06); }
.nav-link .nav-chevron { transition: transform 0.2s; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--midnight); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 8px; min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1000;
}
.nav-item.open .nav-dropdown,
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: rgba(255,202,37,0.1); color: var(--sun); }

/* Header CTA buttons */
.btn-quote {
  padding: 8px 18px; border-radius: 50px;
  font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
  background: transparent; text-decoration: none; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.btn-quote:hover { border-color: var(--sun); color: var(--sun); }
.btn-book-nav {
  padding: 9px 18px; border-radius: 50px;
  font-family: 'Figtree', sans-serif; font-size: 13px; font-weight: 700;
  background: var(--sun); color: var(--midnight); text-decoration: none;
  white-space: nowrap; transition: background 0.2s;
}
.btn-book-nav:hover { background: #FFD452; }

/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .btn-quote { display: none; }
  .btn-book-nav { display: none; }
  .header-phone { display: none; }
}

/* Mobile-only Call button — hidden on desktop */
.btn-call-mobile { display: none; }
@media (max-width: 1024px) {
  .btn-call-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sun);
    color: var(--midnight);
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
  }
  .btn-call-mobile svg {
    display: block;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .btn-call-mobile:hover { background: #FFD452; }
}

/* Drawer CTA buttons */
.drawer-cta-btns {
  display: flex;
  gap: 10px;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 16px;
}
.drawer-btn-book {
  flex: 1;
  background: var(--sun);
  color: var(--midnight);
  text-align: center;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-btn-book:hover { background: #FFD452; }
.drawer-btn-call {
  flex: 1;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-align: center;
  padding: 13px 16px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
}
.drawer-btn-call:hover { background: rgba(255,255,255,0.14); }

.header-actions { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  background: var(--midnight2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px var(--gutter);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 15px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav-cta {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   MOBILE DRAWER (slide-in from right)
   ============================================================ */

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 499;
}
.mobile-overlay.open { display: block; }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100vh;
  z-index: 500;
  background: var(--midnight2);
  border-left: 1px solid var(--border-dark);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-drawer.open { transform: translateX(0); }

/* Mobile drawer accordion */
.drawer-link.has-sub { display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.drawer-sub-chevron { transition: transform 0.2s; flex-shrink: 0; opacity: 0.6; }
.drawer-link.has-sub.open .drawer-sub-chevron { transform: rotate(180deg); }
.drawer-submenu { display: none; padding-left: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.drawer-submenu.open { display: block; }
.drawer-submenu a { display: block; padding: 10px 0; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.04); transition: color 0.15s; }
.drawer-submenu a:last-child { border-bottom: none; }
.drawer-submenu a:hover { color: var(--sun); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.drawer-logo img { display: block; }

.drawer-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.drawer-close:hover { opacity: 1; }

.drawer-body {
  flex: 1;
  padding: 4px 20px 20px;
  overflow-y: auto;
}

.drawer-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sun);
  margin: 20px 0 8px;
  font-weight: 700;
}

.drawer-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.15s;
}
.drawer-link:hover { color: var(--sun); }
.drawer-body > .drawer-link:last-of-type { border-bottom: none; }

.drawer-phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.drawer-phone:hover { color: var(--sun); }

.drawer-email {
  font-size: 13px;
  opacity: 0.7;
}

.drawer-ctas {
  display: flex;
  gap: 10px;
  padding: 16px 20px 24px;
  border-top: 1px solid var(--border-dark);
  flex-shrink: 0;
}
.drawer-ctas .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--midnight);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(139,58,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth), var(--sun) 55%, transparent 85%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  background: rgba(255,202,37,0.12);
  border: 1px solid rgba(255,202,37,0.25);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--sun);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(54px, 8vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--sun);
  white-space: nowrap;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-map-wrap {
  margin-top: 24px;
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 220px;
  position: relative;
  background: #e8e8e8;
  border: 1px solid rgba(0,0,0,0.08);
}
#hero-map {
  width: 100%;
  height: 100%;
}
.hero-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(0,0,0,0.35);
  font-size: 13px;
  pointer-events: none;
  transition: opacity 0.3s;
}
.hero-map-placeholder.hidden { opacity: 0; }
@media (max-width: 1024px) {
  .hero-map-wrap { display: none; }
}

.hero-ctas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-bottom: 14px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}
.hero-trust-item svg { color: var(--sun); flex-shrink: 0; width: 18px; height: 18px; }

/* Right column wrapper — form + trust below it */
.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Trust items below form: dark text on cream/transparent bg */
.hero-right-col .hero-trust {
  justify-content: center;
  gap: 16px;
}
.hero-right-col .hero-trust-item {
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}

/* Booking card */
.hero-booking-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-booking);
  position: sticky;
  top: 84px;
}
.booking-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--midnight);
  margin-bottom: 4px;
}
.booking-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--sand);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 24px;
  border-right: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--earth); flex-shrink: 0; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}

.service-card {
  background: var(--midnight2);
  padding: 32px 28px;
  position: relative;
  transition: background 0.2s;
  text-decoration: none;
  display: block;
}
.service-card:hover { background: #EBEBEB; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--earth), var(--sun));
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(255,202,37,0.12);
  border: 1px solid rgba(255,202,37,0.20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--sun);
  flex-shrink: 0;
}
.service-card h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(255,255,255,0.50);
  font-size: 14px;
  line-height: 1.6;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 700;
  margin-top: 14px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 1px;
  background: linear-gradient(90deg, var(--earth), var(--sun));
  pointer-events: none;
}
.how-step { text-align: center; }
.how-number {
  width: 64px; height: 64px;
  background: var(--sun);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--midnight);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.how-step h3 { font-size: 20px; margin-bottom: 10px; }
.how-step p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============================================================
   SUBURB CHIPS
   ============================================================ */
.suburb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 4px 0;
}
.suburb-chip {
  display: inline-block;
  padding: 7px 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--midnight);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
  cursor: default;
}
.suburb-chip:hover {
  background: var(--sun);
  color: var(--midnight);
  border-color: var(--sun);
}

/* ============================================================
   AREA CARDS
   ============================================================ */
.area-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.area-card:hover {
  border-color: var(--sun);
  box-shadow: 0 6px 20px rgba(255,202,37,0.14);
}
.area-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.area-card-icon { color: var(--sun); flex-shrink: 0; }
.area-card-head h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--midnight);
  margin: 0;
  line-height: 1.3;
}
.area-suburb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-suburb-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.area-suburb-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.area-suburb-code {
  font-size: 11px;
  font-weight: 700;
  color: var(--midnight);
  background: rgba(255,202,37,0.18);
  border-radius: 4px;
  padding: 2px 7px;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .area-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .area-cards-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FLEET CARDS
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.fleet-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .fleet-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fleet-grid-4 { grid-template-columns: 1fr; }
}
.fleet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fleet-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.fleet-icon { font-size: 48px; margin-bottom: 16px; }
.fleet-card h3 { font-size: 22px; margin-bottom: 8px; }
.fleet-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.fleet-specs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.fleet-spec {
  background: var(--sand);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--earth);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  background: var(--midnight2);
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--sun);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: #F59E0B; font-size: 14px; margin-bottom: 12px; }
.review-text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.review-date { font-size: 12px; color: var(--muted); }
.review-google {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.70);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-banner .btn-primary {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--midnight);
}
.cta-banner .btn-primary:hover {
  background: var(--sun-light);
  border-color: var(--sun-light);
  color: var(--midnight);
  box-shadow: 0 6px 20px rgba(255,202,37,0.4);
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--midnight);
  color: var(--white);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--sun); }
.footer-logo-link { display: inline-block; text-decoration: none; }
.footer-logo-img { height: 60px; width: auto; display: block; object-fit: contain; }
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
/* Fleet vehicle images */
.fleet-v2-vehicle-img {
  width: 100%;
  max-width: 220px;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}
.footer-logo-tag { font-size: 12px; color: var(--sun); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 4px 0;
}
.footer-contact a:hover { color: var(--sun); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--sun); }

/* ============================================================
   FARE TABLE
   ============================================================ */
.fare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fare-table th {
  background: var(--midnight);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.fare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.fare-table tr:last-child td { border-bottom: none; }
.fare-table tr:nth-child(even) td { background: var(--sand); }
.fare-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--earth);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--midnight);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(139,58,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth), var(--sun) 55%, transparent 85%);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 560px; position: relative; z-index: 1; }
.page-hero .container { position: relative; z-index: 1; }

/* ============================================================
   SERVICE PAGE HERO — 2-column (text left, form right)
   ============================================================ */
.sp-hero {
  background: var(--midnight);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(139,58,28,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.sp-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--earth), var(--sun) 55%, transparent 85%);
}
.sp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
}
.sp-hero-copy h1 {
  color: var(--white);
  font-size: clamp(54px, 8vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.sp-hero-copy .sp-hero-sub { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.65; margin-bottom: 28px; }
.sp-hero-meta { display: none; }
.sp-hero-meta-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.55); }
.sp-hero-meta-item svg { color: var(--sun); flex-shrink: 0; }
.sp-hero-form .bw-card { box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.bw-route-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  height: 220px;
  position: relative;
  background: #e8e8e8;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 16px;
}
#bw-map { width: 100%; height: 100%; }
@media (max-width: 840px) { .bw-route-map-wrap { height: 180px; } }
@media (max-width: 1060px) { .sp-hero-inner { grid-template-columns: 1fr 360px; gap: 40px; } }
@media (max-width: 840px) {
  .sp-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .sp-hero { padding: 40px 0 48px; }
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.4); }
.page-breadcrumb a:hover { color: var(--sun); }
.page-breadcrumb span { color: rgba(255,255,255,0.6); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { margin-top: 32px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--earth); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   FORMS (contact / booking)
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--sun);
  box-shadow: 0 0 0 3px rgba(255,202,37,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #15803d;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}
.form-error {
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.2);
  color: #dc2626;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  display: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-sun { background: rgba(255,202,37,0.12); color: var(--sun); border: 1px solid rgba(255,202,37,0.25); }
.badge-earth { background: rgba(139,58,28,0.10); color: var(--earth); border: 1px solid rgba(139,58,28,0.20); }
.badge-green { background: rgba(34,197,94,0.10); color: #15803d; border: 1px solid rgba(34,197,94,0.25); }

.icon-check { color: var(--green); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 24px; --section-py: 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-booking-card { position: static; max-width: 480px; }
  .hero { min-height: auto; padding: 48px 0 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --gutter: 20px; --section-py: 48px; --section-py-sm: 32px; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .header-nav { display: none; }
  .header-phone { display: none; }
  .nav-hamburger { display: flex; }
  /* Call Now pill — yellow on dark header so it pops */
  .header-actions .btn-call {
    background: var(--sun);
    color: var(--midnight);
    border-color: var(--sun);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
  }
  .header-actions .btn-call:hover {
    background: var(--sun-light);
    border-color: var(--sun-light);
    color: var(--midnight);
  }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-grid::before { display: none; }
  .fleet-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid, .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 0; flex-direction: column; align-items: flex-start; padding: 0 var(--gutter); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 10px 0; }
  .trust-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: row !important; flex-wrap: nowrap; gap: 8px; }
  .hero-ctas .btn { flex: 1; padding: 12px 16px; font-size: 14px; text-align: center; justify-content: center; white-space: nowrap; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

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

/* =========================================================
   STICKY MOBILE BOTTOM BAR
========================================================= */
.mobile-sticky-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: var(--midnight);
    border-top: 2px solid var(--sun);
    padding: 10px 16px;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.35);
  }
  .mobile-sticky-bar .msb-book {
    flex: 1;
    background: var(--sun);
    color: var(--midnight);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .mobile-sticky-bar .msb-call {
    flex: 1;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  /* Push page content up so sticky bar doesn't cover content */
  body { padding-bottom: 72px; }
}

/* =========================================================
   HERO TRUST — full-width strip below both columns
========================================================= */
.hero-bottom-trust {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-bottom-trust .hero-trust-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero-content-trust { display: none; }
@media (max-width: 900px) {
  .hero-content-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 16px;
  }
  .hero-content-trust .hero-trust-item {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
  }
}

/* =========================================================
   HERO BADGE — higher contrast on mobile
========================================================= */
@media (max-width: 768px) {
  .hero-eyebrow {
    background: rgba(255,202,37,0.12);
    border: 1px solid rgba(255,202,37,0.40);
    color: var(--sun);
  }
  .hero-eyebrow-dot { background: var(--sun); }
}

/* =========================================================
   BOOKING CARD — yellow header strip
   margin offsets match the parent card's padding (32px 28px for hero, 24px for widget)
========================================================= */
.booking-card-head {
  background: var(--sun);
  margin: -32px -28px 20px;
  padding: 14px 28px;
  border-radius: 12px 12px 0 0;
}
.booking-card-head h3 {
  color: var(--midnight);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 2px;
}
.booking-card-head p {
  color: rgba(0,0,0,0.55);
  font-size: 12px;
  margin: 0;
  font-weight: 500;
}

/* =========================================================
   DESKTOP HEADER — stronger CTAs
========================================================= */
@media (min-width: 769px) {
  .header-actions .btn-call {
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .header-phone { display: flex; align-items: center; gap: 6px; }
}

/* Google Places autocomplete dropdown */
.pac-container {
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  z-index: 99999;
}
.pac-item { padding: 10px 14px; cursor: pointer; }
.pac-item:hover, .pac-item-selected { background: var(--sand); }
.pac-item-query { font-weight: 600; color: var(--midnight); }
.pac-matched { color: var(--earth); }
.pac-logo::after { display: none; }

/* ============================================================
   WHY US FEATURES — homepage
   ============================================================ */
.why-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 52px;
  height: 52px;
  background: var(--sun);
  border: 1px solid var(--sun);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature-icon svg { color: var(--midnight); }
.why-feature h3 { font-size: 22px; margin-bottom: 8px; }
.why-feature p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* HOW-GRID 4-column override (safety rule) */
.how-grid { grid-template-columns: repeat(4, 1fr); }
.how-grid::before { left: calc(12.5% + 32px); right: calc(12.5% + 32px); }

@media (max-width: 900px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .why-features-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 600px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION COLOR SWAP OVERRIDES
   (Services → cream, How-it-works → dark, Suburbs → cream,
    Fleet → dark, Stats → cream, Why-features → dark)
   ============================================================ */

/* Service cards on cream section — switch to light card style */
.section-cream .services-grid {
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  gap: 16px;
}
.section-cream .service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.section-cream .service-card:hover {
  border-color: var(--sun);
  box-shadow: 0 8px 24px rgba(255,202,37,0.18);
  transform: translateY(-2px);
  background: var(--white);
}
.section-cream .service-card::after { display: none; }
.section-cream .service-card h3 { color: var(--midnight); }
.section-cream .service-card p  { color: var(--muted); }
.section-cream .service-card-link { color: var(--sun); font-weight: 700; }
.section-cream .service-icon {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--midnight);
}

/* How-it-works on dark section — white text */
.section-dark .how-step h3 { color: var(--white); }
.section-dark .how-step p  { color: rgba(255,255,255,0.55); }
.section-dark .how-grid::before { background: linear-gradient(90deg, var(--earth), var(--sun)); }
.section-dark .btn-primary { color: var(--midnight); }

/* Suburb chips on cream section */
.section-cream .suburb-chip {
  background: var(--sand);
  border-color: var(--border);
  color: var(--earth);
}
.section-cream .suburb-chip:hover {
  background: var(--sun);
  color: var(--midnight);
  border-color: var(--sun);
}

/* ============================================================
   SERVICE AREAS PAGE
   ============================================================ */
.sa-hero { padding-bottom: 48px; }
.sa-hero-sub { color: rgba(255,255,255,0.65); font-size: 17px; margin-top: 10px; margin-bottom: 28px; }

.sa-search-wrap {
  position: relative;
  max-width: 480px;
  margin-bottom: 28px;
}
.sa-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4); pointer-events: none;
}
.sa-search-input {
  width: 100%; padding: 13px 44px 13px 44px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; color: #fff; font-size: 15px;
  outline: none; transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.sa-search-input::placeholder { color: rgba(255,255,255,0.35); }
.sa-search-input:focus { border-color: var(--sun); background: rgba(255,255,255,0.12); }
.sa-search-clear {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,0.4); cursor: pointer; font-size: 14px;
  width: 22px; height: 22px; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1);
}
.sa-search-clear:hover { color: #fff; background: rgba(255,255,255,0.2); }

.sa-stat-row { display: flex; gap: 28px; flex-wrap: wrap; }
.sa-stat { display: flex; flex-direction: column; gap: 2px; }
.sa-stat strong { font-size: 22px; font-weight: 800; color: var(--sun); line-height: 1; }
.sa-stat span   { font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; }

.sa-section { padding-top: 48px; }

.sa-area-nav {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.sa-area-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1.5px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--text); background: var(--white);
  cursor: pointer; transition: all 0.15s;
}
.sa-area-btn:hover { border-color: var(--sun); color: var(--midnight); background: rgba(255,202,37,0.08); }
.sa-area-count {
  background: var(--sand); color: var(--muted);
  font-size: 11px; font-weight: 700;
  border-radius: 10px; padding: 1px 7px;
}
.sa-area-btn:hover .sa-area-count { background: var(--sun); color: var(--midnight); }

.sa-no-results {
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; text-align: center; padding: 60px 20px;
  color: var(--muted);
}
.sa-no-results p { font-size: 15px; }
.sa-no-results a { color: var(--sun); }

.sa-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sa-area-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 20px 18px 16px;
  display: flex; flex-direction: column; gap: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sa-area-card:hover { border-color: var(--sun); box-shadow: 0 6px 20px rgba(255,202,37,0.12); }
.sa-area-highlight { border-color: var(--sun) !important; box-shadow: 0 0 0 3px rgba(255,202,37,0.25) !important; }

.sa-area-card-head {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 1.5px solid var(--sand);
}
.sa-area-card-head svg { color: var(--sun); flex-shrink: 0; }
.sa-area-card-head h2 {
  flex: 1; font-size: 13px; font-weight: 700;
  color: var(--midnight); margin: 0; line-height: 1.3;
}
.sa-area-badge {
  font-size: 11px; font-weight: 700; color: var(--midnight);
  background: rgba(255,202,37,0.2); border-radius: 10px; padding: 2px 8px;
  flex-shrink: 0;
}

.sa-suburb-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.sa-suburb-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid var(--sand);
}
.sa-suburb-row:last-child { border-bottom: none; }
.sa-suburb-name { font-size: 13px; font-weight: 500; color: var(--text); }
.sa-suburb-postcode {
  font-size: 11px; font-weight: 700; color: var(--earth);
  background: var(--sand); border-radius: 4px; padding: 2px 6px;
  flex-shrink: 0; letter-spacing: 0.02em;
}

.sa-area-book-btn {
  display: block; margin-top: 14px; padding: 9px 14px;
  background: var(--sun); color: var(--midnight);
  font-size: 13px; font-weight: 700; border-radius: 8px;
  text-decoration: none; text-align: center;
  transition: background 0.15s;
}
.sa-area-book-btn:hover { background: #f5bc10; }

.sa-cta { margin-top: 48px; }
.sa-cta-inner {
  background: var(--midnight); border-radius: 18px; padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.sa-cta-text h3 { color: var(--white); font-size: 26px; margin: 6px 0 8px; }
.sa-cta-text p  { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0; max-width: 360px; }
.sa-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .sa-areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sa-areas-grid { grid-template-columns: 1fr; }
  .sa-cta-inner { padding: 28px 24px; }
  .sa-cta-text h3 { font-size: 20px; }
}

/* Fleet section on dark — white card style stays, add image styles */
.fleet-card-linked { text-decoration: none; display: block; }
.fleet-card-img-wrap {
  border-radius: calc(var(--radius-lg) - 4px) calc(var(--radius-lg) - 4px) 0 0;
  overflow: hidden;
  margin: -28px -24px 20px;
  background: var(--sand);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
}
.fleet-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.section-dark .fleet-card h3 { color: var(--text); }

/* Stats on cream section */
.section-cream .stat-item {
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.section-cream .stat-label { color: var(--muted); }

/* Why-features on dark section — white text */
.section-dark .why-feature h3 { color: var(--white); }
.section-dark .why-feature p  { color: rgba(255,255,255,0.55); }
.section-dark .why-feature-icon {
  background: rgba(255,202,37,0.10);
  border-color: rgba(255,202,37,0.20);
}

/* ============================================================
   MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {
  /* Reduce gap above booking form on mobile */
  .hero-inner { padding-top: 0; gap: 24px; }
  .hero-booking-card { margin-top: 0; }

  /* CTA banner buttons inline */
  .cta-banner-btns { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .cta-banner-btns .btn { flex: 1; min-width: 140px; text-align: center; justify-content: center; }

  /* Suburb chips — allow horizontal scroll */
  .suburb-chips { flex-wrap: wrap; }

  /* Footer text center */
  .footer-bottom { text-align: center; }
  .footer-bottom-inner { flex-direction: column; align-items: center; gap: 8px; }
}

/* ============================================================
   SERVICE PAGE — RESPONSIVE
   ============================================================ */

/* Utility: 2-col grid that collapses to 1 col on mobile */
.sp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  /* H1 on service pages — match homepage hero scale on mobile */
  .sp-hero-copy h1 { font-size: 48px; line-height: 1.0; }
  .sp-hero-sub { font-size: 15px !important; }
  /* Hide route map on mobile */
  .bw-route-map-wrap { display: none !important; }

  /* Booking widget card padding */
  .bw-card { padding: 24px 18px !important; }

  /* 2-col utility → single column */
  .sp-two-col { grid-template-columns: 1fr; gap: 24px; }

  /* Fare table — horizontal scroll if needed */
  .fare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Section padding reduction on service pages */
  .sp-hero { padding: 32px 0 40px; }

  /* Booking widget inside hero — full width */
  .sp-hero-form { width: 100%; }

  /* Content section inline grids — force single column */
  .sp-content-cols { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* Feature card grids on service pages — 1 column */
  .sp-features { grid-template-columns: 1fr !important; }

  /* Trust items below hero — center aligned */
  .hero-trust-item { justify-content: center; }
  .hero-bottom-trust { justify-content: center; }
}
