/*
Theme Name: Silver Taxi Theme
Theme URI: https://silver-taximelbourne.com.au
Author: MH Tech Solutions
Author URI: https://mhtechsol.com
Description: Premium custom WordPress theme for Silver Taxi Melbourne — navy/silver brand, Raleway + Source Sans 3, glassmorphism fleet cards, diagonal section cuts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
License: Private
Text Domain: silver-taxi-theme
*/

/* ============================================================
   DESIGN SYSTEM — CSS VARIABLES
   ============================================================ */
:root {
  /* Brand */
  --navy:          #1A1A1A;
  --navy2:         #222222;
  --navy3:         #2C2C2C;
  --silver:        #D0D0D0;
  --silver-light:  #F0F0F0;
  --silver-dark:   #999999;
  --cyan:          #F8B41C;
  --cyan-dark:     #D99A10;
  --cyan-light:    #FFF0E0;
  --gold-accent:   #F8B41C;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #F8F8F8;
  --light-bg:      #F2F2F2;
  --border:        rgba(255,255,255,0.12);
  --border-light:  rgba(255,255,255,0.07);
  --text-dark:     #1A1A1A;
  --text-body:     #333333;
  --text-muted:    #666666;
  --text-light:    #999999;

  /* Typography */
  --font-heading:  'Raleway', sans-serif;
  --font-body:     'Source Sans 3', sans-serif;

  /* Spacing */
  --section-py:    90px;
  --container:     1200px;
  --radius:        12px;
  --radius-sm:     6px;
  --radius-lg:     20px;
  --radius-pill:   100px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(26,26,26,0.08);
  --shadow-md:     0 8px 32px rgba(26,26,26,0.14);
  --shadow-lg:     0 20px 60px rgba(26,26,26,0.22);
  --shadow-glow:   0 0 40px rgba(248,180,28,0.3);

  /* Transitions */
  --trans:         all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-py) 0; }
.section-dark { background: var(--navy); color: var(--silver-light); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-mid { background: var(--navy2); color: var(--silver-light); }
.section-mid h1, .section-mid h2, .section-mid h3 { color: var(--white); }
.section-light { background: var(--light-bg); }
.section-white { background: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  color: var(--white);
  border-color: var(--cyan);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, #C99200 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(248,180,28,0.45);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn-silver {
  background: linear-gradient(135deg, var(--silver-light) 0%, var(--silver) 100%);
  color: var(--navy);
  border-color: var(--silver);
}
.btn-silver:hover {
  background: linear-gradient(135deg, var(--white) 0%, var(--silver-light) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--navy);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
}
.section-label-dark {
  color: var(--navy);
}
.section-label-dark::before {
  background: var(--navy);
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}
#site-header.scrolled {
  background: rgba(26, 26, 26, 0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-img {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.logo-text { line-height: 1; }
.logo-text .logo-main {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text .logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a,
.main-nav > li.current-menu-parent > a {
  color: var(--cyan);
  background: rgba(248,180,28,0.08);
}
.main-nav > li > a .arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--trans);
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
.main-nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 400;
}
.dropdown li a:hover { background: rgba(248,180,28,0.1); color: var(--cyan); }
.dropdown li a .drop-icon { font-size: 1rem; width: 20px; text-align: center; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.header-phone .ph-icon {
  width: 32px;
  height: 32px;
  background: rgba(248,180,28,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.header-phone:hover { color: var(--cyan); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--trans);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav .mobile-sub { padding-left: 16px; }
.mobile-nav .mobile-sub a { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.mobile-nav .mobile-sub a:hover { color: var(--cyan); }
.mobile-book-btn { margin-top: 16px; width: 100%; text-align: center; }

/* ============================================================
   HERO — HOMEPAGE (unique full-viewport design)
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(248,180,28,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,26,26,0.4) 0%, transparent 60%),
    linear-gradient(160deg, #111111 0%, #1A1A1A 50%, #0D0D0D 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248,180,28,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,180,28,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: var(--section-py) 0 60px;
}
.hero-left { max-width: 600px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,180,28,0.12);
  border: 1px solid rgba(248,180,28,0.25);
  color: var(--cyan);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--silver-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--silver-dark);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Hero right — booking card */
.hero-booking-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
}
.booking-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-card-title .card-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-form-field {
  margin-bottom: 16px;
}
.booking-form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--silver-dark);
  margin-bottom: 8px;
}
.booking-form-field input,
.booking-form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--trans);
  outline: none;
}
.booking-form-field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-form-field input:focus,
.booking-form-field select:focus {
  border-color: var(--cyan);
  background: rgba(248,180,28,0.05);
}
.booking-form-field select option { background: var(--navy2); color: var(--white); }
.booking-divider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.booking-btn-full { width: 100%; justify-content: center; }
.booking-phone-alt {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--silver-dark);
}
.booking-phone-alt a { color: var(--cyan); font-weight: 600; }

