/* ============================================================
   Saddique Logistics — v2 stylesheet (Robonix-style re-skin)

   Design system lifted from Robonix Controls site:
   - Warm off-white page bg (#f0f0ee) + white card surfaces
   - System sans-serif (no Google Fonts), 500/600 weight headings
     with tight tracking; second-line accent in brand red
   - Two-pill top nav (logo pill + nav pill), white w/ subtle ring
   - Outlined primary button (red border → fills on hover) +
     filled variant for high-emphasis CTAs
   - Cards: rounded-2xl, ring-1 gray-200/70, hover lift
   - Light footer (5/7 split), red footer links
   - CTAs reframed as white "ring" cards, not dark blocks

   Saddique brand mark + truck animations (anim-aus.js / anim-qld.js)
   stay red+black+white — non-negotiable; only the chrome adopts
   Robonix's palette/type/layout.
   ============================================================ */

:root {
  /* Palette — Robonix gradient red ramp */
  --red-bright: #E11D33;
  --red:        #C8102E;
  --red-deep:   #7A0C1B;

  /* TNQ Transport (sister division) — distinct maroon, used only on TNQ cross-brand elements */
  --tnq:        #6B0F1A;
  --tnq-deep:   #4E0A13;

  /* Neutral ramp — Tailwind gray-* approximations used by Robonix */
  --ink:        #111827;  /* gray-900 — headings */
  --ink-soft:   #1f2937;  /* gray-800 */
  --body:       #374151;  /* gray-700 — body text */
  --muted:      #6b7280;  /* gray-500 — lead, captions */
  --mute-2:     #9ca3af;  /* gray-400 — tertiary */
  --rule:       rgba(229, 231, 235, 0.7);  /* ring-1 gray-200/70 */
  --rule-soft:  rgba(229, 231, 235, 0.5);
  --rule-strong:rgba(229, 231, 235, 1);    /* gray-200 solid */

  /* Surfaces */
  --paper:       #F8F5EF;   /* page bg — soft ivory; warm, editorial, lets red pop */
  --paper-card:  #FFFFFF;
  --paper-warm:  #F2EEE5;   /* alt-section tint — light putty, one shade deeper */

  /* Shadows — Robonix's softer, longer-throw drop shadows */
  --shadow-pill: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 10px 28px rgba(0, 0, 0, 0.06);
  --shadow-btn:  0 8px 20px rgba(200, 16, 46, 0.28);

  /* Radii */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 16px;   /* rounded-2xl */
  --r-xl: 24px;   /* rounded-3xl (large CTA cards) */
  --r-pill: 999px;

  /* Layout */
  --maxw: 1152px;             /* max-w-6xl */
  --gutter: 24px;
  --gutter-lg: 64px;          /* lg:px-16 */

  /* Type — system font stack only (Robonix uses ui-sans-serif) */
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
               Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "JetBrains Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--paper); }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 640px) { .container { padding-inline: 40px; } }
@media (min-width: 1024px) { .container { padding-inline: var(--gutter-lg); } }

/* ============================================================
   Top nav — two pills (logo pill + nav pill), centered, non-sticky.
   Robonix lifts these to z-50 with relative positioning.
   ============================================================ */
.nav {
  position: relative;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 16px 0;
  min-height: 0;
  height: auto;
}
@media (min-width: 640px) {
  .nav-inner { padding: 24px 32px 0; gap: 12px; }
}

/* Logo pill — image-based, tight padding (no empty side space) */
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 4px 8px;
  background: var(--paper-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pill);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  overflow: hidden;
}
.brand:hover { transform: scale(1.02); }
@media (min-width: 640px) { .brand { height: 56px; padding: 4px 10px; } }

.brand-logo {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav pill */
.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  height: 56px;
  padding: 0 28px;
  background: var(--paper-card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pill);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
}
@media (min-width: 820px) { .nav-links { display: inline-flex; } }

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--body);
  transition: color 0.18s ease;
  padding: 0;
  background: transparent;
  border-radius: 0;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--red); background: transparent; }
.nav-links a.active { color: var(--red); }

