/* ==========================================================
   Inter (variable, self-hosted) — replaces the Google Fonts
   stylesheet so no render-blocking third-party request is needed.
   latin-ext is kept for macrons (te reo Māori place names).
   Refresh with: npm run fonts
   ========================================================== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ==========================================================
   Hot Water Cylinder Repair Christchurch
   Core stylesheet — matches the We Do Electrical /
   Emergency Electrician Christchurch design system
   ========================================================== */

:root {
  --primary: #f5a700;
  --primary-dark: #d48f00;
  --primary-light: #fff4de;
  --emergency: #e0262c;
  --emergency-dark: #b81e23;
  --secondary: #101010;
  --secondary-light: #1e1e1e;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --light-bg: #f5f5f4;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 14px;
}

/* =============== Base / Reset =============== */
*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; }

/* Ensure .container padding always covers the negative margin of our g-4/g-5 gutters,
   so wide-gutter rows never bleed past the viewport on small screens. */
.container { padding-left: 1.5rem; padding-right: 1.5rem; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }
picture { display: block; }

/* Sprite icons (assets/icons.svg). Sized in em and painted with currentColor
   so they inherit font-size and colour exactly like the icon font they
   replaced. */
.svgi {
  width: 1em;
  height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

section { padding: 80px 0; }

@media (max-width: 767.98px) {
  section { padding: 56px 0; }
}

ul { margin: 0; padding: 0; }
li { list-style: none; }

/* =============== Utility =============== */
.section-label {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-label.is-emergency { background: var(--emergency); color: var(--white); }
.section-label.on-dark { background: var(--primary); color: var(--secondary); }

.text-primary-brand { color: var(--primary); }
.text-emergency, .text-hot { color: var(--emergency); }
.bg-light-bg { background: var(--light-bg); }

.eyebrow-emergency, .eyebrow-hot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,38,44,0.1);
  color: var(--emergency);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emergency);
  box-shadow: 0 0 0 0 rgba(224,38,44,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,38,44,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(224,38,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,38,44,0); }
}

/* =============== Top Bar =============== */
.top-bar { background-color: var(--secondary); color: var(--white); font-size: 0.9rem; padding: 9px 0; }
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--primary); }
.top-bar .svgi { color: var(--primary); margin-right: 6px; }
.top-bar-left span { margin-right: 22px; }
.top-bar-left .is-emergency .svgi { color: var(--emergency); }

.btn-topbar {
  background-color: var(--primary); color: var(--secondary) !important;
  font-weight: 600; padding: 5px 16px; border-radius: 4px; font-size: 0.85rem;
  transition: background-color 0.2s;
}
.btn-topbar:hover { background-color: var(--primary-dark); color: var(--secondary) !important; }

/* =============== Navbar =============== */
.main-navbar { background-color: var(--white) !important; box-shadow: 0 2px 12px rgba(0,0,0,0.08); padding: 14px 0; }
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .main-navbar .container { max-width: 1280px; }
}

