/* ===========================
   CSS Custom Properties
   =========================== */
:root {
  --primary: #f5a700;
  --primary-dark: #d48f00;
  --secondary: #111111;
  --secondary-light: #222222;
  --text: #1a1a1a;
  --text-light: #555555;
  --light-bg: #f4f4f4;
  --border: #e2e8f0;
  --white: #ffffff;
}

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

body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

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

section {
  padding: 80px 0;
}

/* ===========================
   Utility Classes
   =========================== */
.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: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.text-primary-brand {
  color: var(--primary);
}

/* ===========================
   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 i {
  color: var(--primary);
  margin-right: 6px;
}

.top-bar-left span {
  margin-right: 22px;
}

.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;
}

.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 i {
  color: var(--secondary);
  font-size: 1.9rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-name {
  font-size: 1.38rem;
  font-weight: 900;
  color: var(--secondary);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-city {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 0.08em;
  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.88rem;
}

@media (min-width: 1200px) {
  .navbar-nav .nav-link {
    padding: 8px 13px !important;
    font-size: 0.93rem;
  }
}

.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: 8px !important;
}

.dropdown-item {
  border-radius: 6px;
  padding: 9px 14px;
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
  transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
  background-color: var(--light-bg);
  color: var(--primary);
}

.nav-phone {
  font-weight: 600;
  color: var(--text) !important;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone i {
  color: var(--primary);
}

.nav-phone:hover {
  color: var(--primary) !important;
}

.btn-nav-cta {
  background-color: var(--primary) !important;
  color: var(--secondary) !important;
  font-weight: 700;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  border: none;
  line-height: 1;
}

.btn-nav-cta:hover {
  background-color: var(--primary-dark) !important;
  color: var(--secondary) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  background-color: var(--secondary);
  color: var(--white);
  padding: 90px 0 100px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 167, 0, 0.13);
  color: var(--primary);
  border: 1px solid rgba(245, 167, 0, 0.32);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.hero-section h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin-bottom: 26px;
  max-width: 520px;
}

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.97rem;
}

.hero-checklist li i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.btn-hero-primary {
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 7px;
  font-size: 1rem;
  transition: background-color 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  background-color: var(--primary-dark);
  color: var(--secondary);
}

.btn-hero-phone {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 1rem;
  transition: background-color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-phone:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-hero-phone i {
  color: var(--primary);
}

.hero-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

.hero-info-card {
  background-color: var(--secondary-light);
  border-radius: 12px;
  padding: 26px 28px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-info-card h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.hero-info-card > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 20px;
  margin-bottom: 20px;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  line-height: 1.3;
  margin-top: 5px;
}

.hero-phone-strip {
  background-color: var(--primary);
  border-radius: 8px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-phone-strip i {
  color: var(--secondary);
  font-size: 1.05rem;
}

.hero-phone-strip .strip-label {
  display: block;
  color: rgba(17, 17, 17, 0.65);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.hero-phone-strip a {
  display: block;
  color: var(--secondary);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
}

.hero-phone-strip a:hover {
  color: var(--secondary);
  opacity: 0.8;
}

/* ===========================
   Quote Form Section
   =========================== */
.quote-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 167, 0, 0.14);
  outline: none;
}

.form-control::placeholder {
  color: #aaa;
}

.btn-submit {
  background-color: var(--primary);
  border: none;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: 7px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

.contact-card {
  background-color: var(--secondary);
  border-radius: 14px;
  padding: 40px;
  color: var(--white);
  height: 100%;
}

.contact-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(245, 167, 0, 0.13);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  color: var(--primary);
  font-size: 0.95rem;
}

.contact-item-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.contact-item-text span,
.contact-item-text a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.contact-item-text a:hover {
  color: var(--primary);
}

.emergency-block {
  background-color: var(--primary);
  border-radius: 9px;
  padding: 18px 20px;
  margin-top: 28px;
}

