/* =============================================================
   SYDNEY 24 HOUR TOWING — Landing Page Stylesheet
   File:    sydney-towing-style.css
   Version: 2.0 — Mobile-First Rebuild
   Fonts:   Oswald (headings) + DM Sans (body) via Google Fonts
   ============================================================= */


/* -------------------------------------------------------------
   1. CSS VARIABLES
   ------------------------------------------------------------- */
:root {
  --ink:        #08090b;
  --ink2:       #0f1116;
  --ink3:       #161b24;
  --ink4:       #1d2333;
  --edge:       #252c3d;
  --edge2:      #2e3650;
  --amber:      #f6a800;
  --amber-h:    #ffc233;
  --red:        #e8232a;
  --snow:       #f0f2f7;
  --fog:        #7c849a;
  --fog2:       #55607a;
  --r:          10px;
  --r2:         16px;
}


/* -------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--snow);
  overflow-x: hidden;
  padding-bottom: 70px; /* space for sticky mobile bar */
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.045'/%3E%3C/svg%3E");
  opacity: 0.5;
}


/* -------------------------------------------------------------
   3. KEYFRAME ANIMATIONS
   ------------------------------------------------------------- */
@keyframes fadein {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes sheen {
  0%   { left: -120%; }
  100% { left: 200%; }
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.2; }
}
@keyframes wave {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(1.8); }
}
@keyframes grow {
  from { width: 0 !important; }
}
@keyframes expand {
  0%   { width: 200px; height: 200px; opacity: .6; }
  100% { width: 900px; height: 900px; opacity: 0; }
}
@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* -------------------------------------------------------------
   4. SCROLL REVEAL
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}


/* -------------------------------------------------------------
   5. EMERGENCY TICKER
   ------------------------------------------------------------- */
.ticker {
  background: var(--red);
  padding: 9px 0;
  overflow: hidden;
  position: relative;
  z-index: 200;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: tick 28s linear infinite;
}
.ticker-inner span {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 36px;
  white-space: nowrap;
}
.ticker-inner span::after { content: '  ✦  '; opacity: .5; }


/* -------------------------------------------------------------
   6. SITE HEADER  (div.site-header — avoids WP header conflicts)
   ------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: rgba(8,9,11,.97);
  border-bottom: 1px solid var(--edge);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  gap: 12px;
}

.hdr-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.hdr-logo-fallback {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .04em;
  line-height: 1;
  display: none;
}
.hdr-logo-fallback small {
  display: block;
  font-size: 10px;
  color: var(--fog);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hdr-avail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fog);
  font-weight: 500;
  white-space: nowrap;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: pulse-green 1.8s ease infinite;
  flex-shrink: 0;
}

.hdr-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--r);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(246,168,0,.3);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.hdr-call::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  animation: sheen 2.8s ease-in-out infinite;
}
.hdr-call:hover {
  background: var(--amber-h);
  transform: translateY(-1px);
}
.hdr-call .lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
  line-height: 1;
  margin-bottom: 2px;
}
.hdr-call .num { font-size: 17px; line-height: 1; }


/* -------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 56px;
  gap: 48px;
  min-height: 90vh;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 85% 50%, rgba(246,168,0,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 5%  90%, rgba(232,35,42,.05) 0%, transparent 55%),
    linear-gradient(160deg,#08090b 0%,#0f1116 50%,#0d1018 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -80px; top: 0; bottom: 0; width: 52%;
  background: linear-gradient(160deg,transparent 0%,var(--ink2) 100%);
  clip-path: polygon(12% 0,100% 0,100% 100%,0% 100%);
  border-left: 1px solid var(--edge);
}
.hero-stripe {
  position: absolute;
  left: calc(50% - 40px); top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(180deg,transparent,rgba(246,168,0,.2) 30%,rgba(246,168,0,.2) 70%,transparent);
  z-index: 1;
}

.hero-content { position: relative; z-index: 2; padding: 20px 0; }

.emg-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,35,42,.12);
  border: 1px solid rgba(232,35,42,.35);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff6b6b;
  margin-bottom: 24px;
  animation: fadein .5s ease both;
}
.emg-chip .blink {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 6vw, 90px);
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.01em;
  animation: fadein .5s .08s ease both;
}
.hero h1 em { font-style: normal; color: var(--amber); display: block; }
.hero h1 .ghost {
  -webkit-text-stroke: 2px rgba(246,168,0,.45);
  color: transparent;
  display: block;
}

.hero-desc {
  font-size: 16px;
  color: var(--fog);
  line-height: 1.65;
  max-width: 480px;
  margin: 20px 0 0;
  animation: fadein .5s .16s ease both;
}
.hero-desc strong { color: var(--snow); }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  animation: fadein .5s .22s ease both;
}

/* PRIMARY call button — never wraps */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  padding: 18px 32px;
  border-radius: var(--r);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: .04em;
  transition: all .25s;
  box-shadow: 0 10px 40px rgba(246,168,0,.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  animation: sheen 2.4s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--amber-h);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 60px rgba(246,168,0,.55);
}
.btn-primary svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fog);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid var(--edge2);
  transition: all .2s;
  white-space: nowrap;
}
.btn-secondary:hover { color: var(--snow); border-color: var(--fog); }