.logo-wrap { display: flex; align-items: stretch; gap: 14px; text-decoration: none; color: var(--text); }
.logo-icon {
  width: 54px; align-self: stretch; background: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; min-height: 48px;
}
.logo-icon .svgi { color: var(--secondary); font-size: 1.9rem; }
.logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.brand-top { font-size: 1.05rem; font-weight: 900; color: var(--emergency); letter-spacing: -0.01em; line-height: 1; text-transform: uppercase; }
.brand-mid { font-size: 1.15rem; font-weight: 900; color: var(--secondary); letter-spacing: -0.01em; line-height: 1; text-transform: uppercase; margin-top: 2px; }
.brand-city { font-size: 0.82rem; font-weight: 800; color: var(--primary-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }

.navbar-nav .nav-link { font-weight: 500; color: var(--text) !important; padding: 8px 10px !important; transition: color 0.2s; font-size: 0.87rem; }
@media (min-width: 1200px) {
  .navbar-nav .nav-link { padding: 8px 12px !important; font-size: 0.92rem; }
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; }

.dropdown-menu { border: none !important; box-shadow: 0 8px 28px rgba(0,0,0,0.12) !important; border-radius: 10px !important; padding: 8px !important; margin-top: 10px !important; }
.dropdown-item { border-radius: 6px; padding: 9px 14px !important; font-size: 0.9rem; font-weight: 500; }
.dropdown-item:hover, .dropdown-item:focus { background-color: var(--primary-light) !important; color: var(--primary-dark) !important; }

.nav-phone { color: var(--text) !important; font-weight: 700; gap: 8px; font-size: 0.95rem; }
.nav-phone .svgi { color: var(--primary); }

.btn-nav-cta {
  background: var(--emergency); color: var(--white) !important; font-weight: 700; font-size: 0.86rem;
  padding: 11px 20px; border-radius: 6px; white-space: nowrap; transition: background-color 0.2s;
}
.btn-nav-cta:hover { background: var(--emergency-dark); color: var(--white) !important; }

/* =============== Hero =============== */
.hero-section {
  padding: 64px 0 76px;
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(245,167,0,0.10), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  position: relative;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); color: var(--primary-dark);
  font-weight: 700; font-size: 0.82rem; padding: 7px 16px; border-radius: 50px; margin-bottom: 20px;
}
.hero-section h1 { font-size: 2.7rem; margin-bottom: 20px; color: var(--white); }
.hero-section .lead { font-size: 1.1rem; color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.hero-section .breadcrumb-row { font-size: 0.86rem; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.hero-section .breadcrumb-row a { color: rgba(255,255,255,0.4); }
.hero-section .breadcrumb-row a:hover { color: var(--primary); }

@media (max-width: 575.98px) {
  .hero-section h1 { font-size: 1.85rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .cta-banner h2 { font-size: 1.35rem; }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section h1 { font-size: 2.2rem; }
  .page-hero h1 { font-size: 2rem; }
}

.hero-checklist li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-weight: 600; font-size: 0.98rem; color: rgba(255,255,255,0.88); }
.hero-checklist .svgi { color: var(--primary); margin-top: 4px; }

.hero-btn-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.btn-hero-primary, .btn-benefit-cta, .btn-guide-cta {
  display: inline-flex; align-items: center; gap: 10px; background: var(--secondary); color: var(--white);
  font-weight: 700; padding: 15px 28px; border-radius: 8px; font-size: 0.98rem; transition: background-color 0.2s;
  border: none;
}
.btn-hero-primary:hover, .btn-benefit-cta:hover, .btn-guide-cta:hover { background: var(--primary); color: var(--secondary); }

.btn-hero-emergency, .btn-hero-hot {
  display: inline-flex; align-items: center; gap: 10px; background: var(--emergency); color: var(--white);
  font-weight: 700; padding: 15px 28px; border-radius: 8px; font-size: 0.98rem; transition: background-color 0.2s;
}
.btn-hero-emergency:hover, .btn-hero-hot:hover { background: var(--emergency-dark); color: var(--white); }

.btn-hero-phone {
  display: inline-flex; align-items: center; gap: 10px; background: var(--white); color: var(--text);
  font-weight: 700; padding: 15px 28px; border-radius: 8px; font-size: 1rem; border: 2px solid var(--border);
}
.btn-hero-phone .svgi { color: var(--primary-dark); }
.btn-hero-phone:hover { border-color: var(--primary); color: var(--text); }

.hero-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
.hero-info-card {
  background: #1c1c1c; color: var(--white); border-radius: var(--radius); padding: 26px;
  margin-top: -46px; position: relative; z-index: 2; margin-left: 20px; margin-right: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.08);
}
.hero-info-card h2, .hero-info-card .info-card-h { color: var(--white); margin-bottom: 4px; font-size: 1.5rem; }
.hero-info-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 18px; }
.hero-stats { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 1px solid rgba(255,255,255,0.12); padding: 16px 0; margin-bottom: 16px; }
.hero-stat { text-align: center; }
.stat-number { display: block; font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px; }
.hero-phone-strip { display: flex; align-items: center; gap: 14px; background: rgba(245,167,0,0.1); border-radius: 10px; padding: 12px 16px; }
.hero-phone-strip .svgi { color: var(--primary); font-size: 1.3rem; }
.strip-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.hero-phone-strip a { color: var(--white); font-weight: 800; font-size: 1.05rem; }

