/*
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 */
  --midnight:     #170E08;
  --midnight2:    #1F140C;
  --earth:        #8B3A1C;
  --sun:          #E07525;
  --sun-light:    #F0913A;
  --sand:         #F5E6CF;
  --cream:        #FAF5ED;
  --white:        #FFFFFF;
  --text:         #1A1008;
  --muted:        #7A6658;
  --border:       #E8D8C4;
  --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(23,14,8,0.10);
  --shadow-lg:   0 12px 48px rgba(23,14,8,0.18);
  --shadow-booking: 0 20px 60px rgba(23,14,8,0.25);
}

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

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

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;
}

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(--sun);
  margin-bottom: 14px;
  display: block;
}

.section-title { margin-bottom: 12px; }
.section-sub {
  font-size: 17px;
  color: var(--muted);
  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(--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(--earth), var(--sun) 55%, transparent 85%);
  border: none;
  margin: 0;
}

.horizon-divider-centered {
  height: 3px;
  width: 120px;
  background: linear-gradient(90deg, var(--earth), 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: 2px 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(224,117,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(--earth);
  color: var(--white);
  border-color: var(--earth);
}
.btn-call:hover {
  background: #A04520;
  border-color: #A04520;
  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: 68px;
  gap: 16px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo-img {
  height: 70px;
  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: 6px;
}
.header-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}
.header-nav a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.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;
}

/* ============================================================
   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: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,117,37,0.12);
  border: 1px solid rgba(224,117,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);
}

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

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}
.hero-trust-item svg { color: var(--sun); flex-shrink: 0; }

/* 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: #261A0F; }
.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: 44px; height: 44px;
  background: rgba(224,117,37,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.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(3, 1fr);
  gap: 40px;
  margin-top: 52px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(33.33% - 30px);
  right: calc(33.33% - 30px);
  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-strip { overflow-x: auto; padding-bottom: 4px; }
.suburb-chips {
  display: flex;
  gap: 8px;
  padding: 4px 2px;
  white-space: nowrap;
}
.suburb-chip {
  display: inline-block;
  padding: 7px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.suburb-chip:hover {
  background: var(--sun);
  color: var(--midnight);
  border-color: var(--sun);
}

/* ============================================================
   FLEET CARDS
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.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, var(--earth) 0%, var(--sun) 60%, #F0913A 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.80);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-banner .btn-primary {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}
.cta-banner .btn-primary:hover {
  background: #2A1A0E;
  border-color: #2A1A0E;
  box-shadow: 0 6px 20px rgba(23,14,8,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 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-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.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::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; }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 17px; max-width: 560px; }
.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(224,117,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(224,117,37,0.12); color: var(--sun); border: 1px solid rgba(224,117,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-text { display: none; }
  .nav-hamburger { display: flex; }
  .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: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}

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

/* 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; }