.guarantee {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--fog);
  animation: fadein .5s .28s ease both;
  line-height: 1.5;
}
.guarantee svg   { color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.guarantee strong { color: var(--snow); }


/* -------------------------------------------------------------
   8. DISPATCH CARD (hero right column)
   ------------------------------------------------------------- */
.hero-card-wrap { position: relative; z-index: 2; }

.response-card {
  background: var(--ink2);
  border: 1px solid var(--edge);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6),0 0 0 1px rgba(246,168,0,.07);
  position: relative;
  animation: fadein .6s .18s ease both;
}
.response-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--red),var(--amber));
}

.dispatch-top {
  background: linear-gradient(135deg,#0e1018,#131824);
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--edge);
  position: relative;
  overflow: hidden;
}
.dispatch-top::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%,rgba(246,168,0,.07),transparent);
}

.dispatch-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--fog2); margin-bottom: 10px;
}
.dispatch-timer {
  font-family: 'Oswald', sans-serif;
  font-size: 64px; font-weight: 700;
  color: var(--amber); line-height: 1;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.dispatch-timer span {
  font-size: 24px; font-weight: 400;
  color: var(--fog); margin-left: 6px;
}
.dispatch-sub {
  font-size: 13px; color: var(--fog);
  margin-top: 6px; position: relative; z-index: 1;
}

.waveform {
  display: flex; align-items: center; gap: 3px;
  margin-top: 16px; position: relative; z-index: 1;
}
.waveform span {
  display: block; width: 3px; border-radius: 2px;
  background: var(--amber); opacity: .4;
  animation: wave 1.2s ease-in-out infinite;
}
.waveform span:nth-child(1)  { height: 8px;  animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 18px; animation-delay: .1s; }
.waveform span:nth-child(3)  { height: 28px; animation-delay: .2s; }
.waveform span:nth-child(4)  { height: 14px; animation-delay: .3s; }
.waveform span:nth-child(5)  { height: 34px; animation-delay: .4s; }
.waveform span:nth-child(6)  { height: 22px; animation-delay: .3s; }
.waveform span:nth-child(7)  { height: 16px; animation-delay: .2s; }
.waveform span:nth-child(8)  { height: 30px; animation-delay: .1s; }
.waveform span:nth-child(9)  { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(10) { height: 24px; animation-delay: .15s; }
.waveform .active { opacity: 1; }

.dispatch-body {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.d-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  background: var(--ink3); border: 1px solid var(--edge);
}
.d-row.highlight {
  background: rgba(246,168,0,.07);
  border-color: rgba(246,168,0,.25);
}
.d-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.d-icon.amber { background: rgba(246,168,0,.15); }
.d-icon.green { background: rgba(34,197,94,.12); }
.d-icon.red   { background: rgba(232,35,42,.12); }
.d-text strong { display: block; font-size: 13px; font-weight: 600; line-height: 1.2; }
.d-text span   { font-size: 11px; color: var(--fog); margin-top: 2px; display: block; }

.card-cta {
  margin: 4px 24px 24px;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber); color: var(--ink); text-decoration: none;
  border-radius: var(--r);
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 600; letter-spacing: .04em;
  padding: 16px; gap: 8px;
  transition: all .2s;
  box-shadow: 0 8px 28px rgba(246,168,0,.3);
  position: relative; overflow: hidden; white-space: nowrap;
}
.card-cta::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  animation: sheen 2s ease-in-out infinite;
}
.card-cta:hover { background: var(--amber-h); }