/* =============== Quote / Contact Form =============== */
.quote-section { background: var(--light-bg); }
.form-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: 0 10px 34px rgba(0,0,0,0.06); }
.form-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 0.95rem;
}
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,167,0,0.15); }

.btn-submit {
  width: 100%; background: var(--emergency); color: var(--white); font-weight: 700; padding: 15px; border: none;
  border-radius: 8px; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background-color 0.2s;
}
.btn-submit:hover { background: var(--emergency-dark); }

.contact-card { background: var(--secondary); color: var(--white); border-radius: var(--radius); padding: 34px; height: 100%; }
.contact-card h3 { color: var(--white); margin-bottom: 22px; font-size: 1.5rem; }
.contact-card p { color: rgba(255,255,255,0.65); }
.contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.contact-item-icon {
  width: 40px; height: 40px; background: rgba(245,167,0,0.14); border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.contact-item-text strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
.contact-item-text a, .contact-item-text span { color: var(--white); font-weight: 600; }

.emergency-block, .urgent-block { background: rgba(224,38,44,0.14); border: 1px solid rgba(224,38,44,0.3); border-radius: 10px; padding: 16px; margin-top: 22px; text-align: center; }
.emergency-block p, .urgent-block p { color: var(--white); font-weight: 700; margin-bottom: 6px; font-size: 0.9rem; }
.emergency-block a, .urgent-block a { color: var(--primary); font-weight: 800; font-size: 1.3rem; }

/* =============== Services Strip =============== */
.services-strip { background: var(--white); }
.service-icon-card { text-align: center; padding: 18px 10px; }
.service-icon-wrap {
  width: 68px; height: 68px; margin: 0 auto 16px; background: var(--primary-light); border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--primary-dark);
  transition: background-color 0.2s;
}
.service-icon-card:hover .service-icon-wrap { background: var(--primary); color: var(--secondary); }
.service-icon-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-icon-card p { font-size: 0.86rem; color: var(--text-light); }
.service-icon-card .icon-card-link { font-weight: 700; color: var(--primary-dark); font-size: 0.86rem; }
.service-icon-card .icon-card-link::after { content: ' \2192'; }

/* =============== Why Choose Us =============== */
.why-section { background: var(--light-bg); }
.why-card { background: var(--white); border-radius: var(--radius); padding: 30px 26px; height: 100%; box-shadow: 0 6px 20px rgba(0,0,0,0.04); }
.why-icon-wrap {
  width: 54px; height: 54px; background: var(--secondary); border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 1.3rem; margin-bottom: 18px;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why-card p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }

/* =============== Story / Content Split =============== */
.story-section { background: var(--white); }
.story-section h2, .content-block h2 { font-size: 1.9rem; margin-bottom: 16px; }
.story-section p, .content-block p { color: var(--text-light); }
.story-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.1); position: relative; }
.story-img-wrap img { width: 100%; object-fit: cover; }
.story-badge {
  position: absolute; bottom: 18px; left: 18px; right: 18px; background: rgba(16,16,16,0.85); backdrop-filter: blur(4px);
  color: var(--white); border-radius: 10px;
  padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 0.9rem;
}
.story-badge .svgi { color: var(--primary); font-size: 1.3rem; }