.emergency-block p {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.emergency-block a {
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 800;
}

.emergency-block a:hover {
  color: var(--secondary);
  opacity: 0.8;
}

/* ===========================
   Services Strip
   =========================== */
.services-strip {
  padding: 70px 0;
  background-color: var(--white);
}

.service-icon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 18px;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-icon-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: rgba(245, 167, 0, 0.11);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.service-icon-wrap i {
  color: var(--primary);
  font-size: 1.4rem;
}

.service-icon-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-icon-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.55;
}

/* ===========================
   Why Choose Us
   =========================== */
.why-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.why-card {
  background: var(--white);
  border-radius: 12px;
  padding: 34px 26px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: box-shadow 0.25s, transform 0.25s;
}

.why-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.why-icon-wrap {
  width: 70px;
  height: 70px;
  background-color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.why-icon-wrap i {
  color: var(--primary);
  font-size: 1.5rem;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   Process / How It Works Section
   =========================== */
.process-section {
  padding: 80px 0;
  background-color: var(--white);
}

/* ── DLB Featured Card ── */
.dlb-section-wrap {
  margin-bottom: 56px;
}

.dlb-popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.dlb-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.dlb-subheading {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
}

.dlb-main-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.dlb-img-col {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.dlb-img-col img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.dlb-main-card:hover .dlb-img-col img {
  transform: scale(1.03);
}

.dlb-ribbon-badge {
  position: absolute;
  top: 22px;
  left: -8px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 20px 7px 14px;
  border-radius: 0 4px 4px 0;
  z-index: 3;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.dlb-ribbon-badge::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 0;
  border-top: 7px solid var(--primary-dark);
  border-left: 8px solid transparent;
}

.dlb-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  padding: 28px 18px 20px;
}

.dlb-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.dlb-stat-lbl {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  display: block;
}

.dlb-content-col {
  padding: 38px 36px;
}

.dlb-no-upgrade-pill {
  display: inline-block;
  background: rgba(245, 167, 0, 0.1);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 167, 0, 0.3);
}

.dlb-content-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text);
}

.dlb-content-lead {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.dlb-benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.dlb-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.93rem;
  color: var(--text);
}

.dlb-benefit-list li i {
  color: #27ae60;
  flex-shrink: 0;
  margin-top: 4px;
}

.dlb-price-box {
  background: rgba(245, 167, 0, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

.dlb-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.dlb-price-from {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.dlb-price-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  line-height: 1;
}

.dlb-price-gst {
  font-size: 0.85rem;
  color: var(--text-light);
}

.dlb-price-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.dlb-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid rgba(245, 167, 0, 0.3);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--text);
}

.dlb-pill i {
  color: #27ae60;
  font-size: 0.72rem;
}

.dlb-price-note {
  margin: 0;
  font-size: 0.77rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.dlb-price-note i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.dlb-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dlb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.97rem;
  transition: background-color 0.2s;
}

.dlb-btn-primary:hover {
  background: var(--primary-dark);
  color: var(--secondary);
}

.dlb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 0.97rem;
  transition: background-color 0.2s, color 0.2s;
}

.dlb-btn-secondary:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* Trust strip */
.dlb-trust-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 16px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.dlb-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dlb-trust-item i {
  color: var(--primary);
  font-size: 1.3rem;
}

.dlb-trust-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
}

.dlb-trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 767.98px) {
  .dlb-trust-divider { display: none; }
  .dlb-img-col { min-height: 280px; }
  .dlb-img-col img { min-height: 280px; }
  .dlb-content-col { padding: 26px 22px; }
  .dlb-content-title { font-size: 1.2rem; }
  .dlb-price-num { font-size: 1.8rem; }
}

/* ===========================
   How It Works – 6 Steps (copied from evchargerchristchurch.co.nz)
   =========================== */
.hiw-section {
  position: relative;
}

.hiw-overlay {
  background: rgba(17, 17, 17, 0.82);
  padding: 80px 0;
}

.hiw-header {
  text-align: center;
  margin-bottom: 52px;
}

.hiw-header h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-top: 14px;
}

.hiw-col-wrap {
  padding: 0 20px 0 10px;
}