/* -------------------------------------------------------------
   9. TRUST STRIP — auto-scrolling marquee with fade edges
   ------------------------------------------------------------- */
.trust-strip-outer {
  background: var(--ink2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  overflow: hidden;
  position: relative;
  padding: 0;
}
/* Fade masks */
.trust-strip-outer::before,
.trust-strip-outer::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.trust-strip-outer::before {
  left: 0;
  background: linear-gradient(90deg,var(--ink2),transparent);
}
.trust-strip-outer::after {
  right: 0;
  background: linear-gradient(270deg,var(--ink2),transparent);
}

.trust-track {
  display: flex;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
  padding: 18px 0;
}
.trust-track:hover { animation-play-state: paused; }

.t-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 36px;
  border-right: 1px solid var(--edge);
  flex-shrink: 0; white-space: nowrap;
}
.t-item:last-child { border-right: none; }
.t-icon { font-size: 20px; }
.t-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--snow); }
.t-text span   { font-size: 11px; color: var(--fog); }


/* -------------------------------------------------------------
   10. SECTION TYPOGRAPHY
   ------------------------------------------------------------- */
.section-kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px; display: block;
}
.section-h {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700; line-height: .97;
  letter-spacing: -.01em; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--fog);
  line-height: 1.65; max-width: 540px;
}


/* -------------------------------------------------------------
   11. HOW IT WORKS
   ------------------------------------------------------------- */
.how {
  padding: 90px 56px; background: var(--ink);
  position: relative; overflow: hidden;
}
.how-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse,rgba(246,168,0,.04),transparent 70%);
  pointer-events: none;
}

.steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 60px;
  background: var(--edge); border-radius: 18px; overflow: hidden;
}
.step {
  background: var(--ink2); padding: 40px 32px;
  position: relative; overflow: hidden; transition: background .3s;
}
.step:hover { background: var(--ink3); }
.step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 100px; font-weight: 700;
  color: rgba(246,168,0,.05); line-height: 1;
  position: absolute; top: -10px; right: 16px;
  pointer-events: none; transition: color .3s;
}
.step:hover .step-num { color: rgba(246,168,0,.1); }
.step-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(246,168,0,.1); border: 1px solid rgba(246,168,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; position: relative; z-index: 1;
}
.step h3 {
  font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.step p { font-size: 14px; color: var(--fog); line-height: 1.65; position: relative; z-index: 1; }
.step-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--amber),transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.step:hover .step-line { transform: scaleX(1); }


/* -------------------------------------------------------------
   12. WHY US
   ------------------------------------------------------------- */
