/* ============================================================
   CONQUER REMOVALS — Design System v3
   Grounded in real brand assets: true black + white + gold accent
   Type: Manrope (body/UI) + Archivo Black (display, condensed-bold — matches truck livery)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Archivo+Black&display=swap');

:root{
  --black:      #0B0B0C;
  --ink:        #17181A;
  --ink-soft:   #3A3C3F;
  --white:      #FFFFFF;
  --paper:      #F5F5F4;
  --paper-deep: #EBEAE7;
  --line:       #E1E0DC;
  --gold:       #C6A15B;
  --gold-deep:  #A6813F;
  --gold-tint:  #F4EDDE;
  --stone:      #6B6C6D;

  --body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Archivo Black", "Arial Narrow", sans-serif;

  --max: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--body);
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -0.005em; line-height: 1.08; color: var(--black); text-transform: uppercase; }
h3, h4{ text-transform: none; font-family: var(--body); font-weight: 800; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Native cross-fade between full page loads (Chrome/Edge 126+; other
   browsers ignore this and just navigate normally — no fallback needed). */
@view-transition{ navigation: auto; }

/* ---------------- Scroll reveal ----------------
   Base state only applies once JS adds .reveal, so content is never hidden
   if a script fails to load. See main.js for the IntersectionObserver. */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed{ opacity: 1; transform: translateY(0); }