/* Quote CTA inside nav pill — pill-within-pill (now a dropdown trigger) */
.nav-cta-group { position: relative; margin-left: 6px; display: inline-block; }

.nav-links .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.nav-links .nav-cta:hover {
  background: var(--red-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}
.nav-cta .cta-caret { font-size: 10px; line-height: 1; transition: transform 0.18s ease; }
.nav-cta[aria-expanded="true"] .cta-caret { transform: rotate(180deg); }

/* Dropdown menu — centered under the button, polished card with up-caret */
.nav-cta-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 268px;
  background: var(--paper-card, #fff);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.16);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 200;
}
.nav-cta-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-cta-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 14px;
  background: var(--paper-card, #fff);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  transform: rotate(45deg);
}
.nav-cta-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  transition: background 0.14s ease;
}
.nav-cta-menu a:hover { background: var(--paper-warm, #f6f1ea); }
.nav-cta-menu .mi-title {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink, #1a1a1a);
}
.nav-cta-menu .mi-sub {
  display: block;
  font-size: 12px;
  color: var(--body);
  margin-top: 2px;
}

/* Mobile toggle (replaces hidden nav-links on small screens) */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--paper-card);
  border: none;
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-pill);
  cursor: pointer;
}
@media (min-width: 820px) { .nav-toggle { display: none; } }
.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }

/* Mobile dropdown */
.nav.open .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  height: auto;
  padding: 18px 22px;
  gap: 16px;
  align-items: flex-start;
  border-radius: var(--r-lg);
  z-index: 60;
}
.nav.open .nav-links a { width: 100%; font-size: 16px; }
.nav.open .nav-cta { width: 100%; text-align: center; margin-left: 0; justify-content: center; }
/* Mobile: the CTA group spans full width; the menu drops inline (static), no overlay */
.nav.open .nav-cta-group { width: 100%; }
.nav.open .nav-cta-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  min-width: 0;
  width: 100%;
  margin-top: 10px;
  box-shadow: none;
  display: none;            /* hidden until the CTA is tapped */
}
.nav.open .nav-cta-menu.open { display: block; transform: none; }
.nav.open .nav-cta-menu::before { display: none; }   /* no up-caret on mobile inline */

/* ============================================================
   Buttons — Robonix outlined + filled variants
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1em;
  line-height: 1;
}
.btn:hover .arrow { transform: translateX(2px); }

/* Primary = outlined red, fills on hover (Robonix's default CTA shape) */
.btn-primary {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Filled = solid red bg (Robonix uses this for the storefront/external CTA) */
.btn-filled {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-filled:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

/* Secondary = neutral outline (kept for "See our services" / "Get directions") */
.btn-secondary {
  background: transparent;
  color: var(--body);
  border-color: var(--rule-strong);
}
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--body);
  border-color: transparent;
  padding: 8px 0;
}
.btn-ghost:hover { color: var(--ink); }

/* TNQ Transport buttons — maroon, visually distinct from Saddique red but on-brand.
   Used only inside the TNQ cross-brand section + footer cross-link. */