.why { padding: 90px 56px; background: var(--ink2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.why-feats { display: flex; flex-direction: column; }
.wf {
  display: flex; gap: 18px; padding: 24px 0;
  border-bottom: 1px solid var(--edge);
  position: relative; cursor: default; transition: padding .25s;
}
.wf:first-child { border-top: 1px solid var(--edge); }
.wf::before {
  content: '';
  position: absolute; left: -56px; top: 0; bottom: 0; width: 3px;
  background: var(--amber); transform: scaleY(0);
  transform-origin: bottom; transition: transform .3s ease;
}
.wf:hover::before { transform: scaleY(1); }
.wf:hover { padding-left: 10px; }
.wf-n {
  font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700;
  color: rgba(246,168,0,.1); line-height: 1;
  flex-shrink: 0; width: 50px; transition: color .3s;
}
.wf:hover .wf-n { color: rgba(246,168,0,.4); }
.wf-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.wf-desc  { font-size: 14px; color: var(--fog); line-height: 1.65; }

.scorecard {
  background: var(--ink); border: 1px solid var(--edge);
  border-radius: 20px; padding: 36px;
  position: relative; overflow: hidden;
}
.scorecard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,var(--amber),var(--amber-h));
}
.score-title {
  font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--fog); margin-bottom: 28px;
}
.score-rows { display: flex; flex-direction: column; gap: 20px; }
.score-row-top {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px;
}
.score-row-top strong { font-size: 14px; font-weight: 600; }
.score-row-top span   { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--amber); }
.score-bar-bg { height: 5px; background: var(--edge); border-radius: 3px; overflow: hidden; }
.score-bar {
  height: 5px; border-radius: 3px;
  background: linear-gradient(90deg,var(--amber),var(--amber-h));
  animation: grow 1.2s ease both;
}
.score-big {
  margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--edge);
  display: flex; align-items: center; gap: 16px;
}
.score-big-num { font-family: 'Oswald', sans-serif; font-size: 56px; line-height: 1; color: var(--amber); font-weight: 700; }
.score-big-label { font-size: 13px; color: var(--fog); line-height: 1.5; }
.score-big-label strong { display: block; font-size: 15px; color: var(--snow); margin-bottom: 4px; }


/* -------------------------------------------------------------
   13. REVIEWS
   ------------------------------------------------------------- */
.reviews { padding: 90px 56px; background: var(--ink); }
.reviews-top {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 14px;
  gap: 16px; flex-wrap: wrap;
}
.g-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink2); border: 1px solid var(--edge);
  border-radius: 100px; padding: 8px 16px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.g-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#4285F4 0 25%,#EA4335 25% 50%,#FBBC04 50% 75%,#34A853 75%);
}
.stars-row { display: flex; align-items: center; gap: 10px; margin: 10px 0 48px; }
.stars       { color: var(--amber); font-size: 18px; letter-spacing: 2px; }
.stars-label { font-size: 13px; color: var(--fog); }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.rev-card {
  background: var(--ink2); border: 1px solid var(--edge);
  border-radius: var(--r2); padding: 24px; transition: all .3s;
}
.rev-card:hover {
  border-color: rgba(246,168,0,.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.rev-card.big { grid-column: span 2; }
.rev-stars { color: var(--amber); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-quote {
  font-size: 14px; line-height: 1.7; color: #b8bdd0;
  margin-bottom: 18px; font-style: italic;
}
.rev-quote::before {
  content: '\201C'; font-size: 28px; color: rgba(246,168,0,.3);
  line-height: 0; vertical-align: -.4em; margin-right: 3px;
}
.rev-author { display: flex; align-items: center; gap: 10px; }
.rev-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,var(--amber),var(--amber-h));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--ink); flex-shrink: 0;
}
.rev-name { font-size: 13px; font-weight: 700; }
.rev-verified { font-size: 10px; color: var(--fog); display: flex; align-items: center; gap: 3px; margin-top: 2px; }
.rev-verified svg { color: #22c55e; }


/* -------------------------------------------------------------
   14. SERVICE AREAS
   ------------------------------------------------------------- */
.areas { padding: 90px 56px; background: var(--ink2); }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.suburb-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.suburb {
  background: var(--ink); border: 1px solid var(--edge);
  border-radius: 10px; padding: 14px;
  text-align: center; cursor: pointer; transition: all .2s;
}
.suburb:hover { background: rgba(246,168,0,.08); border-color: rgba(246,168,0,.35); color: var(--amber); }
.suburb strong { display: block; font-size: 13px; font-weight: 700; }
.suburb span   { font-size: 11px; color: var(--fog); margin-top: 2px; display: block; }

.areas-call-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: var(--ink); text-decoration: none;
  padding: 16px 28px; border-radius: var(--r);
  font-family: 'Oswald', sans-serif; font-size: 20px;
  font-weight: 600; letter-spacing: .04em;
  transition: all .2s; box-shadow: 0 6px 24px rgba(246,168,0,.28);
  margin-top: 32px; white-space: nowrap;
}
.areas-call-btn:hover { background: var(--amber-h); }