/* The "How it works" truck photo drives in from the left as it scrolls into view. */
.reveal.hiw-truck-photo{ transform: translateX(-70px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.hiw-truck-photo.revealed{ transform: translateX(0); }

/* ---------------- Type scale ---------------- */
.h-xl{ font-size: clamp(2.3rem, 5vw, 4rem); }
.h-lg{ font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.h-md{ font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.lede{ font-family: var(--body); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.55; color: var(--stone); font-weight: 500; max-width: 50ch; }
.lede.on-dark{ color: #C7C7C6; }

/* ---------------- Top bar ---------------- */
.topbar{ background: var(--gold); color: var(--black); font-size: 0.92rem; }
.topbar .wrap{ display: flex; justify-content: space-between; align-items: center; padding-top: 11px; padding-bottom: 11px; gap: 16px; flex-wrap: wrap; }
.topbar-badge{ display: inline-flex; align-items: center; gap: 8px; font-weight: 800; letter-spacing: 0.01em; }
.topbar-check{ display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--black); color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.topbar-hours{ font-weight: 700; color: rgba(11,11,12,0.75); }
@media (max-width: 560px){ .topbar-hours{ display: none; } }
@media (max-width: 420px){ .topbar .wrap{ padding-top: 8px; padding-bottom: 8px; } .topbar-badge{ font-size: 0.8rem; } }

/* ---------------- Nav ---------------- */
.site-header{ background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; transition: box-shadow 0.2s ease; }
.site-header.scrolled{ box-shadow: 0 2px 14px rgba(0,0,0,0.08); }
.nav{ display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 24px; }
.brand{ display: flex; align-items: center; gap: 11px; }
.brand-mark{ width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--black); }
.brand-mark img{ width: 100%; height: 100%; object-fit: cover; }
.brand-name{ font-family: var(--display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: 0.01em; }
.brand-name span{ color: var(--gold); }

.nav-right{ display: flex; align-items: center; gap: 26px; }
.nav-links{ display: flex; align-items: center; gap: 26px; }
.nav-links > li > a:not(.nav-cta){ position: relative; }
.nav-links > li > a:not(.nav-cta)::after{ content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; background: var(--gold-deep); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.nav-links a{ font-weight: 600; font-size: 0.95rem; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active{ color: var(--gold-deep); }
.nav-links > li > a:hover::after, .nav-links > li > a.active::after{ transform: scaleX(1); }

.nav-dropdown{ position: relative; }
.nav-submenu{ display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px; min-width: 420px; box-shadow: 0 12px 28px rgba(0,0,0,0.1); z-index: 50; }
.nav-submenu a{ display: block; padding: 9px 10px; border-radius: 8px; font-size: 0.9rem; color: var(--ink-soft); white-space: nowrap; }
.nav-submenu a:hover{ background: var(--paper); color: var(--gold-deep); }
.nav-submenu-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.nav-submenu-featured{ display: block; font-weight: 800; color: var(--ink); border-bottom: 1px solid var(--line); margin-bottom: 8px; padding-bottom: 12px; }
.nav-submenu-all{ display: block; text-align: center; font-weight: 800; color: var(--gold-deep); border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; }
.nav-caret{ display: none; }

@media (min-width: 901px){
  .nav-submenu{ display: block; opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s; }
  .nav-dropdown:hover .nav-submenu{ opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
}

.nav-contact{ display: flex; align-items: center; gap: 18px; }
.nav-phone{ display: none; align-items: center; gap: 8px; font-weight: 800; font-size: 0.98rem; color: var(--ink); white-space: nowrap; }
.nav-phone::before{ content: ""; width: 17px; height: 17px; background: var(--gold-deep); flex-shrink: 0; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.02-.24 11.36 11.36 0 0 0 3.57.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.57 1 1 0 0 1-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat; }
.nav-phone:hover{ color: var(--gold-deep); }
@media (min-width: 901px){ .nav-phone{ display: inline-flex; } }

.nav-cta{ display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--black); font-weight: 800; font-size: 0.92rem; padding: 11px 20px; border-radius: 999px; border: none; transition: background 0.15s ease, transform 0.15s ease; }
.nav-cta:hover{ background: var(--gold-deep); transform: translateY(-1px); }

.nav-toggle{ display: none; background: none; border: none; padding: 6px; min-width: 44px; min-height: 44px; }
.nav-toggle span{ display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 900px){
  .nav-right{ gap: 10px; }
  .nav-cta{ font-size: 0.86rem; padding: 10px 16px; }
  .nav-links{ position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px); background: var(--white); flex-direction: column; align-items: flex-start; padding: 100px 28px 28px; gap: 22px; overflow-y: auto; transform: translateX(100%); transition: transform 0.25s ease; box-shadow: -8px 0 24px rgba(0,0,0,0.08); }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.08rem; }
  .nav-toggle{ display: block; }

  .nav-dropdown{ width: 100%; display: flex; flex-wrap: wrap; align-items: center; }
  .nav-dropdown > a{ flex: 1; }
  .nav-caret{ display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; margin: -10px -10px -10px 0; background: none; border: none; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .nav-caret span{ width: 10px; height: 10px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg); transition: transform 0.2s ease; margin-top: -4px; }
  .nav-dropdown.expanded .nav-caret span{ transform: rotate(-135deg); margin-top: 4px; }
  .nav-submenu{ display: none; position: static; width: 100%; min-width: 0; border: none; box-shadow: none; padding: 4px 0 4px 16px; }
  .nav-dropdown.expanded .nav-submenu{ display: block; }
  .nav-submenu a{ padding: 10px 0; border-radius: 0; }
  .nav-submenu-grid{ grid-template-columns: 1fr; gap: 0; }
  .nav-submenu-featured, .nav-submenu-all{ border: none; margin: 0; padding: 10px 0; text-align: left; }
}

/* ---------------- Buttons ---------------- */
.btn{ display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1rem; padding: 15px 28px; border-radius: 999px; border: 2px solid transparent; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--gold); color: var(--black); }
.btn-primary:hover{ background: var(--gold-deep); box-shadow: 0 10px 22px rgba(198,161,91,0.35); }
.btn-dark{ background: var(--black); color: var(--white); }
.btn-dark:hover{ background: #000; box-shadow: 0 10px 22px rgba(0,0,0,0.25); }
.btn-ghost-dark{ border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost-dark:hover{ border-color: var(--white); }
.btn-ghost-light{ border-color: var(--line); color: var(--ink); }
.btn-ghost-light:hover{ border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-row{ display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------------- Hero (real photo) ---------------- */
.hero{ position: relative; color: var(--white); overflow: hidden; background: var(--black); }
.hero-bg{ position: absolute; inset: 0; background-size: cover; background-position: 50% 12%; animation: hero-zoom 16s ease-out forwards; }
@keyframes hero-zoom{ from{ transform: scale(1); } to{ transform: scale(1.08); } }
.hero-bg::after{ content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(11,11,12,0.94) 0%, rgba(11,11,12,0.86) 30%, rgba(11,11,12,0.5) 58%, rgba(11,11,12,0.22) 100%), linear-gradient(180deg, rgba(11,11,12,0.25) 0%, rgba(11,11,12,0.5) 100%); }
.hero-inner{ position: relative; padding: 90px 0 68px; max-width: 640px; }
.hero .eyebrow{ font-family: var(--body); color: var(--gold); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.hero h1{ color: var(--white); margin-bottom: 20px; max-width: none; }
.hero .lede{ margin-bottom: 0; max-width: 46ch; }

@keyframes hero-in{ from{ opacity: 0; transform: translateY(16px); } to{ opacity: 1; transform: translateY(0); } }
.hero .eyebrow, .hero h1, .hero .lede, .hero .btn-row, .google-badge, .stat-badge, .hero-badges, .hero-form{ animation: hero-in 0.6s ease both; }
.hero .eyebrow{ animation-delay: 0s; }
.hero h1{ animation-delay: 0.08s; }
.hero .lede{ animation-delay: 0.16s; }
.hero .btn-row{ animation-delay: 0.24s; }
.google-badge{ animation-delay: 0.22s; }
.stat-badge{ animation-delay: 0.22s; }
.hero-badges{ animation-delay: 0.28s; }
.hero-form{ animation-delay: 0.34s; }
.btn-lg{ padding: 18px 34px; font-size: 1.06rem; }

/* ---------------- Hero: split layout with embedded quote form ---------------- */
.hero-inner.hero-inner-split{ max-width: var(--max); padding: 36px 0 44px; display: grid; grid-template-columns: 1fr 440px; gap: 44px; align-items: start; }
.hero-copy{ padding-top: 0; }
@media (max-width: 980px){
  .hero-inner.hero-inner-split{ grid-template-columns: 1fr; gap: 22px; padding: 26px 0 32px; }
  .hero-copy{ padding-top: 0; text-align: center; }
  .hero-copy .lede{ margin-left: auto; margin-right: auto; }
  .hero h1{ margin-bottom: 12px; }
}
.hero-trust-row{ display: flex; align-items: stretch; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
@media (max-width: 980px){ .hero-trust-row{ justify-content: center; } }

.google-badge{ display: inline-flex; align-items: center; gap: 14px; padding: 13px 20px; background: var(--white); border-radius: 16px; box-shadow: 0 16px 36px rgba(0,0,0,0.4); }
.google-badge-g{ width: 30px; height: 30px; flex-shrink: 0; }
.google-badge-g svg{ display: block; width: 100%; height: 100%; }
.google-badge-body{ display: flex; flex-direction: column; line-height: 1.3; }
.google-badge-rating{ font-family: var(--display); font-size: 1.32rem; color: var(--black); display: flex; align-items: baseline; gap: 8px; }
.google-badge-stars{ color: #F2B824; font-size: 0.82rem; letter-spacing: 1px; }
.google-badge-count{ font-size: 0.8rem; color: var(--stone); font-weight: 700; }

.stat-badge{ display: inline-flex; flex-direction: column; justify-content: center; padding: 13px 22px; background: var(--white); border-radius: 16px; box-shadow: 0 16px 36px rgba(0,0,0,0.4); }
.stat-badge-number{ font-family: var(--display); font-size: 1.32rem; color: var(--black); line-height: 1.3; }
.stat-badge-label{ font-size: 0.8rem; color: var(--stone); font-weight: 700; }

.hero-badges{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-badge{ display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 999px; font-size: 0.84rem; font-weight: 700; color: #EDEDEC; }
.hero-badge-check{ display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 800; flex-shrink: 0; }
@media (max-width: 980px){ .hero-badges{ justify-content: center; } }

.hero-form{ background: rgba(14,14,15,0.72); backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%); border: 1px solid rgba(255,255,255,0.16); border-radius: 22px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.hero-form-kicker{ display: block; text-align: center; color: var(--gold); font-weight: 700; font-size: 0.85rem; padding: 6px 0 12px; }
.hero-form .quote-panel{ border-radius: 16px; }
.hero-form .qp-progress{ padding: 20px 24px 0; }
.hero-form .qp-body{ padding: 26px 24px 28px; }
.hero-form .qp-step h3{ font-size: 1.22rem; }
.hero-form .field-row, .hero-form .option-grid{ grid-template-columns: 1fr; }

@media (max-width: 560px){
  .hero-inner.hero-inner-split{ padding: 22px 0 26px; gap: 16px; }
  .hero .eyebrow{ margin-bottom: 8px; }
  .hero h1{ font-size: 1.9rem; }
  .hero .lede{ font-size: 0.96rem; }
  .hero-trust-row{ margin-top: 16px; gap: 10px; }
  .hero-badges{ display: none; }
  .hero-form{ padding: 10px; }
  .hero-form-kicker{ padding: 4px 0 8px; font-size: 0.78rem; }
  .hero-form .qp-progress{ padding: 14px 16px 0; }
  .hero-form .qp-body{ padding: 18px 16px 20px; }
  .hero-form .qp-step h3{ font-size: 1.08rem; margin-bottom: 14px; }
  .hero-form .field{ margin-bottom: 10px; }
}

/* ---------------- Trust grid (Why choose us) ---------------- */
.trust-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 8px; }
@media (max-width: 480px){ .trust-grid{ grid-template-columns: 1fr; } }
.trust-tile{ display: flex; gap: 12px; align-items: flex-start; }
.trust-tile .dot{ width: 22px; height: 22px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.trust-tile h3{ font-size: 0.98rem; margin-bottom: 3px; }
.trust-tile p{ color: var(--stone); font-size: 0.9rem; line-height: 1.45; }

/* ---------------- Sections ---------------- */
section{ padding: 84px 0; }
.section-head{ max-width: 620px; margin-bottom: 44px; }
.section-head.wide{ max-width: none; }
.section-head.wide .lede{ max-width: 90ch; }
.section-head.center{ text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .lede{ margin-left: auto; margin-right: auto; }
.section-head .kicker{ font-family: var(--body); color: var(--gold-deep); font-weight: 700; margin-bottom: 10px; display: block; font-size: 0.95rem; }
.on-ink{ background: var(--black); color: var(--white); }
.on-ink .lede{ color: #C2C2C1; }
.on-ink h2{ color: var(--white); }
.deep{ background: var(--paper); }

/* ---------------- Grids & cards ---------------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-6{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px){ .grid-3, .grid-2, .grid-6{ grid-template-columns: 1fr; } }
@media (max-width: 880px) and (min-width: 561px){ .grid-4{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .grid-4{ grid-template-columns: 1fr; } }

.service-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.service-card:hover{ transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); border-color: var(--gold); }
.service-card h3{ font-size: 1.2rem; margin-bottom: 8px; }
.service-card p{ color: var(--stone); font-size: 0.98rem; }
.service-card .ic{ width: 44px; height: 44px; border-radius: 10px; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; margin-bottom: 16px; font-family: var(--display); font-size: 0.95rem; transition: transform 0.2s ease; }
.service-card:hover .ic{ transform: scale(1.1) rotate(-4deg); }

/* ---------------- Split section (why choose us / reviews) ---------------- */
.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; } }
.split .copy p.body-text{ color: var(--stone); font-size: 1.03rem; margin-top: 18px; }
.split .copy p.body-text + p.body-text{ margin-top: 12px; }
.case-outcome{ font-size: clamp(1.2rem, 1.9vw, 1.5rem); font-weight: 800; color: var(--ink); line-height: 1.35; margin-top: 18px; }
.photo{ display: block; width: 100%; object-fit: cover; background: var(--paper-deep); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 4/3; transition: transform 0.35s ease; }
.photo:hover{ transform: scale(1.02); }

/* ---------------- Australia interstate-routes graphic ---------------- */
.australia-graphic{ position: relative; width: 100%; aspect-ratio: 1955 / 1794.5; }
.australia-shape{ position: absolute; inset: 0; background-color: var(--gold); opacity: 0.9; -webkit-mask: url('/assets/img/australia-map-outline.svg') no-repeat center / contain; mask: url('/assets/img/australia-map-outline.svg') no-repeat center / contain; }
.australia-overlay{ position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

/* ---------------- Sydney coverage map embed ---------------- */
.map-embed{ position: relative; width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------------- Team headshot cards ---------------- */
.crew-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 880px) and (min-width: 561px){ .crew-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .crew-grid{ grid-template-columns: 1fr; } }
.crew-card{ text-align: center; }
.crew-card .photo{ aspect-ratio: 4/5; border-radius: var(--radius); margin-bottom: 14px; }
.crew-card h3{ font-size: 1.08rem; margin-bottom: 2px; }
.crew-card p{ color: var(--stone); font-size: 0.9rem; }

/* ---------------- Testimonials / reviews ---------------- */
.quote-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.quote-card:hover{ transform: translateY(-5px); box-shadow: 0 14px 30px rgba(0,0,0,0.07); }
.quote-card .qc-head{ display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.quote-card .avatar{ width: 40px; height: 40px; border-radius: 50%; background: var(--paper-deep); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.95rem; flex-shrink: 0; }
.quote-card .qc-who{ min-width: 0; }
.quote-card .qc-name{ font-weight: 800; font-size: 0.95rem; color: var(--ink); display: block; }
.quote-card .qc-meta{ display: flex; align-items: center; gap: 5px; font-size: 0.8rem; color: var(--stone); }
.quote-card .stars{ color: #F2B824; letter-spacing: 1px; margin-bottom: 12px; font-size: 0.95rem; }
.quote-card p.q{ color: var(--ink-soft); font-size: 1.01rem; }

/* ---------------- Reviews carousel ---------------- */
.reviews-carousel{ display: flex; align-items: center; gap: 14px; }
.rc-track{ flex: 1; display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.rc-track::-webkit-scrollbar{ display: none; }
.rc-slide{ flex: 0 0 100%; min-width: 0; scroll-snap-align: start; }
@media (min-width: 760px){ .rc-slide{ flex: 0 0 calc(50% - 10px); } }
@media (min-width: 1024px){ .rc-slide{ flex: 0 0 calc(33.333% - 14px); } }
.rc-arrow{ flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; cursor: pointer; transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease; }
.rc-arrow:hover{ border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-1px); }
@media (max-width: 560px){ .rc-arrow{ display: none; } }
.rc-dots{ display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
.rc-dot{ width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; cursor: pointer; transition: width 0.2s ease, border-radius 0.2s ease, background 0.2s ease; }
.rc-dot.active{ background: var(--gold-deep); width: 22px; border-radius: 4px; }

/* ---------------- Locations prose ---------------- */
.suburb-chip-grid{ display: flex; flex-wrap: wrap; gap: 10px; }
.suburb-chip{ background: var(--white); border: 1px solid var(--line); padding: 9px 16px; font-weight: 600; font-size: 0.92rem; border-radius: 999px; }
.suburb-chip:hover{ border-color: var(--gold-deep); color: var(--gold-deep); }

.suburb-card-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 880px) and (min-width: 561px){ .suburb-card-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .suburb-card-grid{ grid-template-columns: 1fr; } }
.suburb-card{ border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.suburb-card:hover{ transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0,0,0,0.08); }
.suburb-card .photo{ aspect-ratio: 16/10; border-radius: 0; border: none; }
.suburb-card:hover .photo{ transform: scale(1.06); }
.suburb-card .sc-body{ padding: 22px; }
.suburb-card h3{ font-size: 1.3rem; margin-bottom: 8px; }
.suburb-card p{ color: var(--stone); margin-bottom: 16px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }

/* ---------------- Pricing ---------------- */
.pricing-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 780px; margin: 0 auto; }
.pricing-grid-3{ grid-template-columns: repeat(3, 1fr); max-width: 1080px; }
@media (max-width: 600px){ .pricing-grid{ grid-template-columns: 1fr; } }
@media (max-width: 860px){ .pricing-grid-3{ grid-template-columns: 1fr; } }
.price-card{ position: relative; background: var(--white); border: 2px solid var(--line); border-radius: var(--radius); padding: 26px 26px 24px; text-align: left; }
.price-card-featured{ border-color: var(--gold); }
.price-card-badge{ position: absolute; top: -13px; right: 22px; background: var(--gold); color: var(--black); font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 5px 12px; border-radius: 999px; }
.price-tier{ font-weight: 700; font-size: 1.02rem; color: var(--ink-soft); margin-bottom: 10px; }
.price-amount{ font-family: var(--display); font-size: 2.6rem; color: var(--black); }
.price-amount span{ font-family: var(--body); font-size: 1.05rem; font-weight: 700; color: var(--stone); text-transform: none; }
.price-card-sub{ color: var(--stone); font-size: 0.92rem; margin: 10px 0 0; }
.price-card-points{ display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.price-card-points li{ display: flex; align-items: flex-start; gap: 8px; font-size: 0.86rem; color: var(--ink-soft); }
.price-card-points .dot{ width: 16px; height: 16px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 0.58rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
.price-points{ max-width: 560px; margin: 28px auto 0; display: flex; flex-direction: column; gap: 12px; }
.price-points li{ display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: 0.98rem; }
.price-points .dot{ width: 20px; height: 20px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ---------------- Reviews: Google attribution ---------------- */
.google-g{ display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; flex-shrink: 0; }

.route-line{ position: relative; border-left: 2px dashed var(--line); margin-left: 12px; padding-left: 32px; }
.route-stop{ position: relative; padding-bottom: 34px; }
.route-stop:last-child{ padding-bottom: 0; }
.route-stop::before{ content: ""; position: absolute; left: -39px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--gold); }
.route-stop h3{ font-size: 1.2rem; margin-bottom: 6px; font-family: var(--body); font-weight: 800; }
.route-stop p{ color: var(--stone); max-width: 60ch; }

/* ---------------- FAQ ---------------- */
.faq-item{ border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item summary{ cursor: pointer; font-weight: 700; font-size: 1.06rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{ content: "+"; font-size: 1.4rem; color: var(--gold-deep); flex-shrink: 0; font-weight: 700; display: inline-block; transition: transform 0.2s ease; }
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ color: var(--stone); margin-top: 14px; max-width: 68ch; }

/* ---------------- Multi-step quote form ---------------- */
.quote-panel{ background: var(--black); border-radius: 20px; overflow: hidden; }
.qp-progress{ display: flex; gap: 6px; padding: 24px 40px 0; }
.qp-progress .seg{ height: 4px; flex: 1; background: #333; border-radius: 2px; overflow: hidden; }
.qp-progress .seg i{ display: block; height: 100%; width: 0; background: var(--gold); transition: width 0.25s ease; }
.qp-progress .seg.done i{ width: 100%; }
.qp-progress .seg.current i{ width: 100%; }

.qp-body{ padding: 36px 40px 40px; color: var(--white); }
.qp-step{ display: none; }
.qp-step.active{ display: block; animation: step-in 0.3s ease; }
@keyframes step-in{ from{ opacity: 0; transform: translateX(12px); } to{ opacity: 1; transform: translateX(0); } }
.qp-step .qp-label{ color: var(--gold); font-weight: 700; font-size: 0.88rem; margin-bottom: 8px; display: block; }
.qp-step h3{ color: var(--white); font-size: 1.5rem; margin-bottom: 22px; font-family: var(--body); font-weight: 800; text-transform: none; }

.field{ margin-bottom: 16px; }
.field label{ display: block; font-weight: 700; font-size: 0.86rem; margin-bottom: 6px; color: #DADADA; }
.field input, .field textarea, .field select{
  width: 100%; padding: 13px 14px; border: 1px solid #34373A; border-radius: var(--radius-sm);
  font-family: var(--body); font-size: 0.98rem; color: var(--ink); background: var(--white);
}
.field textarea{ resize: vertical; min-height: 80px; }
.field select{ cursor: pointer; }
.field-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px){ .field-row{ grid-template-columns: 1fr; } }

.option-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
@media (max-width: 560px){ .option-grid{ grid-template-columns: 1fr; } }
.option-card{ position: relative; }
.option-card input{ position: absolute; opacity: 0; }
.option-card label{
  display: flex; align-items: center; gap: 12px; padding: 16px 16px; border: 1.5px solid #34373A; border-radius: var(--radius-sm);
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; font-weight: 600; color: #EDEDEC; font-size: 0.96rem;
}
.option-card .opt-letter{ width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #4A4D50; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; flex-shrink: 0; color: #C7C7C6; }
.option-card input:checked + label{ border-color: var(--gold); background: rgba(198,161,91,0.1); }
.option-card input:checked + label .opt-letter{ background: var(--gold); border-color: var(--gold); color: var(--black); }
.option-card input:focus-visible + label{ outline: 3px solid var(--gold); outline-offset: 2px; }

.qp-nav{ display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 14px; }
.qp-back{ background: none; border: none; color: #A9A9A8; font-weight: 700; font-size: 0.92rem; padding: 10px; }
.qp-back:hover{ color: var(--white); }
.qp-back[hidden]{ visibility: hidden; }
.form-note{ font-size: 0.85rem; color: #8C8C8B; margin-top: 14px; }
.form-status{ font-size: 0.9rem; font-weight: 600; margin-top: 12px; display: none; color: var(--gold); }
.form-status.show{ display: block; }
.form-status.err{ color: #E2867B; }

/* Light variant wrapper: used wherever the form needs to stand out against
   a dark section (the /quote/ page hero, and the dark footer) instead of
   blending into it. */
.form-card-light .quote-panel{ background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md, 0 14px 34px rgba(11,11,12,0.12)); }
.form-card-light .qp-progress .seg{ background: var(--paper-deep); }
.form-card-light .qp-body{ color: var(--ink); }
.form-card-light .qp-step h3{ color: var(--ink); }
.form-card-light .field label{ color: var(--ink-soft); }
.form-card-light .field input, .form-card-light .field textarea, .form-card-light .field select{ border-color: var(--line); background: var(--paper); color: var(--ink); }
.form-card-light .option-card label{ border-color: var(--line); color: var(--ink-soft); background: var(--paper); }
.form-card-light .option-card .opt-letter{ border-color: var(--line); color: var(--stone); }
.form-card-light .qp-back{ color: var(--stone); }
.form-card-light .qp-back:hover{ color: var(--ink); }
.form-card-light .form-note{ color: var(--stone); }

/* ---------------- Footer ---------------- */
footer{ background: var(--black); color: #8E8E8D; padding: 60px 0 90px; }
.footer-cta{ display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; background: var(--ink); border-radius: 24px; padding: 32px 34px; margin-bottom: 56px; }
.footer-cta .kicker{ font-family: var(--body); color: var(--gold); font-weight: 700; display: block; margin-bottom: 8px; font-size: 0.95rem; }
@media (max-width: 640px){ .footer-cta{ padding: 26px 22px; border-radius: 18px; flex-direction: column; align-items: flex-start; } }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4{ color: var(--white); font-weight: 700; font-size: 0.96rem; margin-bottom: 16px; }
.footer-grid a{ display: block; padding: 5px 0; }
.footer-grid a:hover{ color: var(--gold); }
.footer-brand p{ margin-top: 14px; max-width: 34ch; color: #737372; }
.footer-bottom{ border-top: 1px solid #232324; padding-top: 22px; font-size: 0.88rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-preferred-source{ display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; font-size: 0.85rem; color: #9C9C9B; }
@media (max-width: 780px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------------- Page hero (secondary pages) ---------------- */
.page-hero{ background: var(--black); color: var(--white); padding: 52px 0 56px; }
.page-hero .kicker{ font-family: var(--body); color: var(--gold); font-weight: 700; display: block; margin-bottom: 12px; }
.page-hero h1{ color: var(--white); margin-bottom: 16px; }

/* Quote page: form leads immediately below a compact hero, so it renders
   above the fold instead of after a full-height hero section. */
.quote-hero{ padding: 18px 0 22px; }
.quote-hero .breadcrumb{ margin-bottom: 12px; }
.quote-hero-head{ display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 16px; }
.quote-hero-head .lede{ margin-bottom: 0; }
@media (max-width: 700px){ .quote-hero-head{ flex-direction: column; align-items: flex-start; } }
@media (max-width: 560px){ .quote-hero{ padding: 14px 0 18px; } .quote-hero-head{ margin-bottom: 14px; gap: 12px; } }
.breadcrumb{ font-family: var(--body); font-size: 0.88rem; color: #8C8C8B; margin-bottom: 22px; }
.breadcrumb a:hover{ color: var(--gold); }

/* ---------------- Floating call / WhatsApp buttons ---------------- */
.floating-actions{
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
}
.fab{
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
  transition: transform 0.15s ease, width 0.2s ease, border-radius 0.2s ease, background 0.15s ease;
  animation: fab-in 0.5s ease backwards;
}
.fab:hover{ transform: scale(1.06); }
.fab-call{ background: var(--black); color: var(--white); animation-delay: 0.6s; }
.fab-wa{ background: #25D366; color: var(--white); animation: fab-in 0.5s ease 0.5s backwards, fab-pulse 3.5s ease-out 2s infinite; gap: 10px; }
.fab svg{ width: 26px; height: 26px; flex-shrink: 0; }
.fab-label{ font-size: 0; font-weight: 800; white-space: nowrap; max-width: 0; overflow: hidden; transition: font-size 0.2s ease, max-width 0.25s ease; }
@keyframes fab-in{ from{ opacity: 0; transform: translateY(20px) scale(0.9); } to{ opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fab-pulse{
  0%{ box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.45); }
  70%{ box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 6px 20px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
}

/* Call FAB is mobile-only — the phone number already sits in the desktop header */
@media (min-width: 901px){
  .fab-call{ display: none; }
  .fab-wa{ width: auto; padding: 0 22px 0 18px; border-radius: 999px; }
  .fab-wa .fab-label{ font-size: 0.98rem; max-width: 140px; margin-left: 2px; }
}

@media (max-width: 600px){
  .floating-actions{ right: 14px; bottom: 14px; }
  .fab{ width: 50px; height: 50px; }
}

/* ---------------- Sticky mobile CTA bar ---------------- */
.mobile-cta-bar{ display: none; }
@media (max-width: 640px){
  .floating-actions{ display: none; }
  .mobile-cta-bar{
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--black); border-top: 1px solid rgba(255,255,255,0.12);
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
    gap: 8px; box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
  }
  .mcb-link{
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
    height: 46px; border-radius: 10px; font-weight: 700; font-size: 0.86rem;
    color: var(--white); background: rgba(255,255,255,0.08);
  }
  .mcb-link svg{ width: 18px; height: 18px; flex-shrink: 0; }
  .mcb-primary{ flex: 1.4; background: var(--gold); color: var(--black); }
}
