/* ============================================================
   Man With a Van — Eastern Suburbs
   Stylesheet — mobile-first, CSS custom properties for theming
   ============================================================ */

:root {
  /* Brand palette — swap these once real branding exists */
  --color-primary: #0b3d5c;       /* deep trustworthy blue */
  --color-primary-dark: #082c43;
  --color-primary-light: #14567f;
  --color-accent: #f5a623;        /* warm orange for CTAs */
  --color-accent-dark: #d98c0f;

  --color-bg: #ffffff;
  --color-bg-alt: #f6f8fa;
  --color-text: #1c2b36;
  --color-text-muted: #55677a;
  --color-border: #e2e8ee;
  --color-white: #ffffff;
  --color-success-bg: #e7f7ee;
  --color-success-text: #1e7a46;
  --color-error-bg: #fdecec;
  --color-error-text: #c0392b;

  /* Google Fonts (linked in index.html <head>) with system-font fallback chains.
     Delete the Google Fonts <link> in index.html to fall back to system fonts only. */
  --font-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-heading: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(11, 61, 92, 0.08);
  --shadow-md: 0 6px 20px rgba(11, 61, 92, 0.12);
  --shadow-lg: 0 12px 32px rgba(11, 61, 92, 0.16);

  --header-height: 68px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Many elements below (buttons, contact-channel cards, etc.) set their own
   `display` via a class, which otherwise beats the browser's default
   [hidden] rule on specificity ties — this keeps hidden="" reliably hidden
   regardless of what else targets the element (used for phone/WhatsApp/SMS
   CTAs and social links that are hidden until real details exist). */
[hidden] { display: none !important; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.2; font-family: var(--font-heading); }
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; }

.eyebrow {
  color: var(--color-accent-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 8px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--color-primary);
}
.section-sub {
  color: var(--color-text-muted);
  max-width: 640px;
  font-size: 1.05rem;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-accent);
  color: #2b1a00;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); }
.btn-small { padding: 8px 14px; font-size: 0.9rem; }
.btn-large { padding: 15px 28px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.phone-placeholder { font-family: var(--font-mono); text-decoration: underline dotted; text-underline-offset: 3px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-primary);
  white-space: nowrap;
}
.logo span { font-weight: 500; color: var(--color-text-muted); }

.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover { color: var(--color-primary); border-color: var(--color-accent); }

/* ---------- Services nav dropdown ---------- */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle { color: var(--color-primary); border-color: var(--color-accent); }
.nav-dropdown-toggle .caret { font-size: 0.65em; transition: transform 0.15s ease; }
.nav-dropdown.open .nav-dropdown-toggle .caret,
.nav-dropdown:hover .nav-dropdown-toggle .caret { transform: rotate(180deg); }

.nav-dropdown-menu { list-style: none; margin: 0; padding: 0; }

@media (min-width: 900px) {
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown-menu li + li { margin-top: 2px; }
  .nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    border-bottom: none;
  }
  .nav-dropdown-menu a:hover { background: var(--color-bg-alt); color: var(--color-primary); }
}

@media (max-width: 899px) {
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 12px 4px; border-bottom: 1px solid var(--color-border); }
  .nav-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: var(--color-bg-alt);
    transition: max-height 0.2s ease;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 240px; }
  .nav-dropdown-menu a {
    display: block;
    padding: 12px 4px 12px 24px;
    border-bottom: 1px solid var(--color-border);
    font-weight: 500;
  }
}