/* -------------------------------------------------------------
   15. FAQ
   ------------------------------------------------------------- */
.faq { padding: 90px 56px; background: var(--ink); }
.faq-layout { display: grid; grid-template-columns: 360px 1fr; gap: 80px; }
.faq-sticky  { position: sticky; top: 100px; align-self: start; }

.faqs { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--ink2); border: 1px solid var(--edge);
  border-radius: 12px; overflow: hidden; transition: border-color .2s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(246,168,0,.2); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; gap: 14px;
  font-size: 15px; font-weight: 600; line-height: 1.4;
}
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--ink3);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--amber); font-weight: 300;
  transition: all .3s;
}
.faq-item.open .faq-toggle { background: var(--amber); color: var(--ink); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--fog); line-height: 1.75;
  transition: max-height .4s ease, padding .2s;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 220px; padding: 0 22px 20px; }

.faq-call-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--amber); text-decoration: none;
  font-size: 15px; font-weight: 700;
  border-bottom: 1px solid rgba(246,168,0,.3);
  padding-bottom: 3px; margin-top: 24px;
}
.faq-call-link:hover { color: var(--amber-h); }


/* -------------------------------------------------------------
   16. FINAL CTA
   ------------------------------------------------------------- */
.final-cta {
  padding: 100px 56px; background: var(--ink2);
  text-align: center; position: relative; overflow: hidden;
}
.final-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%,rgba(246,168,0,.07) 0%,transparent 65%),
    radial-gradient(ellipse 40% 60% at 20% 80%,rgba(232,35,42,.04) 0%,transparent 55%);
}
.ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(246,168,0,.06); border-radius: 50%;
  animation: expand 4s ease-out infinite;
}
.ring:nth-child(2) { animation-delay: 1.3s; }
.ring:nth-child(3) { animation-delay: 2.6s; }

.final-content { position: relative; z-index: 1; }
.final-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,35,42,.12); border: 1px solid rgba(232,35,42,.3);
  border-radius: 100px; padding: 6px 14px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #ff6b6b; margin-bottom: 24px;
}
.final-h {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px,6vw,80px); font-weight: 700;
  line-height: .95; letter-spacing: -.01em;
}
.final-h em { font-style: normal; color: var(--amber); }

.big-call {
  display: inline-flex; align-items: center;
  justify-content: center; gap: 14px;
  background: var(--amber); color: var(--ink); text-decoration: none;
  padding: 24px 56px; border-radius: var(--r2);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700; letter-spacing: .04em;
  margin: 40px auto 18px;
  transition: all .25s;
  box-shadow: 0 20px 70px rgba(246,168,0,.4);
  position: relative; overflow: hidden;
  white-space: nowrap; max-width: 100%;
}
.big-call::after {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  animation: sheen 2s ease-in-out infinite;
}
.big-call:hover { background: var(--amber-h); transform: scale(1.04); box-shadow: 0 30px 90px rgba(246,168,0,.6); }

.final-note { font-size: 14px; color: var(--fog); line-height: 1.7; }
.final-note a      { color: var(--amber); text-decoration: none; }
.final-note strong { color: var(--snow); }


/* -------------------------------------------------------------
   17. FOOTER
   ------------------------------------------------------------- */