/* Diagonal cut after hero */
.hero-diagonal {
  position: relative;
  height: 80px;
  background: var(--navy);
  overflow: hidden;
}
.hero-diagonal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: var(--white);
  clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  padding: 32px 0;
  border-bottom: 1px solid var(--silver-light);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-text .trust-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1;
}
.trust-text .trust-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   SERVICES SECTION (alternating horizontal layout)
   ============================================================ */
.services-intro { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.services-intro p { color: var(--text-muted); font-size: 1.05rem; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-row:last-child { margin-bottom: 0; }
.service-row-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.service-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row:hover .service-row-img img { transform: scale(1.04); }
.service-row-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.5) 0%, transparent 60%);
}
.service-row-content {
  background: var(--white);
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row.reverse .service-row-img { order: 2; }
.service-row.reverse .service-row-content { order: 1; background: var(--off-white); }
.service-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.service-icon-badge .icon-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
}
.service-row-content h3 { margin-bottom: 12px; }
.service-row-content p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 2px;
  transition: var(--trans);
}
.service-link:hover { color: var(--cyan); gap: 12px; }
.service-link .arrow { font-size: 0.85rem; }

/* ============================================================
   FLEET SECTION — Glassmorphism Cards
   ============================================================ */
.fleet-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 100%);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.fleet-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248,180,28,0.06) 0%, transparent 60%);
}
.fleet-header { text-align: center; margin-bottom: 56px; }
.fleet-header p { color: var(--silver-dark); max-width: 560px; margin: 0 auto; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fleet-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  backdrop-filter: blur(10px);
}
.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248,180,28,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(248,180,28,0.08);
}
.fleet-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-card-img .fleet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(248,180,28,0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.fleet-card-body { padding: 28px; }
.fleet-card-body h3 { color: var(--white); margin-bottom: 8px; font-size: 1.2rem; }
.fleet-card-body .fleet-capacity {
  font-size: 0.82rem;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-weight: 600;
}
.fleet-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.fleet-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
}
.fleet-features li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.fleet-card-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 28px;
}

/* ============================================================
   WHY CHOOSE US — Stats + Features
   ============================================================ */
