/* ==========================================================================
   Auckland Plumber Demo Template
   Brand colours and global settings are grouped here for quick customisation.
   ========================================================================== */
:root {
  --navy-950: #071a30;
  --navy-900: #0b2341;
  --navy-800: #10345d;
  --blue-700: #0b5cab;
  --blue-600: #0874c9;
  --blue-100: #e9f4fc;
  --blue-50: #f3f9fd;
  --accent: #f4b400;
  --accent-hover: #ffd14d;
  --ink: #122033;
  --muted: #59687a;
  --line: #dce5ed;
  --white: #fff;
  --surface: #f7f9fb;
  --radius: 12px;
  --shadow: 0 18px 45px rgba(7, 26, 48, .1);
  --container: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.mobile-bar-visible {
  padding-bottom: 82px;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.demo-notice {
  padding: 7px 16px;
  color: #374151;
  background: #eef2f5;
  border-bottom: 1px solid #d9e0e6;
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 229, 237, .9);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: 10px 10px 10px 3px;
}

.brand-mark svg {
  width: 27px;
  fill: currentColor;
}

.brand-mark .brand-mark-line {
  fill: none;
  stroke: var(--blue-700);
  stroke-linecap: round;
  stroke-width: 3;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--blue-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav,
.header-call {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: .96rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button-primary {
  color: var(--white);
  background: var(--blue-700);
  box-shadow: 0 8px 20px rgba(11, 92, 171, .24);
}

.button-primary:hover {
  background: var(--navy-800);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: #b6c4d2;
}

.button-secondary:hover {
  border-color: var(--blue-700);
}

.button-accent {
  color: var(--navy-950);
  background: var(--accent);
}

.button-accent:hover {
  background: var(--accent-hover);
}

.button-light {
  color: var(--navy-900);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.button-large {
  min-height: 54px;
  padding: 14px 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(8, 116, 201, .11), transparent 32%),
    linear-gradient(180deg, #f6fbff 0%, #fff 90%);
}

.hero::before {
  position: absolute;
  top: 40px;
  right: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(11, 92, 171, .12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 12px;
  color: var(--blue-700);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #23a566;
  border: 2px solid #c8efda;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(35, 165, 102, .12);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  line-height: 1.12;
}

h1 {
  max-width: 740px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 10vw, 4.9rem);
  letter-spacing: -.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7vw, 3.15rem);
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  letter-spacing: -.02em;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: grid;
  gap: 11px;
}

.call-helper {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: .79rem;
}

.hero-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(71, 180, 245, .22), transparent 28%),
    linear-gradient(145deg, #0e3c69, var(--navy-950));
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(7, 26, 48, .2);
}

.hero-card-pattern {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.4) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(255,255,255,.4) 50%, transparent 51%);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 65%);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.hero-badge-response {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 10px 13px;
  background: rgba(7, 26, 48, .7);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.16);
  backdrop-filter: blur(7px);
}

.hero-badge small,
.hero-badge strong {
  display: block;
  line-height: 1.15;
}

.hero-badge small {
  margin-bottom: 3px;
  color: #a9cae6;
  font-size: .61rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: .83rem;
}

.badge-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
  place-items: center;
  color: var(--navy-950);
  background: var(--accent);
  border-radius: 8px;
}

.badge-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-badge-call .badge-icon svg {
  fill: currentColor;
  stroke: none;
}

.van-scene {
  position: absolute;
  right: -10px;
  bottom: 79px;
  left: -10px;
}

.service-van {
  position: relative;
  z-index: 2;
  width: 100%;
}