footer {
  background: var(--ink); border-top: 1px solid var(--edge);
  padding: 28px 56px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.foot-logo { font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: .06em; font-weight: 600; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: var(--fog); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--amber); }
.foot-copy { font-size: 11px; color: var(--fog2); }


/* -------------------------------------------------------------
   18. STICKY MOBILE CALL BAR — always on screen on mobile
   ------------------------------------------------------------- */
.sticky-call {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--amber);
  border-top: 2px solid var(--amber-h);
  box-shadow: 0 -4px 24px rgba(246,168,0,.4);
}
.sticky-call a {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  padding: 16px 20px; color: var(--ink); text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700; letter-spacing: .04em;
  white-space: nowrap;
}


/* =============================================================
   19. RESPONSIVE — Tablet  ≤ 1024px
   ============================================================= */
@media (max-width: 1024px) {

  .site-header { padding: 12px 24px; }
  .hdr-avail   { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
    min-height: auto; gap: 32px;
  }
  .hero-bg::after { display: none; }
  .hero-stripe    { display: none; }
  .hero-content   { padding: 0; }
  .hero-card-wrap { width: 100%; }

  .how, .why, .reviews,
  .areas, .faq, .final-cta { padding: 70px 28px; }
  footer                   { padding: 24px 28px; }

  .steps        { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; gap: 48px; }
  .wf::before   { display: none; }
  .areas-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-layout   { grid-template-columns: 1fr; gap: 40px; }
  .faq-sticky   { position: static; }

  .reviews-grid  { grid-template-columns: 1fr 1fr; }
  .rev-card.big  { grid-column: span 1; }
}


/* =============================================================
   20. RESPONSIVE — Mobile  ≤ 640px
   ============================================================= */
@media (max-width: 640px) {

  /* Header */
  .site-header  { padding: 10px 16px; }
  .hdr-logo img { height: 36px; }
  .hdr-call     { padding: 10px 14px; }
  .hdr-call .lbl { display: none; }
  .hdr-call .num { font-size: 14px; }

  /* Hero */
  .hero         { padding: 28px 16px 20px; gap: 20px; }
  .hero h1      { font-size: clamp(36px, 10vw, 50px); }
  .hero-desc    { font-size: 15px; }

  /* Make primary CTA full-width, no line break */
  .hero-ctas    { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary  {
    width: 100%; font-size: 21px; padding: 18px 16px;
    justify-content: center;
  }
  .btn-secondary { align-self: center; }

  /* Dispatch card */
  .dispatch-top   { padding: 18px 18px 14px; }
  .dispatch-timer { font-size: 48px; }
  .dispatch-body  { padding: 14px 16px; gap: 8px; }
  .card-cta       { margin: 4px 16px 16px; font-size: 17px; padding: 13px; }

  /* Sections */
  .how, .why, .reviews,
  .areas, .faq, .final-cta { padding: 52px 16px; }

  footer {
    padding: 20px 16px;
    flex-direction: column;
    text-align: center;
  }
  .foot-links { justify-content: center; gap: 12px; }

  /* Steps */
  .step     { padding: 28px 22px; }
  .step-num { font-size: 72px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Areas */
  .suburb-grid    { grid-template-columns: 1fr 1fr; }
  .areas-call-btn { width: 100%; justify-content: center; font-size: 18px; padding: 15px; }

  /* Final CTA */
  .big-call {
    width: 100%; font-size: 24px;
    padding: 20px 16px;
    justify-content: center;
    margin: 28px auto 14px;
  }

  /* Sticky bar */
  .sticky-call a { font-size: 18px; padding: 14px 16px; }
}


/* =============================================================
   21. RESPONSIVE — Small phones  ≤ 380px
   ============================================================= */
@media (max-width: 380px) {
  .hero h1          { font-size: 34px; }
  .btn-primary      { font-size: 18px; }
  .big-call         { font-size: 20px; }
  .hdr-call .num    { font-size: 13px; }
  .dispatch-timer   { font-size: 42px; }
}