/* =============== Decision / Compare (Electrician vs Plumber) =============== */
.compare-section { background: var(--light-bg); }
.compare-card { border-radius: var(--radius); padding: 30px; height: 100%; }
.compare-card.is-electric { background: var(--secondary); color: var(--white); }
.compare-card.is-plumbing { background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.compare-card h3 { font-size: 1.2rem; margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.compare-card.is-electric h3 { color: var(--white); }
.compare-card h3 .svgi { color: var(--primary); }
.compare-card .compare-sub { font-size: 0.88rem; margin-bottom: 18px; }
.compare-card.is-electric .compare-sub { color: rgba(255,255,255,0.6); }
.compare-card.is-plumbing .compare-sub { color: var(--text-light); }
.compare-card ul li { display: flex; gap: 10px; margin-bottom: 11px; font-size: 0.93rem; align-items: flex-start; }
.compare-card.is-electric ul li { color: rgba(255,255,255,0.88); }
.compare-card ul li .svgi { margin-top: 5px; }
.compare-card.is-electric ul li .svgi { color: var(--primary); }
.compare-card.is-plumbing ul li .svgi { color: #1d4ed8; }
.compare-verdict {
  background: var(--primary-light); border: 1.5px solid var(--primary); border-radius: 10px; padding: 16px 20px;
  font-weight: 700; font-size: 0.95rem; display: flex; gap: 12px; align-items: flex-start; margin-top: 26px;
}
.compare-verdict .svgi { color: var(--primary-dark); margin-top: 5px; }
.compare-verdict a { color: var(--primary-dark); }

/* =============== Feature Grid (photo cards) =============== */
.single-project { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.06); height: 100%; }
.project-image { overflow: hidden; }
.project-image img { transition: transform 0.4s; width: 100%; height: 260px; object-fit: cover; }
.project-overlay:hover img { transform: scale(1.05); }
.project-content { padding: 26px; }
.project-title { font-size: 1.2rem; margin-bottom: 10px; }
.project-title a:hover { color: var(--primary-dark); }
.project-content p { color: var(--text-light); font-size: 0.94rem; margin-bottom: 14px; }
.project-link { font-weight: 700; color: var(--primary-dark); font-size: 0.9rem; }
.project-link::after { content: ' \2192'; }

/* =============== Process / How It Works =============== */
.hiw-section { position: relative; padding: 0; }
.hiw-overlay {
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(245,167,0,0.08), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  padding: 80px 0;
}
.hiw-header { text-align: center; margin-bottom: 50px; }
.hiw-header h2 { color: var(--white); }
.hiw-col-wrap { padding: 10px 30px; }
.hiw-col-border { border-right: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 991.98px) { .hiw-col-border { border-right: none; } }
.hiw-step { display: flex; gap: 20px; margin-bottom: 34px; }
.hiw-step-last { margin-bottom: 0; }
.hiw-num { width: 46px; height: 46px; flex-shrink: 0; background: var(--primary); color: var(--secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; }
.hiw-step-content h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.hiw-step-content p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 0; }
.hiw-cta-row { text-align: center; margin-top: 50px; }

/* =============== Benefits =============== */
.benefits-section { background: var(--light-bg); }
.benefit-checklist li { display: flex; gap: 10px; margin-bottom: 14px; font-weight: 600; align-items: flex-start; }
.benefit-checklist .svgi { color: var(--primary-dark); margin-top: 4px; }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.highlight-card { border-radius: var(--radius); padding: 26px; }
.highlight-card.dark { background: var(--secondary); color: var(--white); }
.highlight-card.light { background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.highlight-card-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--primary); color: var(--secondary); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.1rem; }
.highlight-card.light .highlight-card-icon { background: var(--primary-light); color: var(--primary-dark); }
.highlight-card h3 { font-size: 1rem; margin-bottom: 8px; }
.highlight-card.dark h3 { color: var(--white); }
.highlight-card p { font-size: 0.86rem; margin-bottom: 0; }
.highlight-card.dark p { color: rgba(255,255,255,0.6); }
.highlight-card.light p { color: var(--text-light); }
@media (max-width: 575.98px) { .highlight-grid { grid-template-columns: 1fr; } }

/* =============== Buyer's Guide / Step List =============== */
.buyer-guide-section { background: var(--white); }
.step-list li { display: flex; gap: 18px; margin-bottom: 28px; }
.step-num { width: 40px; height: 40px; flex-shrink: 0; background: var(--secondary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.step-content strong { display: block; font-size: 1.02rem; margin-bottom: 6px; }
.step-content p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 0; }

/* =============== CTA Banner =============== */
.cta-banner { background: var(--secondary); color: var(--white); padding: 56px 0; }
.cta-banner h2 { color: var(--white); font-size: 1.7rem; margin-bottom: 10px; }
.cta-sub { color: rgba(255,255,255,0.65); margin-bottom: 0; }
.cta-sub a { color: var(--primary); font-weight: 700; }
.btn-outline-amber, .btn-outline-flame { border: 2px solid var(--primary); color: var(--primary); font-weight: 700; padding: 12px 24px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-amber:hover, .btn-outline-flame:hover { background: var(--primary); color: var(--secondary); }
.btn-outline-white-border { border: 2px solid rgba(255,255,255,0.3); color: var(--white); font-weight: 700; padding: 12px 24px; border-radius: 8px; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white-border:hover { border-color: var(--white); color: var(--white); }

/* =============== Case Study =============== */
.case-study-wrap { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: 0 10px 34px rgba(0,0,0,0.06); }
.case-study-header h3 { margin-bottom: 14px; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 26px; }
.cs-meta-item { font-size: 0.86rem; color: var(--text-light); font-weight: 600; }
.cs-meta-item .svgi { color: var(--primary-dark); margin-right: 6px; }
.cs-result-badge { background: rgba(16,163,74,0.1); color: #0f7a3d; font-weight: 700; padding: 12px 18px; border-radius: 10px; margin-bottom: 26px; font-size: 0.92rem; }
.cs-result-badge .svgi { margin-right: 6px; }
.cs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 26px; }
.cs-card { background: var(--light-bg); border-radius: 12px; padding: 22px; }
.cs-card-header { font-weight: 700; font-size: 0.92rem; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.cs-card--challenge .cs-card-header .svgi { color: var(--emergency); }
.cs-card--solution .cs-card-header .svgi { color: var(--primary-dark); }
.cs-card--outcome .cs-card-header .svgi { color: #0f7a3d; }
.cs-card p { font-size: 0.86rem; color: var(--text-light); margin-bottom: 0; }
.cs-quote { border-left: 3px solid var(--primary); padding-left: 20px; font-style: italic; color: var(--text); font-size: 1.02rem; }
.cs-quote cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; font-size: 0.86rem; color: var(--text-light); }
@media (max-width: 991.98px) { .cs-cards { grid-template-columns: 1fr; } }

/* =============== FAQ Accordion =============== */
.faq-section { background: var(--light-bg); }
.accordion-item { border: none !important; margin-bottom: 12px; border-radius: 10px !important; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.accordion-button { font-weight: 700; font-size: 0.98rem; padding: 18px 22px; }
.accordion-button:not(.collapsed) { background: var(--secondary); color: var(--white); box-shadow: none; }
.accordion-button:not(.collapsed)::after { filter: invert(1); }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-body { font-size: 0.92rem; color: var(--text-light); padding: 18px 22px; }
.accordion-body a { color: var(--primary-dark); font-weight: 600; }

/* =============== Signs List (service pages) =============== */
.signs-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; background: var(--light-bg); border-radius: 10px; padding: 14px 18px; color: var(--text-light); font-size: 0.95rem; }
.signs-list li strong { color: var(--text); }
.signs-list .svgi { color: var(--emergency); margin-top: 4px; }
.two-col-list { columns: 2; column-gap: 30px; }
.two-col-list li { break-inside: avoid; margin-bottom: 10px; }
@media (max-width: 767.98px) { .two-col-list { columns: 1; } }

/* =============== Price Box =============== */
.price-box { background: var(--light-bg); border-radius: 12px; padding: 24px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.price-from { font-size: 0.9rem; color: var(--text-light); }
.price-num { font-size: 2rem; font-weight: 800; color: var(--secondary); }
.price-gst { font-size: 0.8rem; color: var(--text-light); }
.price-note { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0; }
.price-note .svgi { color: var(--primary-dark); margin-right: 4px; }

/* =============== Page Hero (inner pages) =============== */
.page-hero {
  padding: 54px 0 70px;
  background:
    radial-gradient(ellipse 900px 500px at 85% 0%, rgba(245,167,0,0.10), transparent 60%),
    linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
}
.page-hero .breadcrumb-row { font-size: 0.86rem; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.page-hero .breadcrumb-row a { color: rgba(255,255,255,0.4); }
.page-hero .breadcrumb-row a:hover { color: var(--primary); }
.page-hero h1 { font-size: 2.3rem; margin-bottom: 16px; color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,0.65); max-width: 720px; }
.page-hero .lead.mx-auto { max-width: 720px; }

.stat-strip { background: var(--secondary); }
.stat-strip .stat-box { text-align: center; color: var(--white); padding: 10px; }
.stat-strip .stat-box .num { font-size: 2.1rem; font-weight: 800; color: var(--primary); display: block; }
.stat-strip .stat-box .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.value-card { padding: 26px; background: var(--white); border-radius: var(--radius); box-shadow: 0 6px 20px rgba(0,0,0,0.05); height: 100%; }
.value-card .svgi { font-size: 1.5rem; color: var(--primary-dark); margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.25rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0; }

.map-frame { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 340px; background: var(--light-bg); display: flex; align-items: center; justify-content: center; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* =============== Generic Content Blocks (service pages) =============== */
.content-block { padding: 70px 0; }
.content-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,0.1); }
.content-img-wrap img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; }

/* =============== Service Area / Suburbs =============== */
.service-area-section { background: var(--white); }
.suburb-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.suburb-card { background: var(--light-bg); border-radius: 12px; padding: 20px; }
.suburb-card h3 { font-size: 1rem; margin-bottom: 4px; }
.suburb-pill { background: var(--light-bg); border-radius: 50px; padding: 8px 18px; font-size: 0.9rem; font-weight: 600; display: inline-block; margin: 4px; border: 1.5px solid var(--border); }

/* =============== Pricing Table =============== */
.pricing-section { background: var(--light-bg); }
.pricing-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; height: 100%; box-shadow: 0 6px 20px rgba(0,0,0,0.05); border: 2px solid transparent; }
.pricing-card.featured { border-color: var(--primary); position: relative; }
.pricing-card .pricing-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--secondary); font-weight: 700; font-size: 0.76rem; padding: 5px 16px; border-radius: 50px; white-space: nowrap; }
.pricing-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pricing-card .price { font-size: 2.1rem; font-weight: 800; color: var(--secondary); margin: 12px 0 4px; }
.pricing-card .price span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.pricing-card .pricing-desc { font-size: 0.86rem; color: var(--text-light); margin-bottom: 18px; }
.pricing-card ul li { display: flex; gap: 8px; margin-bottom: 10px; font-size: 0.88rem; align-items: flex-start; }
.pricing-card ul li .svgi { color: var(--primary-dark); margin-top: 4px; }
.pricing-note-box { background: var(--secondary); color: var(--white); border-radius: var(--radius); padding: 30px; margin-top: 20px; }
.pricing-note-box h3 { color: var(--white); font-size: 1.5rem; }
.pricing-note-box p { color: rgba(255,255,255,0.65); margin-bottom: 0; }

/* =============== Footer =============== */
.footer { background: var(--secondary); color: rgba(255,255,255,0.65); padding: 70px 0 0; }
.footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer p { font-size: 0.9rem; line-height: 1.7; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.3rem; flex-shrink: 0; }
.footer-logo-wrap .brand-mid { color: var(--white); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item .svgi { color: var(--primary); margin-top: 4px; width: 16px; }
.footer-contact-item a { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; margin-top: 46px; }
.footer-bottom p { font-size: 0.82rem; margin-bottom: 0; color: rgba(255,255,255,0.45); }

/* =============== Sticky Emergency Call Bar (mobile) =============== */
.sticky-call-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1030; background: var(--emergency);
  display: none; align-items: center; justify-content: center; gap: 10px; padding: 13px; color: var(--white);
  font-weight: 700; box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}
.sticky-call-bar a { color: var(--white); }
@media (max-width: 767.98px) { .sticky-call-bar { display: flex; } body { padding-bottom: 54px; } }
