/* ==========================================================================
   Brisbane City Glass — Area Pages
   Shared stylesheet (header, footer, hero, forms, accordions, services, FAQ)
   Brand colours pulled from the main site logo: navy + bright blue + gold.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0b2f6b;   /* deep brand navy (BRISBANE CITY wordmark) */
  --navy-dark:   #08234f;
  --blue:        #1f7fd4;   /* bright building blue (GLASS wordmark) */
  --blue-light:  #e8f1fb;
  --gold:        #f2a63b;   /* logo swoosh accent */
  --gold-dark:   #d98a1c;
  --ink:         #17202e;   /* body text */
  --ink-soft:    #4a5568;
  --line:        #e2e8f0;
  --bg:          #ffffff;
  --bg-alt:      #f4f7fb;   /* light section band */
  --bg-band:     #eef3f9;
  --white:       #ffffff;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(11,47,107,.08);
  --shadow-md:   0 6px 24px rgba(11,47,107,.10);
  --shadow-lg:   0 18px 50px rgba(11,47,107,.16);
  --maxw:        1180px;
  --header-h:    76px;
  --font-head:   'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --font-body:   'Open Sans', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(1.9rem, 4.4vw, 2.85rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); letter-spacing: -.3px; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
p  { margin: 0 0 1.1em; color: var(--ink); text-wrap: pretty; }
a  { color: var(--blue); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--navy); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 68px 0; }
.section--alt { background: var(--bg-alt); }
.section--band { background: var(--bg-band); }
.section--navy { background: var(--navy); color: #dce7f5; }
.section--navy h2, .section--navy h3 { color: #fff; }
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
}
.section--navy .eyebrow { color: var(--gold); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 60ch; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  min-height: 50px; line-height: 1.1; text-align: center;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--gold { background: var(--gold); color: #3a2508; box-shadow: 0 6px 16px rgba(217,138,28,.28); }
.btn--gold:hover { background: var(--gold-dark); color: #2c1c05; transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); color: #fff; transform: translateY(-2px); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: #1668b0; color: #fff; transform: translateY(-2px); }
.btn--cta { background: #1e56c9; color: #fff; box-shadow: 0 6px 16px rgba(30,86,201,.30); }
.btn--cta:hover { background: #1746aa; color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--block { width: 100%; }

/* ---------- Top utility bar ---------- */
.topbar { background: var(--navy-dark); color: #cdddf2; font-size: .84rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 16px; }
.topbar a { color: #cdddf2; font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar__left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 15px; height: 15px; opacity: .85; }
.topbar__right { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.topbar__badge { color: var(--gold); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 20px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 0; list-style: none; flex-wrap: nowrap; }
.main-nav a {
  display: block; padding: 10px 11px; font-family: var(--font-head);
  font-weight: 600; font-size: .92rem; color: var(--ink); border-radius: 6px; white-space: nowrap;
}
.main-nav a:hover, .main-nav .is-active > a { color: var(--navy); background: var(--blue-light); }
.main-nav .is-active > a { color: var(--navy); }
/* dropdown */
.has-sub { position: relative; }
.has-sub > a::after { content: "\25be"; font-size: .7em; margin-left: 6px; opacity: .7; }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 218px; background: #fff;
  list-style: none; box-shadow: var(--shadow-md); border-radius: 10px; padding: 8px;
  border: 1px solid var(--line);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { padding: 9px 12px; font-weight: 600; font-size: .9rem; border-radius: 6px; }
.sub-menu a:hover { background: var(--blue-light); }
.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.02rem; white-space: nowrap; }
.header-phone svg { width: 20px; height: 20px; color: var(--gold-dark); }

/* mobile nav */
.nav-toggle { display: none; background: var(--navy); color: #fff; border: 0; width: 48px; height: 48px; border-radius: 8px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; }
.nav-backdrop { display: none; }
.nav-close { display: none; }  /* hidden on desktop; shown inside mobile media query */

/* ---------- Hero (suburb + areas) ---------- */
.hero { position: relative; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 55%, #061a3d 100%); color: #eaf1fb; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(ellipse at 70% 20%, #000 0%, transparent 72%); pointer-events: none;
}
.hero::after { content: ""; position: absolute; right: -8%; top: -30%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(31,127,212,.5), transparent 62%); pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding: 60px 0; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero .lead, .hero p { color: #c6d6ec; }
.hero-breadcrumb { font-size: .85rem; color: #9fb6d6; margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.hero-breadcrumb a { color: #cfe0f5; }
.hero-breadcrumb span { opacity: .6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 8px; }
.hero-trust li { display: flex; align-items: center; gap: 9px; list-style: none; font-weight: 600; font-size: .95rem; color: #dbe7f6; }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- Hero enquiry form ---------- */
.enquiry-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 30px 28px; color: var(--ink); }
.enquiry-card h2 { font-size: 1.35rem; margin-bottom: 4px; }
.enquiry-card .form-sub { font-size: .92rem; color: var(--ink-soft); margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 12px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--navy); margin-bottom: 5px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--ink); background: #fbfcfe; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(31,127,212,.15); background: #fff; }
.field textarea { resize: vertical; min-height: 84px; }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 10px; text-align: center; }
.form-success { display: none; background: #e7f6ee; border: 1.5px solid #b8e3c9; color: #1c6b3f; padding: 14px 16px; border-radius: var(--radius); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.form-success.show { display: block; }
.form-success.is-error { background: #fdecec; border-color: #f3c0c0; color: #a12626; }

/* ---------- Generic content ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose ul.ticks { list-style: none; margin: 0 0 1.2em; }
.prose ul.ticks li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.prose ul.ticks li::before { content: ""; position: absolute; left: 0; top: 6px; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; }
.prose ul.ticks li::after { content: ""; position: absolute; left: 6px; top: 10px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ---------- Service cards (image-led) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfe0f3; }
.service-card__img { width: 100%; height: 190px; object-fit: cover; display: block; background: #dfe8f3; border: 0; }
.feature-photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.feature-photo img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; }

/* ---------- Our Work gallery ---------- */
.our-work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.work-tile {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #dfe8f3;
  aspect-ratio: 4 / 3;
}
.work-tile img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.work-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,35,79,.34));
  opacity: 0; transition: opacity .3s ease;
}
.work-tile:hover img { transform: scale(1.06); }
.work-tile:hover::after { opacity: 1; }
@media (max-width: 900px) { .our-work-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .our-work-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.work-tile { cursor: zoom-in; }

/* ---------- Our Work lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(6,16,35,.93); padding: 24px; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: min(1100px, 94vw); max-height: 86vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 24px 70px rgba(0,0,0,.55); object-fit: contain; background: #0b1a33; }
.lightbox__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .18s ease; }
.lightbox__btn:hover { background: rgba(255,255,255,.3); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__close { position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; }
.lightbox__close:hover { background: rgba(255,255,255,.3); }
.lightbox__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #cdd8ea; font-size: .9rem; letter-spacing: .5px; }
@media (max-width: 640px) { .lightbox__btn { width: 44px; height: 44px; } .lightbox__prev { left: 8px; } .lightbox__next { right: 8px; } .lightbox { padding: 12px; } }

/* ---------- Thank-you popup ---------- */
.ty-overlay { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; background: rgba(8,16,35,.62); backdrop-filter: blur(3px); padding: 24px; }
.ty-overlay.open { display: flex; animation: ty-fade .22s ease; }
@keyframes ty-fade { from { opacity: 0; } to { opacity: 1; } }
.ty-card { position: relative; width: min(440px, 100%); background: #fff; border-radius: 16px; padding: 40px 32px 32px; text-align: center; box-shadow: 0 30px 80px rgba(8,16,35,.4); animation: ty-pop .28s cubic-bezier(.18,.9,.32,1.2); }
@keyframes ty-pop { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
.ty-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; background: transparent; color: var(--soft, #667); font-size: 1.7rem; line-height: 1; cursor: pointer; border-radius: 50%; }
.ty-close:hover { background: #f0f3f8; }
.ty-check { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 50%; background: #e7f4ec; display: flex; align-items: center; justify-content: center; }
.ty-check svg { width: 46px; height: 46px; }
.ty-check circle { stroke: #1f8a4c; stroke-width: 2; }
.ty-check path { stroke: #1f8a4c; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: ty-draw .5s .18s ease forwards; }
@keyframes ty-draw { to { stroke-dashoffset: 0; } }
.ty-title { margin: 0 0 10px; font-size: 1.6rem; color: var(--navy, #0b2f6b); }
.ty-text { margin: 0 0 22px; color: var(--soft, #4a5568); font-size: 1rem; line-height: 1.55; }
.ty-call { display: inline-flex; }
.service-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-card h2, .service-card h3 { font-size: 1.08rem; margin: 0 0 8px; line-height: 1.25; }
.service-card p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.service-card a.card-link { font-family: var(--font-head); font-weight: 700; font-size: .88rem; color: var(--blue); display: inline-flex; align-items: center; gap: 6px; }
.service-card a.card-link svg { width: 16px; height: 16px; flex: none; }
.service-card a.card-link:hover { color: var(--navy); gap: 9px; }

/* ---------- Feature image placeholder (SEO-friendly, striped) ---------- */
.img-ph {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #dfe8f3;
  background-image: repeating-linear-gradient(135deg, #d5e1f0 0, #d5e1f0 14px, #e6eef8 14px, #e6eef8 28px);
  display: flex; align-items: flex-end; min-height: 260px; border: 1px solid var(--line);
}
.img-ph figcaption { position: relative; z-index: 2; margin: 0; padding: 12px 14px; font-family: 'Courier New', monospace; font-size: .74rem; color: #33517a; background: rgba(255,255,255,.82); border-top-right-radius: 8px; letter-spacing: .3px; }

/* ---------- Why choose (feature list) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.why-item__ic { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); flex: none; display: flex; align-items: center; justify-content: center; }
.why-item__ic svg { width: 22px; height: 22px; color: var(--gold); }
.why-item h3 { font-size: 1.02rem; margin-bottom: 5px; }
.why-item p { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 30px 22px 24px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--blue); opacity: .28; line-height: 1; }
.step h3 { margin: 8px 0 8px; font-size: 1.12rem; }
.step p { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.section--navy .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); }
.section--navy .step p { color: #b9c9e0; }
.section--navy .step__num { color: var(--gold); opacity: .9; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.03rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--gold-dark); border-radius: 2px; transition: transform .22s ease; }
.faq-q .plus::before { top: 11px; left: 3px; width: 18px; height: 2.5px; }
.faq-q .plus::after  { left: 11px; top: 3px; width: 2.5px; height: 18px; }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a > div { padding: 0 22px 20px; color: var(--ink-soft); font-size: .97rem; }

/* ---------- Final CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%); color: #fff; border-radius: 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; left: -6%; bottom: -40%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(242,166,59,.22), transparent 62%); }
.cta-band .container { position: relative; z-index: 2; text-align: center; padding: 58px 24px; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: #c6d6ec; max-width: 56ch; margin: 0 auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ==========================================================================
   Areas We Serve page — region accordions + search
   ========================================================================== */
.search-wrap { max-width: 620px; margin: 26px auto 0; position: relative; }
.search-wrap svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--navy); opacity: .55; }
#suburbSearch {
  width: 100%; padding: 16px 18px 16px 52px; font-size: 1.05rem; font-family: var(--font-body);
  border: 2px solid rgba(255,255,255,.25); border-radius: 50px; background: rgba(255,255,255,.97); color: var(--ink); box-shadow: var(--shadow-md);
}
#suburbSearch:focus { outline: none; border-color: var(--gold); }
.search-meta { text-align: center; color: #b9cae4; font-size: .9rem; margin-top: 12px; min-height: 20px; }

/* areas hero: centered, balanced */
.areas-hero-inner { max-width: 860px; margin: 0 auto; text-align: center; padding: 62px 0; }
.areas-hero-inner .hero-breadcrumb { justify-content: center; }
.areas-hero-inner .hero-cta { justify-content: center; }
.areas-hero-inner .lead { margin-left: auto; margin-right: auto; }
/* region quick-jump chips */
.region-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.region-chips a {
  font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: #eaf1fb;
  border: 1.5px solid rgba(255,255,255,.28); border-radius: 40px; padding: 9px 16px; background: rgba(255,255,255,.06);
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.region-chips a:hover { background: var(--gold); color: #3a2508; border-color: var(--gold); transform: translateY(-2px); }

.region-list { display: flex; flex-direction: column; gap: 16px; max-width: 960px; margin: 0 auto; }
.region {
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.region__head { width: 100%; border: 0; background: #fff; cursor: pointer; text-align: left; padding: 22px 24px; display: flex; align-items: center; gap: 18px; transition: background .15s ease; }
.region__head:hover { background: var(--bg-alt); }
.region__badge { width: 46px; height: 46px; border-radius: 10px; background: var(--navy); color: var(--gold); font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; display: flex; align-items: center; justify-content: center; flex: none; }
.region__title { flex: 1; }
.region__title h3 { margin: 0; font-size: 1.28rem; }
.region__title p { margin: 2px 0 0; font-size: .88rem; color: var(--ink-soft); }
.region__count { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: var(--navy); background: var(--blue-light); padding: 5px 12px; border-radius: 40px; white-space: nowrap; }
.region__chev { flex: none; width: 26px; height: 26px; color: var(--navy); transition: transform .25s ease; }
.region.open .region__chev { transform: rotate(180deg); }
.region__body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.region__inner { padding: 4px 24px 26px; }
.region__intro { font-size: .96rem; color: var(--ink-soft); margin: 0 0 18px; max-width: 72ch; }
.suburb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px 18px; }
.suburb-link { display: flex; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 6px; font-size: .92rem; color: var(--ink); border-bottom: 1px solid #f0f4f9; }
.suburb-link:hover { background: var(--blue-light); color: var(--navy); }
.suburb-link .pc { color: var(--ink-soft); font-size: .82rem; font-variant-numeric: tabular-nums; }
.suburb-link:hover .pc { color: var(--blue); }
.region__foot { margin-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line); }
.region__foot span { font-size: .9rem; color: var(--ink-soft); }
.suburb-link.is-hidden, .region.is-hidden { display: none; }
.no-results { display: none; text-align: center; color: var(--ink-soft); padding: 30px; }
.no-results.show { display: block; }
mark.hl { background: #ffe6a8; color: inherit; padding: 0 1px; border-radius: 2px; }

/* ==========================================================================
   Testimonials carousel (matches main-site style)
   ========================================================================== */
.testimonials { background: var(--bg-alt); }
.testi-head-line { width: 64px; height: 4px; background: var(--gold); border-radius: 3px; margin: 14px auto 0; }
.testi-carousel { position: relative; margin-top: 30px; padding: 0 10px; }
.testi-viewport { overflow: hidden; padding: 36px 4px 10px; }
.testi-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); will-change: transform; }
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3); box-sizing: border-box;
  background: linear-gradient(158deg, #1a56cc 0%, #123f9c 100%); color: #fff;
  border-radius: 16px; padding: 44px 26px 28px; position: relative;
  box-shadow: 0 14px 34px rgba(11,47,107,.20); display: flex; flex-direction: column;
}
.testi-badge {
  position: absolute; top: -26px; left: 26px; width: 58px; height: 58px; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #f8cd74, #d68f26); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 16px rgba(0,0,0,.22);
}
.testi-badge svg { width: 27px; height: 27px; color: #123f9c; }
.testi-g { position: absolute; top: 18px; right: 20px; width: 28px; height: 28px; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.testi-g svg { width: 17px; height: 17px; }
.testi-text { font-size: .96rem; line-height: 1.6; color: #e8f0ff; text-align: center; flex: 1; margin: 6px 0 0; }
.testi-stars { display: flex; gap: 3px; justify-content: center; margin: 16px 0 10px; }
.testi-stars svg { width: 18px; height: 18px; color: #ffc22e; }
.testi-name { text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: #fff; }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-size: 1.5rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); z-index: 3; transition: background .15s ease, color .15s ease;
}
.testi-arrow:hover { background: var(--navy); color: #fff; }
.testi-prev { left: -8px; } .testi-next { right: -8px; }
.testi-dots { display: flex; gap: 7px; justify-content: center; margin-top: 22px; flex-wrap: wrap; }
.testi-dot { width: 9px; height: 9px; border-radius: 50%; background: #c4d2e6; border: 0; cursor: pointer; padding: 0; transition: width .2s ease, background .2s ease; }
.testi-dot.active { background: var(--gold-dark); width: 24px; border-radius: 5px; }
@media (max-width: 1024px) { .testi-card { flex-basis: calc((100% - 24px) / 2); } }
@media (max-width: 640px)  { .testi-card { flex-basis: 100%; } .testi-prev { left: -2px; } .testi-next { right: -2px; } }

/* ---------- Footer ---------- */
.site-footer { background: #071a3c; color: #a9c0de; font-size: .93rem; }
.footer-main { padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-plaque { display: inline-block; background: #fff; padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; line-height: 0; box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.footer-brand .logo-plaque img { display: block; height: 56px; width: auto; }
.footer-brand p { color: #9db6d6; font-size: .92rem; margin-bottom: 16px; max-width: 34ch; }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-contact a { color: #d3e2f5; font-weight: 600; }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .3px; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: #a9c0de; }
.footer-links a:hover { color: #fff; padding-left: 3px; }

/* sitemap band */
.footer-sitemap { border-top: 1px solid rgba(255,255,255,.09); padding: 34px 0; }
.footer-sitemap h4 { margin-bottom: 8px; }
.sitemap-note { color: #8fa8ca; font-size: .84rem; margin-bottom: 20px; }
.sitemap-cols { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.sitemap-col h5 { color: var(--gold); font-family: var(--font-head); font-size: .84rem; text-transform: uppercase; letter-spacing: .6px; margin: 0 0 10px; }
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sitemap-col a { color: #9db6d6; font-size: .84rem; }
.sitemap-col a:hover { color: #fff; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .84rem; color: #89a2c4; }
.footer-bottom .fb-links { display: flex; gap: 18px; }
.footer-bottom a { color: #89a2c4; font-size: .84rem; }

/* ---------- Reveal-on-scroll (lightweight) ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Laptop: free up header space so the full menu fits on one line */
@media (max-width: 1180px) {
  .header-cta .btn { padding: 11px 16px; font-size: .9rem; min-height: 44px; }
  .main-nav a { padding: 10px 8px; font-size: .88rem; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .suburb-grid { grid-template-columns: repeat(3, 1fr); }
  .sitemap-cols { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  .hero-enquiry { order: -1; }
}
@media (max-width: 1024px) {
  /* mobile nav */
  .nav-toggle { display: inline-flex; }
  .main-nav a { font-size: 1rem; }
  .main-nav {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(340px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 84px 20px 30px;
    transform: translateX(100%); transition: transform .28s ease; box-shadow: -14px 0 40px rgba(0,0,0,.2);
    overflow-y: auto; z-index: 60;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; width: 100%; }
  .main-nav a { padding: 13px 14px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .has-sub > a::after { float: right; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; }
  .sub-menu a { border-bottom: 0; font-weight: 500; }
  .nav-backdrop.show { display: block; position: fixed; inset: 0; background: rgba(6,20,45,.5); z-index: 55; }
  .nav-close { display: flex; align-items: center; justify-content: center; position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border: 0; background: var(--bg-alt); border-radius: 8px; font-size: 1.4rem; cursor: pointer; color: var(--navy); }
}
@media (max-width: 600px) {
  .header-cta .btn--quote { display: none; }
  .header-cta .btn--call { padding: 10px 14px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar__left { gap: 14px; }
  .topbar__item.hide-sm { display: none; }
  .hero-cta .btn { width: 100%; }
  .region__head { padding: 18px 16px; gap: 12px; }
  .region__inner { padding: 4px 16px 22px; }
}
@media (max-width: 420px) {
  .suburb-grid { grid-template-columns: 1fr; }
  .topbar__left .topbar__item:not(.keep-sm) { display: none; }
}