.why-section { background: var(--light-bg); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { margin-bottom: 20px; }
.why-left .lead { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature .feat-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: 2px solid var(--silver-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--trans);
}
.why-feature:hover .feat-icon {
  border-color: var(--cyan);
  background: var(--navy);
}
.why-feature .feat-body h4 { margin-bottom: 4px; font-size: 1rem; }
.why-feature .feat-body p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  border: 2px solid transparent;
}
.stat-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card:nth-child(2) { margin-top: 24px; }
.stat-card:nth-child(4) { margin-top: 24px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .stat-accent { color: var(--cyan); }
.stat-desc { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background: var(--white); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header p { color: var(--text-muted); max-width: 560px; margin: 12px auto 0; }
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--silver) 100%);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border: 3px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cyan);
  margin: 0 auto 20px;
  transition: var(--trans);
}
.step-item:hover .step-num {
  background: var(--cyan);
  color: var(--navy);
  transform: scale(1.1);
}
.step-item h4 { margin-bottom: 8px; font-size: 1rem; }
.step-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section { background: var(--navy); padding: var(--section-py) 0; }
.areas-header { text-align: center; margin-bottom: 56px; }
.areas-header h2 { color: var(--white); }
.areas-header p { color: var(--silver-dark); margin-top: 12px; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  transition: var(--trans);
  cursor: pointer;
}
.area-chip:hover {
  background: rgba(248,180,28,0.1);
  border-color: rgba(248,180,28,0.3);
  color: var(--cyan);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header p { color: var(--text-muted); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver-light);
  transition: var(--trans);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--silver-light);
  line-height: 1;
}
.stars { color: #F5A623; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.author-info .location { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 40%, rgba(26,26,26,0.95) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248,180,28,0.1) 0%, transparent 70%);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: var(--silver-dark); margin: 0; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; align-items: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-main { color: var(--white); font-size: 1.2rem; font-family: var(--font-heading); font-weight: 800; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--silver-dark);
  transition: var(--trans);
}
.social-btn:hover { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--cyan); padding-left: 4px; }
.footer-col ul li a::before { content: '→'; font-size: 0.75rem; opacity: 0; transition: var(--trans); }
.footer-col ul li a:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .fc-icon {
  width: 32px;
  height: 32px;
  background: rgba(248,180,28,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact-item .fc-text { font-size: 0.85rem; }
.footer-contact-item .fc-text a { color: rgba(255,255,255,0.7); }
.footer-contact-item .fc-text a:hover { color: var(--cyan); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* ============================================================
   INNER PAGE HERO (for service/about pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(248,180,28,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248,180,28,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { position: relative; max-width: 800px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--silver-dark); font-size: 1.1rem; margin: 0; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--silver-dark);
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   GENERIC PAGE CONTENT
   ============================================================ */
.page-content {
  padding: var(--section-py) 0;
}
.page-content h2 { margin-bottom: 16px; margin-top: 40px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { margin-bottom: 12px; margin-top: 32px; }
.page-content p { color: var(--text-body); margin-bottom: 16px; }
.page-content ul { margin-bottom: 20px; padding-left: 0; }
.page-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.page-content ul li::before {
  content: '✦';
  color: var(--cyan);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.content-sidebar-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.sidebar-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--silver-light);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 20px; }
.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--trans);
}
.sidebar-phone:hover { background: var(--navy3); color: var(--white); }
.sidebar-phone .ph-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
}
.sidebar-phone .ph-label { font-size: 0.75rem; color: var(--cyan); }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-body);
  border: 1px solid var(--silver-light);
  transition: var(--trans);
}
.sidebar-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.sidebar-links a .link-arrow { color: var(--cyan); }

/* ============================================================
   FEATURES GRID (for service pages)
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--trans);
}
.feature-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card .fc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-card h4 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { margin-bottom: 28px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--silver-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--trans);
  outline: none;
  background: var(--off-white);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(248,180,28,0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { padding-top: 16px; }
.contact-info h3 { margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-item .ci-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item .ci-text .ci-label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item .ci-text .ci-val { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.contact-info-item .ci-text .ci-val a { color: var(--navy); }
.contact-info-item .ci-text .ci-val a:hover { color: var(--cyan); }

/* ============================================================
   SUBURB PAGE
   ============================================================ */
.suburb-hero-extras { margin-top: 32px; display: flex; gap: 20px; flex-wrap: wrap; }
.suburb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(248,180,28,0.12);
  border: 1px solid rgba(248,180,28,0.25);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-booking-card { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-sidebar-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .service-row { grid-template-columns: 1fr; }
  .service-row.reverse .service-row-img { order: 0; }
  .service-row.reverse .service-row-content { order: 0; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-track::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .booking-divider { grid-template-columns: 1fr; }
  .steps-track { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .stat-card:nth-child(2), .stat-card:nth-child(4) { margin-top: 0; }
}