.header-ctas { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-primary);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  padding: 56px 0;
}
.hero-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}
.hero-text .eyebrow { color: var(--color-accent); }
.hero-text h1 {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  color: var(--color-white);
}
.hero-sub {
  color: #d7e4ee;
  font-size: 1.1rem;
  max-width: 540px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-ctas .btn-outline { border-color: var(--color-white); color: var(--color-white); }
.hero-ctas .btn-outline:hover { background: var(--color-white); color: var(--color-primary); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.92rem; color: #cfe0ec; }

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Service tiles live inside the hero so they're visible above the fold */
.hero-services {
  display: grid;
  gap: 20px;
  margin-top: 44px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.card h3 { color: var(--color-primary); }
.card p { color: var(--color-text-muted); }
.card-link { font-weight: 700; color: var(--color-accent-dark); }
.card-link:hover { text-decoration: underline; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.areas { background: var(--color-bg-alt); }
.areas-layout {
  display: grid;
  gap: 30px;
  margin-top: 36px;
  grid-template-columns: 1fr;
}
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.suburb-grid li {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-primary-dark);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  gap: 26px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
.step { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}
.step h3 { color: var(--color-primary); font-size: 1.05rem; }
.step p { color: var(--color-text-muted); font-size: 0.95rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--color-bg-alt); }
.badge-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
  grid-template-columns: 1fr;
}
.badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.badge-icon { font-size: 2rem; margin-bottom: 10px; }
.badge h3 { color: var(--color-primary); font-size: 1rem; }
.badge p { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-table {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
.price-card {
  position: relative;
  min-width: 0;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
}
.price-card.featured {
  border: 2px solid var(--color-accent);
  background: #fff8ec;
  box-shadow: var(--shadow-lg);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #2b1a00;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.price-card h3 { font-size: 1rem; color: var(--color-primary); }
.price { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 6px; overflow-wrap: anywhere; }
.price span { color: var(--color-accent-dark); }
.price-desc { color: var(--color-text-muted); font-size: 0.9rem; margin: 0; }

/* "Best suited to" bullet list inside a pricing card */
.price-suited {
  text-align: left;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card.featured .price-suited { border-top-color: rgba(217, 140, 15, 0.35); }
.price-suited li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.price-suited li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent-dark);
  font-weight: 700;
}

/* "Additional Mover" line beneath the three main cards */
.pricing-addon {
  text-align: center;
  max-width: 480px;
  margin: 32px auto 0;
  padding: 14px 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 0.95rem;
}
.pricing-addon strong { color: var(--color-primary-dark); }

.pricing-note {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 24px;
  font-style: italic;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
/* "Call for Availability — 0400 000 000" is longer than the site's other
   CTA buttons (e.g. "Call Now — ..."), so on narrow phones let it wrap to
   two lines instead of overflowing the fixed-width nowrap .btn default. */
.pricing-ctas .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.stars { color: var(--color-accent); font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { color: var(--color-text); }
.reviewer { color: var(--color-text-muted); font-weight: 600; font-size: 0.88rem; margin: 0; }

/* ============================================================
   CONTACT / QUOTE FORM
   ============================================================ */
.contact { background: var(--color-primary); color: var(--color-white); }
.contact .eyebrow { color: var(--color-accent); }
.contact .section-title { color: var(--color-white); }
.contact .section-sub { color: #d7e4ee; }

.contact-inner {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.contact-channels {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: 1fr;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: background 0.15s ease;
}
.contact-channel:hover { background: rgba(255,255,255,0.16); }
.contact-channel-icon { font-size: 1.5rem; }
.contact-channel strong { color: var(--color-white); }
.contact-channel span span { color: #cfe0ec; font-size: 0.9rem; overflow-wrap: anywhere; }

.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.quote-form .form-row { margin-bottom: 16px; }
.quote-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
}
.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
}
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-status {
  margin: 14px 0 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.92rem;
  min-height: 1.2em;
}
.form-status.success { color: var(--color-success-text); }
.form-status.error { color: var(--color-error-text); }
.form-privacy-note {
  margin: 10px 0 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}
.form-privacy-note a { text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary-dark);
  color: #cfe0ec;
  padding: 50px 0 0;
}
.footer-inner {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.footer-col h3 { color: var(--color-white); font-size: 1.1rem; }
.footer-col h3 span { color: #9db9cb; font-weight: 500; }
.footer-col h4 { color: var(--color-white); font-size: 0.95rem; margin-bottom: 10px; }
.footer-col p { font-size: 0.9rem; overflow-wrap: anywhere; }
.footer-col a:hover { text-decoration: underline; }
.footer-abn { font-size: 0.8rem; color: #9db9cb; }
.footer-social { display: flex; gap: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px;
  padding: 18px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #9db9cb;
}

/* ============================================================
   BREADCRUMB (used inside the dark page-header hero on inner pages)
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.85rem;
  color: #cfe0ec;
  margin-bottom: 18px;
}
.breadcrumb a { color: #cfe0ec; text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--color-white); }
.breadcrumb .sep { opacity: 0.55; }
.breadcrumb [aria-current="page"] { color: var(--color-white); font-weight: 600; }

.hero-text.narrow { max-width: 720px; }

/* ============================================================
   NEARBY SUBURBS (suburb pages)
   ============================================================ */
.nearby-suburbs { background: var(--color-bg-alt); }
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.pill-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.pill-links a:hover { border-color: var(--color-accent); color: var(--color-accent-dark); }

/* ============================================================
   AREAS HUB — suburb-grid items become links
   ============================================================ */
.suburb-grid a { display: block; color: inherit; }
.suburb-grid li { padding: 0; overflow: hidden; transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.suburb-grid li:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.suburb-grid a { padding: 10px 14px; }
.suburb-grid.plain li { padding: 10px 14px; }

/* ============================================================
   STATS ROW (Why Choose Us — fill in once real numbers exist)
   ============================================================ */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 8px 0 40px;
}
.stat-badge {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  text-align: center;
  min-width: 160px;
}
.stat-badge .stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}
.stat-badge .stat-label { font-size: 0.82rem; color: var(--color-text-muted); }

/* ============================================================
   REVIEWS CTA — link to real Google Business Profile
   ============================================================ */
.reviews-cta { text-align: center; margin-top: 30px; }

/* ============================================================
   QUOTE FORM — additional field types (select, checkboxes)
   ============================================================ */
.quote-form select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
}
.quote-form select:focus { outline: none; border-color: var(--color-primary); background: var(--color-white); }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text);
}
.checkbox-group input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--color-primary);
}

/* ============================================================
   FAQ ACCORDION (native <details>/<summary>, no JS needed)
   ============================================================ */
.faq-list { margin-top: 36px; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--color-accent-dark);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 14px 0 0; color: var(--color-text-muted); }

/* ============================================================
   CHECKLIST PAGE
   ============================================================ */
.checklist-week { margin-bottom: 40px; }
.checklist-week h2 { color: var(--color-primary); }
.checklist-items { display: flex; flex-direction: column; gap: 10px; }
.checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
}
.checklist-items input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.checklist-actions { margin: 30px 0 8px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
  grid-template-columns: 1fr;
}
.blog-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
}
.blog-card .blog-meta { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 8px; }
.blog-card h3 { color: var(--color-primary); }
.blog-card p { color: var(--color-text-muted); }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { margin-top: 1.5em; color: var(--color-primary); }
.prose h3 { margin-top: 1.3em; color: var(--color-primary); }
.prose p { color: var(--color-text); }
.prose ul, .prose ol { margin: 0 0 1.2em 1.4em; padding: 0; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose ul li, .prose ol li { margin-bottom: 0.4em; color: var(--color-text); }
.prose .article-meta { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 1.4em; }
.placeholder-callout {
  background: #fff8ec;
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #7a5200;
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ============================================================
   SERVICE PAGES — what's included, obstacles, pricing signal
   ============================================================ */
.included-list { max-width: 640px; margin: 36px auto 0; }
.included-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.included-list li:last-child { border-bottom: none; }

.obstacles { background: var(--color-bg-alt); }
.obstacles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.obstacle-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
}
.obstacle-item h3 { color: var(--color-primary); font-size: 1.05rem; margin-bottom: 8px; }
.obstacle-item p { color: var(--color-text-muted); margin: 0; }
.confirm-flag {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 12px;
  background: #fff8ec;
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius-sm);
  color: #7a5200;
  font-size: 0.82rem;
}