.van-shadow { fill: rgba(0,0,0,.25); }
.van-body { fill: #f9fcff; }
.van-cab { fill: #dcecf7; }
.van-window { fill: #6eb8e6; }
.van-bumper { fill: #b8cad8; }
.van-wheel { fill: #071a30; }
.van-hub { fill: #7590a7; }
.van-pipe {
  fill: none;
  stroke: #0b5cab;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}
.van-drop { fill: #0874c9; }
.van-text {
  fill: #0b2341;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
}

.scene-drop {
  position: absolute;
  background: rgba(71, 180, 245, .22);
  border: 1px solid rgba(134, 201, 245, .25);
  border-radius: 55% 45% 55% 45%;
  transform: rotate(45deg);
}

.scene-drop-one {
  top: 30px;
  right: 18px;
  width: 58px;
  height: 58px;
}

.scene-drop-two {
  bottom: 35px;
  left: 20px;
  width: 32px;
  height: 32px;
}

.hero-card-footer {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(4, 18, 33, .9);
  border-top: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.rating-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  color: #dce9f6;
  background: none;
  border: 0;
  font-size: .7rem;
  font-weight: 700;
}

.stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.trust-strip {
  display: grid;
  margin-top: 52px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.trust-strip > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: .86rem;
  font-weight: 750;
}

.trust-strip > div:last-child {
  border-bottom: 0;
}

.urgent-strip {
  position: relative;
  padding: 54px 0 62px;
  background: var(--navy-950);
  overflow: hidden;
}

.urgent-strip::before {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
}

.urgent-strip .container {
  position: relative;
}

.urgent-heading {
  display: grid;
  gap: 2px;
  margin-bottom: 24px;
}

.urgent-heading .eyebrow {
  color: #79c7f7;
}

.urgent-heading h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 6vw, 2.55rem);
}

.urgent-heading > p {
  color: #aebfd0;
}

.urgent-grid {
  display: grid;
  gap: 12px;
}

.urgent-card {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  transition: background-color .2s ease, transform .2s ease;
}

.urgent-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-2px);
}

.urgent-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #6ec4f5;
  background: rgba(8, 116, 201, .18);
  border-radius: 10px;
}

.urgent-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.urgent-card h3 {
  margin-bottom: 3px;
  color: var(--white);
  font-size: .98rem;
}

.urgent-card p {
  margin-bottom: 0;
  color: #aebfd0;
  font-size: .75rem;
}

.urgent-card > a {
  color: var(--accent);
  font-size: .77rem;
  font-weight: 850;
  white-space: nowrap;
}

.check {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 50%;
  font-size: .75rem;
}

.section {
  padding: 76px 0;
}

.section-tint {
  background: var(--blue-50);
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading p {
  max-width: 650px;
}

.section-heading > p,
.why-intro > p,
.faq-intro > p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  position: relative;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), #48b7ef);
  content: "";
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .25s ease;
}

.service-card:hover {
  border-color: #b8d7ef;
  box-shadow: 0 14px 35px rgba(7, 26, 48, .08);
  transform: translateY(-3px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .92rem;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  place-items: center;
  color: var(--blue-700);
  background:
    linear-gradient(145deg, var(--white), var(--blue-100));
  border: 1px solid #cae2f3;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 8px 18px rgba(11, 92, 171, .1);
}

.icon-box svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-number {
  color: #bdcad5;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-label {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 5px;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  gap: 42px;
}

.why-intro {
  max-width: 510px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.benefit-list {
  display: grid;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid #cedde8;
}

.benefit-list article:last-child {
  border-bottom: 1px solid #cedde8;
}

.benefit-list article > span {
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 850;
}

.benefit-list h3 {
  margin-bottom: 6px;
}

.benefit-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .91rem;
}

.review-grid {
  display: grid;
  gap: 14px;
}

.confidence-section {
  background:
    linear-gradient(rgba(243,249,253,.95), rgba(243,249,253,.95)),
    radial-gradient(circle, #0b5cab 1px, transparent 1px);
  background-size: auto, 22px 22px;
}

.confidence-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.confidence-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.confidence-grid {
  display: grid;
  gap: 16px;
}

.confidence-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d8e5ee;
  border-radius: 15px;
  box-shadow: 0 12px 30px rgba(7, 26, 48, .07);
}

.confidence-visual {
  position: relative;
  height: 165px;
  overflow: hidden;
  background: #0d3156;
}

.confidence-copy {
  padding: 24px;
}

.confidence-copy > span {
  color: var(--blue-600);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.confidence-copy h3 {
  margin: 6px 0 8px;
}

.confidence-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.services-visual {
  padding: 33px;
  background:
    radial-gradient(circle at 75% 20%, rgba(72,183,239,.3), transparent 30%),
    #0d3156;
}

.services-visual > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: var(--navy-900);
  background: var(--accent);
  border-radius: 16px 16px 16px 4px;
}

.services-visual svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.services-visual > i {
  position: absolute;
  right: 29px;
  width: 44%;
  height: 10px;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
}

.services-visual > i:nth-of-type(1) { top: 47px; }
.services-visual > i:nth-of-type(2) { top: 74px; width: 35%; }
.services-visual > i:nth-of-type(3) { top: 101px; width: 40%; }

.location-visual {
  background:
    linear-gradient(35deg, transparent 46%, rgba(255,255,255,.11) 47%, rgba(255,255,255,.11) 52%, transparent 53%),
    #0f527e;
}

.location-visual b {
  position: absolute;
  top: 94px;
  left: 50%;
  color: var(--white);
  font-size: .73rem;
  transform: translateX(-50%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 50%;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50% 50% 50% 5px;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transform: translateX(-50%) rotate(-45deg);
}

.map-pin i {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 16px;
  height: 16px;
  background: var(--navy-900);
  border-radius: 50%;
}

.reviews-visual {
  display: grid;
  align-content: center;
  padding: 35px;
  background:
    radial-gradient(circle at 15% 10%, rgba(72,183,239,.25), transparent 35%),
    #0d3156;
}

.reviews-visual > div {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 1.25rem;
}

.reviews-visual > i {
  width: 92%;
  height: 9px;
  margin-bottom: 10px;
  background: rgba(255,255,255,.2);
  border-radius: 9px;
}

.reviews-visual > i:nth-of-type(2) { width: 78%; }
.reviews-visual > i:nth-of-type(3) { width: 56%; }

.review-summary {
  display: grid;
  gap: 26px;
  margin-bottom: 34px;
}

.review-summary > div:first-child {
  max-width: 690px;
}

.review-summary > div:first-child > p:last-child {
  color: var(--muted);
}

.review-rating-badge {
  display: grid;
  align-content: center;
  min-width: 220px;
  padding: 20px 24px;
  background: var(--navy-900);
  border-radius: 13px;
  box-shadow: 0 13px 28px rgba(7, 26, 48, .15);
}

.review-rating-badge .stars {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.review-rating-badge strong,
.review-rating-badge small {
  display: block;
}

.review-rating-badge strong {
  color: var(--white);
}

.review-rating-badge small {
  color: #aebfd0;
  font-size: .7rem;
}

.review-card {
  padding: 25px;
  background: var(--surface);
  border-left: 3px solid var(--blue-700);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.review-card > span {
  display: block;
  height: 30px;
  color: #badcf2;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: .9;
}

.review-card h3 {
  margin-top: 12px;
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .88rem;
}

.review-disclaimer {
  margin: 20px 0 0;
  color: #748294;
  font-size: .75rem;
}

.areas-section {
  color: #d4e4f3;
  background:
    linear-gradient(120deg, rgba(10, 41, 74, .96), rgba(11, 35, 65, 1)),
    var(--navy-900);
}

.areas-grid {
  display: grid;
  gap: 42px;
}

.areas-copy {
  align-self: center;
}

.areas-section h2 {
  color: var(--white);
}

.areas-section p:not(.eyebrow) {
  max-width: 560px;
  color: #c1d1e0;
}

.eyebrow.light {
  color: #86c9f5;
}

.area-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.18);
}

.area-list li {
  position: relative;
  padding: 13px 0 13px 26px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-weight: 700;
}

.area-list li::before {
  position: absolute;
  top: 20px;
  left: 3px;
  width: 7px;
  height: 7px;
  background: #47b4f5;
  border-radius: 50%;
  content: "";
}

.service-map {
  padding: 12px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  box-shadow: 0 24px 50px rgba(0,0,0,.16);
}

.map-canvas {
  position: relative;
  height: 265px;
  overflow: hidden;
  background:
    linear-gradient(25deg, transparent 47%, rgba(255,255,255,.08) 48%, rgba(255,255,255,.08) 51%, transparent 52%),
    linear-gradient(140deg, transparent 46%, rgba(255,255,255,.07) 47%, rgba(255,255,255,.07) 50%, transparent 51%),
    #dceef7;
  border-radius: 10px;
}

.map-canvas::before {
  position: absolute;
  top: -70px;
  right: -45px;
  width: 210px;
  height: 155px;
  background: #9fd4ed;
  border-radius: 46% 0 48% 52%;
  content: "";
  transform: rotate(-12deg);
}

.map-water {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 15px;
  color: #30779f;
  font-size: .61rem;
  font-style: italic;
}

.map-radius {
  position: absolute;
  top: 71px;
  left: 83px;
  width: 135px;
  height: 135px;
  background: rgba(8,116,201,.09);
  border: 2px dashed rgba(8,116,201,.38);
  border-radius: 50%;
}

.map-line {
  position: absolute;
  display: block;
  height: 4px;
  background: rgba(255,255,255,.8);
  border-radius: 5px;
  transform-origin: left;
}

.line-one { top: 185px; left: 10px; width: 280px; transform: rotate(-28deg); }
.line-two { top: 66px; left: 35px; width: 235px; transform: rotate(52deg); }
.line-three { top: 148px; left: 42px; width: 230px; transform: rotate(7deg); }

.map-dot {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #466177;
  font-size: .58rem;
  font-weight: 700;
}

.map-dot i {
  width: 7px;
  height: 7px;
  background: var(--blue-700);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}

.dot-auckland { top: 56px; right: 48px; }
.dot-point { top: 114px; left: 92px; color: var(--navy-950); font-size: .66rem; }
.dot-point i { width: 15px; height: 15px; background: var(--accent); border: 4px solid var(--navy-900); }
.dot-grey { top: 91px; right: 55px; }
.dot-westmere { top: 157px; left: 41px; }

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 12px 2px 1px;
  list-style: none;
}

.area-chips li {
  padding: 5px 9px;
  color: #dceaf5;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50px;
  font-size: .65rem;
  font-weight: 750;
}

.faq-wrap {
  display: grid;
  gap: 38px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: var(--blue-100);
  border-radius: 50%;
}

summary span::before,
summary span::after {
  position: absolute;
  top: 11px;
  left: 7px;
  width: 10px;
  height: 2px;
  background: var(--blue-700);
  content: "";
  transition: transform .2s ease;
}

summary span::after {
  transform: rotate(90deg);
}

details[open] summary span::after {
  transform: rotate(0);
}

details > div {
  padding: 0 42px 20px 0;
  color: var(--muted);
}

details p {
  margin: 0;
}

.contact-section {
  padding-top: 12px;
}

.contact-card {
  display: grid;
  gap: 34px;
  padding: 34px 26px;
  color: #d4e4f3;
  background: var(--blue-700);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--white);
}

.contact-copy p:last-child {
  color: #dceeff;
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-meta {
  margin: 8px 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.2);
  color: #dceeff;
  font-size: .9rem;
}

.contact-meta strong {
  color: var(--white);
}

.contact-meta small {
  opacity: .75;
}

.site-footer {
  color: #aebdcb;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  gap: 28px;
  padding-top: 44px;
  padding-bottom: 35px;
}

.footer-brand {
  color: var(--white);
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 22px;
  font-size: .88rem;
  font-weight: 700;
}

.footer-main nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 22px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .72rem;
}

.footer-bottom p {
  margin-bottom: 8px;
}

.demo-footer-note {
  display: flex;
  max-width: 650px;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 13px;
  color: #9fb0c1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
}

.demo-footer-note svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: #68b9ea;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-footer-note p {
  margin: 0;
}