.btn-tnq {
  background: var(--tnq);
  color: #fff;
  border-color: var(--tnq);
}
.btn-tnq:hover {
  background: var(--tnq-deep);
  border-color: var(--tnq-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(107, 15, 26, 0.28);
}
.btn-tnq-outline {
  background: transparent;
  color: var(--tnq);
  border-color: var(--tnq);
}
.btn-tnq-outline:hover {
  background: var(--tnq);
  color: #fff;
  border-color: var(--tnq);
}

/* ============================================================
   Eyebrow + headings
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.14); }
  50%      { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(200, 16, 46, 0.00); }
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.h-display {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 500;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
}
h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.accent { color: var(--red); }

.lead {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
}
@media (min-width: 640px) { .lead { font-size: 15.5px; } }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ============================================================
   Home hero — side-by-side (copy left, animation right).
   No dramatic backgrounds — Robonix relies on negative space.
   ============================================================ */
.hero {
  position: relative;
  padding: 32px 0 64px;
  background: var(--paper);
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 48px 0 96px; } }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 24px; }
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy .h-display {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}
.hero-copy .lead {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 0;
}
@media (min-width: 640px) { .hero-copy .lead { font-size: 17px; } }

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 480px;
}
.hero-stat {
  border-left: 2px solid var(--red);
  padding: 4px 0 4px 14px;
}
.hero-stat .k {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-stat .v {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.005em;
}

/* Hero animation slot — scaled 52% larger so the Australia map reads bolder */
.hero-anim {
  position: relative;
  aspect-ratio: 10 / 9;
  width: 100%;
  transform: scale(1.52);
  transform-origin: center center;
}
.hero-anim .stage { width: 100%; height: 100%; }
.hero-anim svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* ============================================================
   Page hero (about / services / contact) — centered.
   Robonix-style restraint: no gradient washes, no border-bottom.
   ============================================================ */
.page-hero {
  padding: 40px 0 56px;
  background: var(--paper);
  text-align: center;
}
@media (min-width: 640px) { .page-hero { padding: 56px 0 72px; } }
.page-hero .container { text-align: center; }
.page-hero .eyebrow { margin-inline: auto; margin-bottom: 20px; }
.page-hero .h-display {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin: 0 auto 18px;
  max-width: 18ch;
}
.page-hero .lead {
  margin-inline: auto;
  font-size: 15.5px;
  color: var(--muted);
}
@media (min-width: 640px) { .page-hero .lead { font-size: 16px; } }

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: 80px 0;
  border-top: none;
}
@media (min-width: 640px) { .section { padding: 112px 0; } }
.section.warm { background: var(--paper-warm); }
.section.cool { background: var(--paper); }
.section.tight { padding: 48px 0; }
@media (min-width: 640px) { .section.tight { padding: 64px 0; } }

.section-head {
  text-align: center;
  margin-bottom: 48px;
  max-width: 760px;
  margin-inline: auto;
}
.section-head .eyebrow { margin-inline: auto; }
.section-head h2 { margin: 0 0 16px; }
.section-head .lead { margin-inline: auto; }

/* ============================================================
   Cards (grid-3)
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 920px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 620px) { .grid-2 { grid-template-columns: 1fr; } }

/* Fleet photo card — used on home (Why Saddique) + about/services */
.fleet-photo {
  max-width: 880px;
  margin: 0 auto 56px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: transparent;
  box-shadow: 0 14px 36px rgba(122, 12, 27, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
}
.fleet-photo.fleet-photo-sm { max-width: 580px; }
.fleet-photo img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}
@media (max-width: 640px) { .fleet-photo { margin-bottom: 40px; } }

/* Floating SMS / Text us button — fixed bottom-right on every page */
.sms-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.40), 0 2px 8px rgba(0, 0, 0, 0.18);
  z-index: 90;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.sms-fab:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(200, 16, 46, 0.50), 0 2px 8px rgba(0, 0, 0, 0.18);
}
.sms-fab svg { width: 26px; height: 26px; display: block; }
@media (max-width: 640px) {
  .sms-fab { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .sms-fab svg { width: 24px; height: 24px; }
}

.card {
  position: relative;
  background: var(--paper-card);
  border-radius: var(--r-lg);
  padding: 26px;
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  transition: box-shadow 0.25s ease, transform 0.25s ease, outline-color 0.25s ease;
  isolation: isolate;
  overflow: hidden;
}
@media (min-width: 640px) { .card { padding: 28px; } }
.card:hover {
  box-shadow: var(--shadow-card);
  outline-color: rgba(200, 16, 46, 0.18);
  transform: translateY(-2px);
}
.card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(200, 16, 46, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--red);
}
.card .icon svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 10px; font-weight: 600; }
.card p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.card .sms-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--red);
  transition: color 0.18s ease, transform 0.18s ease;
}
.card .sms-link::after { content: "→"; transition: transform 0.18s ease; display: inline-block; }
.card .sms-link:hover { color: var(--red-bright); }
.card .sms-link:hover::after { transform: translateX(3px); }

/* ============================================================
   Tiles — small label+title cards used on home + services
   ============================================================ */
.tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1024px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 720px)  { .tiles { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px)  { .tiles { grid-template-columns: 1fr; } }
.tile {
  background: var(--paper-card);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  transition: outline-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.tile:hover {
  outline-color: rgba(200, 16, 46, 0.18);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.tile .tile-icon { color: var(--red); }
.tile .tile-icon svg { width: 22px; height: 22px; }
.tile .label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.tile .title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ============================================================
   Region pills (about page coverage)
   ============================================================ */
.regions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) { .regions { grid-template-columns: 1fr; } }
.region {
  background: var(--paper-card);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  transition: outline-color 0.2s ease, transform 0.2s ease;
}
.region:hover { outline-color: rgba(200, 16, 46, 0.20); transform: translateY(-2px); }
.region .flag { font-size: 28px; line-height: 1; }
.region .name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 10px;
  letter-spacing: -0.005em;
}
.region .loc {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ============================================================
   CTA strip — light "ring" card (Robonix's Products-page CTA shape).
   Replaces Saddique's previous dark-gradient block.
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(135deg, #F5DDD5 0%, #EDC9BE 100%);
  border-radius: var(--r-xl);
  outline: 1px solid rgba(200, 16, 46, 0.18);
  outline-offset: -1px;
  padding: 48px 28px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 32px rgba(122, 12, 27, 0.10);
}
@media (min-width: 640px) { .cta { padding: 64px 56px; } }
.cta h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin: 0 auto 14px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  max-width: 20ch;
}
.cta .lead {
  color: var(--muted);
  margin: 0 auto;
  font-size: 14.5px;
  max-width: 56ch;
}
.cta .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.cta .sms-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule-strong);
  color: var(--body);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.cta .sms-cta:hover { color: var(--ink); border-color: var(--ink); }

/* ============================================================
   TNQ Transport cross-brand band — sister division callout.
   Maroon-tinted "ring" card so it reads as related-but-distinct
   from the Saddique-red surfaces.
   ============================================================ */
.tnq-band {
  position: relative;
  background: linear-gradient(135deg, #F3E2E0 0%, #E9CFCC 100%);
  border-radius: var(--r-xl);
  outline: 1px solid rgba(107, 15, 26, 0.20);
  outline-offset: -1px;
  padding: 40px 28px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 32px rgba(78, 10, 19, 0.10);
}
@media (min-width: 640px) { .tnq-band { padding: 56px 56px; } }
.tnq-band .eyebrow { color: var(--tnq); margin-inline: auto; }
.tnq-band .eyebrow .dot {
  background: var(--tnq);
  box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.12);
  animation: none;
}
.tnq-band h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--ink);
  margin: 0 auto 14px;
  line-height: 1.1;
  letter-spacing: -0.022em;
  max-width: 22ch;
}
.tnq-band h2 .accent { color: var(--tnq); }
.tnq-band .lead {
  color: var(--body);
  margin: 0 auto;
  font-size: 14.5px;
  max-width: 60ch;
}
.tnq-band .meta {
  margin: 14px auto 0;
  font-size: 12.5px;
  color: var(--muted);
  max-width: 60ch;
}
.tnq-band .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* TNQ footer cross-link — small maroon "sister site" chip in the footer bottom.
   Scoped under .footer to beat the generic `.footer a { color: var(--red) }` rule. */