.hiw-col-border {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hiw-step.hiw-step-last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hiw-num {
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.hiw-step-content h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hiw-step-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.91rem;
  line-height: 1.7;
  margin: 0;
}

.hiw-cta-row {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 991.98px) {
  .hiw-col-border {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
  .hiw-col-wrap {
    padding: 0;
  }
}

/* ── Kept for any remaining process cards ── */
.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 38px 30px;
  height: 100%;
  position: relative;
}

.step-badge {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 22px;
}

.process-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.process-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.65;
}

/* ===========================
   Benefits Section
   =========================== */
.benefits-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.benefit-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.benefit-checklist li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  font-weight: 500;
  font-size: 0.97rem;
  border-bottom: 1px solid var(--border);
}

.benefit-checklist li:last-child {
  border-bottom: none;
}

.benefit-checklist li i {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.btn-benefit-cta {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
}

.btn-benefit-cta:hover {
  background-color: var(--secondary-light);
  color: var(--white);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-card {
  border-radius: 12px;
  padding: 28px 22px;
}

.highlight-card.dark {
  background-color: var(--secondary);
  color: var(--white);
}

.highlight-card.light {
  background-color: var(--white);
  border: 1px solid var(--border);
}

.highlight-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.highlight-card.dark .highlight-card-icon {
  background-color: rgba(245, 167, 0, 0.15);
}

.highlight-card.light .highlight-card-icon {
  background-color: rgba(245, 167, 0, 0.1);
}

.highlight-card-icon i {
  color: var(--primary);
  font-size: 1.15rem;
}

.highlight-card h5 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 7px;
}

.highlight-card.dark h5 {
  color: var(--white);
}

.highlight-card.light h5 {
  color: var(--text);
}

.highlight-card p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.55;
}

.highlight-card.dark p {
  color: rgba(255, 255, 255, 0.6);
}

.highlight-card.light p {
  color: var(--text-light);
}

/* ===========================
   EV Services Section (copied from evchargerchristchurch.co.nz)
   =========================== */
.ev-services-section {
  padding: 80px 0;
  background-color: var(--secondary);
}

.ev-services-title {
  text-align: center;
  margin-bottom: 0;
}

.ev-services-title h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
}

.ev-services-row {
  gap: 0;
}

.mb-8 {
  margin-bottom: 32px;
}

.single-project {
  background-color: var(--secondary-light);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.single-project:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.single-project:hover .project-image img {
  transform: scale(1.04);
}

.project-overlay {
  display: block;
  position: relative;
}

.project-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0);
  transition: background 0.3s ease;
}

.single-project:hover .project-overlay::after {
  background: rgba(17, 17, 17, 0.18);
}

.project-content {
  padding: 28px 28px 32px;
}

.project-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.project-title a {
  color: var(--white);
}

.project-title a:hover {
  color: var(--primary);
}

.project-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}

.project-link::after {
  content: '→';
  transition: transform 0.2s;
}

.project-link:hover {
  color: var(--primary-dark);
  gap: 10px;
}

.service-grid-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-grid-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-grid-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  flex-shrink: 0;
}

.service-grid-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-grid-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.service-grid-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.55;
  flex: 1;
}

.more-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.more-link:hover {
  color: var(--primary-dark);
  gap: 9px;
}

/* ===========================
   Buyer Guide
   =========================== */
.buyer-guide-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.step-list li:last-child {
  border-bottom: none;
}

.step-num {
  width: 38px;
  height: 38px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.97rem;
  color: var(--text);
}

.step-content p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.btn-guide-cta {
  background-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  margin-top: 8px;
}

.btn-guide-cta:hover {
  background-color: var(--primary-dark);
  color: var(--secondary);
}

/* ===========================
   CTA Banner
   =========================== */
.cta-banner {
  background-color: var(--secondary);
  padding: 72px 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.cta-banner .cta-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}

.cta-banner .cta-sub a {
  color: var(--primary);
  font-weight: 600;
}