.pricing-signal { text-align: center; margin-top: 36px; }
.price-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.price-cards-row .price-card { flex: 1 1 220px; max-width: 260px; margin: 0; }

.related-links { background: var(--color-bg-alt); }

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--color-white);
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* On short phone viewports (e.g. iPhone SE), the full-size floating button
   can overlap the hero's Call Now CTA on initial load before any scrolling.
   Shrink and tuck it closer to the corner just for that range. */
@media (max-height: 700px) and (max-width: 480px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    bottom: 12px;
    right: 12px;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet and up */
@media (min-width: 640px) {
  .hero-services { grid-template-columns: repeat(2, 1fr); }
  .badge-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-table { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .suburb-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav (below desktop breakpoint) */
@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 20px 20px; }
  .main-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--color-border); }
  .header-ctas .btn-small.btn-outline span.phone-placeholder { display: none; }
  .nav-toggle { display: flex; }
}

/* Small phones: the full-text logo + call button + quote button + hamburger
   don't all fit on one line at ~375px, so shrink and stack the logo and
   tighten spacing to keep the header on a single row without overflow. */
@media (max-width: 440px) {
  .container { padding: 0 14px; }
  .header-inner { gap: 8px; }
  .logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.2;
  }
  .logo span { font-size: 0.68rem; }
  .header-ctas { gap: 6px; }
  .header-ctas .btn-small { padding: 8px 10px; font-size: 0.85rem; }
  .nav-toggle { width: 32px; }
}

/* Desktop */
@media (min-width: 900px) {
  section { padding: 88px 0; }
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
  .hero-services { grid-template-columns: repeat(3, 1fr); }
  .badge-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-table { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .suburb-grid { grid-template-columns: repeat(5, 1fr); }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1fr; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   PRINT (checklist page)
   ============================================================ */
@media print {
  .site-header, .site-footer, .whatsapp-float, .btn-print, .hero, .contact {
    display: none !important;
  }
  body { color: #000; }
  .checklist-items li { break-inside: avoid; border-color: #999; background: #fff; }
}