.footer .footer-tnq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-pill, 999px);
  background: transparent;
  color: var(--tnq);
  border: 1.5px solid var(--tnq);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.footer .footer-tnq-link:hover { background: var(--tnq); color: #fff; }

/* Footer bottom: group the right-side action chips so driver + TNQ sit together */
.footer-bottom .footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   /transport funnel page — TNQ-tinted hero + brand-compare grid.
   Scoped to .transport-hero / .brand-compare so existing Saddique
   pages are unaffected.
   ============================================================ */
.transport-hero .eyebrow { color: var(--tnq); }
.transport-hero .eyebrow .dot {
  background: var(--tnq);
  box-shadow: 0 0 0 3px rgba(107, 15, 26, 0.12);
  animation: none;
}
.transport-hero .h-display .accent { color: var(--tnq); }
.transport-hero .meta {
  margin: 16px auto 0;
  font-size: 12.5px;
  color: var(--muted);
}

.brand-compare {
  display: grid;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 760px) { .brand-compare { grid-template-columns: 1fr 1fr; } }
.brand-compare .card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.brand-compare .card .who {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.brand-compare .saddique .who { color: var(--red); }
.brand-compare .tnq .who { color: var(--tnq); }
.brand-compare .card h3 { margin: 4px 0 0; font-size: 1.15rem; color: var(--ink); }
.brand-compare .card p { font-size: 14px; margin: 8px 0 16px; }
.brand-compare .card .btn { margin-top: auto; }

/* ============================================================
   Address card / contact info row
   ============================================================ */
.address-card {
  background: var(--paper-card);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  border-radius: var(--r-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 760px) { .address-card { grid-template-columns: 1fr; gap: 24px; } }
.address-card .info h4 {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.address-card .info p {
  color: var(--body);
  font-size: 14px;
  line-height: 1.65;
}
.address-card .info a {
  color: var(--red);
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 16, 46, 0.25);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.address-card .info a:hover { color: var(--red-bright); border-bottom-color: var(--red); }

/* ============================================================
   Form
   ============================================================ */
.form-card {
  background: linear-gradient(135deg, #F5DDD5 0%, #EDC9BE 100%);
  outline: 1px solid rgba(200, 16, 46, 0.18);
  outline-offset: -1px;
  border-radius: var(--r-xl);
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 10px 32px rgba(122, 12, 27, 0.10);
}
@media (min-width: 640px) { .form-card { padding: 40px; } }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row.single { grid-template-columns: 1fr; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-field {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 500;
  color: var(--body);
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 13.5px;
  padding: 12px 14px;
  background: var(--paper-card);
  border: none;
  outline: 1px solid var(--rule-strong);
  outline-offset: -1px;
  border-radius: 12px;
  color: var(--ink);
  transition: outline-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--mute-2); }
.form-field input:focus,
.form-field textarea:focus {
  outline-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.10);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-actions { margin-top: 8px; }

/* Mid-form heading for the "Where are you moving from?" block */
.form-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 0;
  letter-spacing: -0.005em;
}

/* "Sorry, outside our coverage area" inline error */
.suburb-error {
  margin: 0;
  font-size: 13.5px;
  color: var(--red-deep);
  background: rgba(200, 16, 46, 0.06);
  outline: 1px solid rgba(200, 16, 46, 0.22);
  outline-offset: -1px;
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.55;
}
.suburb-error a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 16, 46, 0.3);
}
.suburb-error a:hover { color: var(--red-bright); border-bottom-color: var(--red); }

/* Invalid-suburb visual cue on the input itself */
.form-field input[data-suburb-invalid="true"] {
  outline-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}

.form-success {
  background: var(--paper-card);
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  border-radius: var(--r-lg);
  padding: 48px;
  text-align: center;
  margin-top: 24px;
}
.form-success .icon-ok {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-btn);
}
.form-success .icon-ok svg { width: 26px; height: 26px; }

/* ============================================================
   Map embed
   ============================================================ */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  outline: 1px solid var(--rule);
  outline-offset: -1px;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { width: 100%; height: 460px; display: block; border: 0; }

/* Leaflet street map (replaces the stylised SVG) — Apple-Maps-ish look */
#streetmap.streetmap {
  height: 460px;
  background: #F1ECE4;   /* sandy fallback colour while tiles load */
}
.leaflet-container { font-family: var(--font-body); }
/* Custom red pin */
.sl-pin {
  background: transparent !important;
  border: 0 !important;
  filter: drop-shadow(0 4px 8px rgba(122, 12, 27, 0.30));
}
.leaflet-popup-content-wrapper {
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.leaflet-popup-content {
  margin: 12px 14px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--body);
}
.leaflet-popup-content strong { color: var(--ink); display: block; margin-bottom: 3px; }
.leaflet-popup-content a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid rgba(200, 16, 46, 0.30);
}
.leaflet-popup-content a:hover { color: var(--red-bright); border-bottom-color: var(--red); }
@media (max-width: 640px) { #streetmap.streetmap { height: 360px; } }

/* Stylised Townsville mini-map — clickable, on-palette */
.map-link {
  position: relative;
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.map-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.map-link svg { width: 100%; height: auto; display: block; }
.map-link-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--r-pill);
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.map-link:hover .map-link-overlay,
.map-link:focus-visible .map-link-overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .map-link-overlay { opacity: 1; transform: none; bottom: 12px; left: 12px; padding: 6px 12px; font-size: 11.5px; }
}