.btn-outline-amber {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 7px;
  background: transparent;
  transition: background-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-amber:hover {
  background-color: 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: 13px 28px;
  border-radius: 7px;
  background: transparent;
  transition: background-color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white-border:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 9px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text) !important;
  background-color: var(--white) !important;
  padding: 18px 22px;
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
  background-color: var(--white) !important;
  box-shadow: none !important;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  font-size: 0.93rem;
  color: var(--text-light);
  padding: 4px 22px 22px;
  background-color: var(--white);
  line-height: 1.7;
}

/* ===========================
   Service Area
   =========================== */
.service-area-section {
  padding: 80px 0;
  background-color: var(--white);
}

.alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 36px;
}

.alpha-btn {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alpha-btn:hover,
.alpha-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

.alpha-btn.no-suburb {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.suburb-group {
  display: none;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.suburb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.suburb-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.suburb-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.suburb-card ul li {
  padding: 3px 0;
}

.suburb-card ul li a {
  font-size: 0.84rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.suburb-card ul li a::before {
  content: '→';
  color: var(--primary);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.suburb-card ul li a:hover {
  color: var(--primary);
}

/* ===========================
   Footer
   =========================== */
.footer {
  background-color: var(--secondary);
  color: rgba(255, 255, 255, 0.68);
  padding: 64px 0 0;
}

.footer h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.88rem;
  line-height: 1.72;
}

.footer-logo-wrap {
  display: flex;
  align-items: stretch;
  gap: 13px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-icon {
  width: 48px;
  align-self: stretch;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-height: 42px;
}

.footer-logo-icon i {
  color: var(--secondary);
  font-size: 1.6rem;
}

.footer-brand-eyebrow {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 3px;
}

.footer-brand-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  padding: 4px 0;
}

.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links li a:hover {
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 11px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
  width: 15px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 44px;
  padding: 20px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 60px 0 70px;
  }

  section {
    padding: 60px 0;
  }

  .hero-img-wrap img {
    height: 300px;
    margin-bottom: 0;
  }

  .hero-info-card {
    margin-top: 14px;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 16px;
  }

  .hero-section {
    padding: 50px 0 60px;
  }

  .top-bar-left {
    display: none !important;
  }

  .hero-img-wrap img {
    height: 250px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    min-width: 33%;
  }

  .cta-banner .d-flex {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start !important;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .form-card,
  .contact-card {
    padding: 26px 22px;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }

  .alpha-btn {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .hero-btn-group {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-phone {
    justify-content: center;
  }

  .cta-banner {
    padding: 50px 0;
  }
}

/* ===========================
   Case Study Component
   =========================== */
.case-study-wrap {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.case-study-header {
  background: var(--secondary);
  padding: 26px 36px;
}

.case-study-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.cs-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
}

.cs-meta-item i {
  color: var(--primary);
  font-size: 0.85rem;
}

.case-study-body {
  padding: 36px;
}

.cs-cards {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 24px;
}

.cs-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cs-card + .cs-card {
  border-left: 1px solid var(--border);
}

.cs-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}

.cs-card--challenge .cs-card-header { background: rgba(220,38,38,0.07); color: #dc2626; }
.cs-card--solution  .cs-card-header { background: rgba(245,167,0,0.08);  color: var(--primary-dark); }
.cs-card--outcome   .cs-card-header { background: rgba(22,163,74,0.07);  color: #16a34a; }

.cs-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
  padding: 20px;
  flex: 1;
}

.cs-quote {
  background: rgba(245, 167, 0, 0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-top: 28px;
  font-style: italic;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.cs-quote cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
}

.cs-result-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1e8449;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Inline stat pills used in expanded content */
.stat-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.stat-pill {
  background: var(--secondary);
  color: var(--white);
  border-radius: 10px;
  padding: 14px 20px;
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.stat-pill .sp-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-pill .sp-lbl {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 5px;
  line-height: 1.3;
}

/* Info box used in expanded content */
.info-box {
  background: var(--light-bg);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 20px 0;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.info-box strong {
  color: var(--primary-dark);
}

@media (max-width: 767.98px) {
  .case-study-body { padding: 22px; }
  .case-study-header { padding: 20px 22px; }
  .cs-cards { flex-direction: column; }
  .cs-card + .cs-card { border-left: none; border-top: 1px solid var(--border); }
}
}