.demo-footer-note strong {
  display: block;
  margin-bottom: 2px;
  color: #d8e4ee;
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mobile-call-bar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
}

.mobile-call-bar small,
.mobile-call-bar strong {
  display: block;
  line-height: 1.25;
}

.mobile-call-bar small {
  color: #bcd0e2;
  font-size: .7rem;
}

.mobile-call-bar strong {
  margin-top: 2px;
  font-size: .95rem;
}

.mobile-call-bar .button {
  min-height: 48px;
  padding-inline: 18px;
}

@media (min-width: 560px) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .confidence-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip > div {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-strip > div:last-child {
    border-right: 0;
  }

  .area-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
}

@media (min-width: 800px) {
  body,
  body.mobile-bar-visible {
    padding-bottom: 0;
  }

  .section {
    padding: 105px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .header-call {
    display: inline-flex;
    color: var(--white);
    background: var(--blue-700);
  }

  .header-call:hover {
    background: var(--navy-800);
  }

  .hero {
    padding-top: 82px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
    gap: 62px;
  }

  .hero-panel {
    min-height: 440px;
  }

  .urgent-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 50px;
  }

  .urgent-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .urgent-card {
    grid-template-columns: 51px 1fr;
    padding: 20px;
  }

  .urgent-card > a {
    grid-column: 2;
  }

  .urgent-icon {
    width: 51px;
    height: 51px;
  }

  .section-heading {
    grid-template-columns: 1.3fr .7fr;
    align-items: end;
    gap: 60px;
  }

  .section-heading h2 {
    margin-bottom: 0;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card {
    min-height: 290px;
    padding: 30px;
  }

  .why-grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
  }

  .confidence-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-summary {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 70px;
  }

  .areas-grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
  }

  .map-canvas {
    height: 300px;
  }

  .faq-wrap {
    grid-template-columns: .72fr 1.28fr;
    gap: 90px;
  }

  .contact-section {
    padding-top: 20px;
  }

  .contact-card {
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    padding: 58px 64px;
  }

  .footer-main,
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-bottom p:last-child {
    max-width: 620px;
    text-align: right;
  }

  .footer-bottom .demo-footer-note p {
    text-align: left;
  }

  .mobile-call-bar {
    display: none;
  }
}

@media (min-width: 1040px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #33465b;
    font-size: .84rem;
    font-weight: 700;
  }

  .desktop-nav a {
    position: relative;
    padding: 8px 0;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    background: var(--blue-700);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