/* ============================================================
   QLD animation slot (about + contact regional callout)
   ============================================================ */
.qld-slot {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) {
  .qld-slot { grid-template-columns: 1fr; gap: 32px; }
}
.qld-stage {
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
}
.qld-stage svg { width: 100%; height: auto; display: block; }

/* ============================================================
   Footer — light, 5/7 layout, red links (Robonix pattern)
   ============================================================ */
.footer {
  background: var(--paper);
  color: var(--muted);
  padding: 56px 0 28px;
  margin-top: 0;
  border-top: 1px solid var(--rule);
}
@media (min-width: 640px) { .footer { padding: 64px 0 36px; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h5 {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer a {
  color: var(--red);
  transition: color 0.18s ease;
}
.footer a:hover { color: var(--red-bright); }
.footer ul { list-style: none; }
.footer li {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}
.footer .footer-brand:hover { color: var(--ink); }
.footer-logo {
  height: 64px;
  width: auto;
  display: block;
  background: transparent;
}
.footer .lead {
  color: var(--muted);
  font-size: 13.5px;
  max-width: 36ch;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--muted);
}
.footer-driver-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--r-pill, 999px);
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}
.footer-driver-btn:hover { background: var(--red); color: #fff; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Truck animation specifics — DO NOT MODIFY the SVG path or
   geometry; these are sacred per the v2 build brief. CSS here
   only affects rendering hints.
   ============================================================ */
.truck-group { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .eyebrow .dot { animation: none; }
}

/* ============================================================
   Granola-style hero refresh + sticky floating nav  (2026-06-14)
   Homepage top only. Palette unchanged (red #C8102E); other pages untouched.
   ============================================================ */
.nav { position: sticky; top: 12px; z-index: 60; }
@media (min-width: 820px) {
  .nav-inner {
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 14px 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-radius: 999px;
    box-shadow: var(--shadow-pill);
    outline: 1px solid var(--rule);
    outline-offset: -1px;
  }
  .nav-inner .brand { background: transparent; box-shadow: none; outline: none; height: 40px; padding: 0; }
  .nav-inner .nav-links { background: transparent; box-shadow: none; outline: none; height: auto; padding: 0; gap: 22px; }
}

/* Hero headline -> editorial serif, larger (the Granola focal point) */
.hero-copy .h-display {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

/* Primary hero CTA -> large rounded pill (keeps Saddique red) */
.hero-actions .btn-filled { border-radius: 999px; padding: 15px 26px; font-size: 15.5px; }
.hero-actions .btn-secondary { border-radius: 999px; padding: 15px 22px; }

/* Division line under the hero CTAs */
.hero-division { margin-top: 16px; font-size: 13.5px; color: var(--muted); }
.hero-division strong { color: var(--tnq, #6B0F1A); font-weight: 600; }

/* 'Get a quote' info dropdown — compact note that freight quotes go via TNQ, then a continue button */
#quoteMenu { padding: 12px; min-width: 228px; max-width: 248px; }
#quoteMenu .qmenu-note { font-size: 11.5px; line-height: 1.45; color: var(--body); margin: 0 0 10px; }
#quoteMenu .qmenu-note strong { color: var(--tnq, #6B0F1A); font-weight: 700; }
#quoteMenu .qmenu-continue {
  display: flex; width: fit-content; margin: 2px auto 0;
  align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px;
  background: var(--red); color: #fff; font-weight: 600; font-size: 12.5px; text-decoration: none;
}
#quoteMenu .qmenu-continue:hover { background: var(--red-deep); }
#quoteMenu .qmenu-continue .arrow { transition: transform .15s ease; }
#quoteMenu .qmenu-continue:hover .arrow { transform: translateX(3px); }
