/* ==========================================================================
   Redgum Electrical Solutions — Main Stylesheet
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --red:        #E84040;

  --red-dark:   #C42E2E;
  --red-light:  #FEE2E2;
  --dark:       #0F0F0F;
  --dark-2:     #1A1A1A;
  --dark-3:     #2A2A2A;
  --charcoal:   #374151;
  --gray:       #6B7280;
  --light-gray: #F3F4F6;
  --white:      #FFFFFF;
  --text:       #1F2937;
  --text-light: #6B7280;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow:    0 4px 12px rgba(0,0,0,.15);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.20);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.25);

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --transition: .2s ease;
  --max-w: 1160px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, select, textarea { font-family: var(--font); }

/* ---------- Utility ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-dark { background: var(--dark); }
.bg-dark-2 { background: var(--dark-2); }
.bg-light { background: var(--light-gray); }
.bg-white { background: var(--white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; }
.section-sub { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto 3rem; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,64,64,.4); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   HEADER / NAV
   ================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,15,15,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all var(--transition);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo img { height: 50px; width: auto; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text strong {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.logo-text span {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav a.active { color: var(--red); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.2);
  transition: all var(--transition);
}
.phone-link:hover { border-color: var(--red); color: var(--red); }
.phone-icon { width: 16px; height: 16px; fill: currentColor; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  background: var(--dark);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,64,64,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(232,64,64,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,64,64,.15);
  border: 1px solid rgba(232,64,64,.3);
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.hero-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 11px; height: 11px; fill: none; stroke: white; stroke-width: 2.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-xl);
}
.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-badge strong { display: block; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.hero-image-badge span { font-size: .75rem; opacity: .9; }

/* ================================================
   LEAD FORM (on hero)
   ================================================ */
.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
}
.hero-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .25rem;
}
.hero-form-sub {
  font-size: .875rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,64,64,.12);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { margin-top: 6px; }
.form-privacy {
  font-size: .75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  color: var(--text);
}
.form-success .success-icon {
  width: 56px; height: 56px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success .success-icon svg { width: 28px; height: 28px; stroke: #16A34A; fill: none; stroke-width: 2.5; }

/* ================================================
   SERVICES LIST (homepage simplified grid)
   ================================================ */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: all .25s ease;
}
.service-list-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service-list-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-list-icon svg {
  width: 22px; height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-list-item h4 { font-size: 1rem; margin-bottom: .25rem; color: var(--dark); }
.service-list-item p { font-size: .875rem; color: var(--gray); margin: 0; }

@media (max-width: 768px) {
  .services-list-grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
  background: var(--dark-2);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-icon {
  width: 36px; height: 36px;
  background: rgba(232,64,64,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }

/* ================================================
   SERVICES SECTION
   ================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid #E5E7EB;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--dark);
  border-color: var(--red);
  color: var(--white);
}
.service-card.featured::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--red-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card.featured .service-icon { background: rgba(232,64,64,.2); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--red); fill: none; stroke-width: 1.75; }
.service-card h3 { margin-bottom: .5rem; }
.service-card.featured h3 { color: var(--white); }
.service-card p { color: var(--gray); font-size: .95rem; margin-bottom: 1.5rem; }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
  font-size: .9rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; }
.service-features { margin: 1rem 0; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray);
  padding: 4px 0;
}
.service-card.featured .service-features li { color: rgba(255,255,255,.7); }
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Missing image placeholder */
.why-image.img-missing {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-xl);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,.3);
  font-size: .875rem;
  border: 2px dashed rgba(255,255,255,.1);
}
.why-image.img-missing::before {
  content: '📷';
  font-size: 3rem;
  opacity: .3;
}
.why-image.img-missing::after {
  content: 'Add images/sam.jpg to show your photo here';
  text-align: center;
  padding: 0 24px;
}

/* ================================================
   WHY REDGUM
   ================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image img {
  border-radius: var(--radius-xl);
  object-fit: cover;
  width: 100%;
  height: 500px;
  box-shadow: var(--shadow-xl);
}
.why-stat-card {
  position: absolute;
  background: var(--red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.why-stat-card.top-right { top: -20px; right: -20px; }
.why-stat-card.bottom-left { bottom: -20px; left: -20px; }
.why-stat-card strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.why-stat-card span { font-size: .75rem; opacity: .9; }
.why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 2rem; }
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-point-icon {
  width: 44px; height: 44px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-point-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; }
.why-point-text h4 { margin-bottom: .25rem; color: var(--dark); }
.why-point-text p { color: var(--gray); font-size: .9rem; margin: 0; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}
.step-card {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}
.step-card h4 { margin-bottom: .5rem; color: var(--dark); }
.step-card p { color: var(--gray); font-size: .875rem; }

/* ================================================
   FAQ
   ================================================ */
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid #E5E7EB;
  padding: 4px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: color var(--transition);
  width: 100%;
  text-align: left;
}
.faq-q:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: none; stroke: var(--gray); stroke-width: 2; transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--red); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a-inner { padding-bottom: 18px; color: var(--gray); font-size: .95rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; }

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(232,64,64,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }
.contact-detail strong { display: block; font-size: .8rem; color: var(--red); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact-detail span { font-size: 1rem; font-weight: 500; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
}
.contact-form-card .form-group label { color: var(--charcoal); }

/* ================================================
   AREAS SECTION
   ================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 2.5rem;
}
.area-tag {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all var(--transition);
}
.area-tag:hover { border-color: var(--red); color: var(--red); }
.area-tag svg { width: 14px; height: 14px; stroke: var(--red); fill: none; stroke-width: 2; }

/* ================================================
   REVIEWS / TESTIMONIALS
   ================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  border: 1.5px solid #E5E7EB;
  transition: all .3s ease;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { width: 18px; height: 18px; fill: #FBBF24; }
.review-text { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .9rem; }
.review-author span { font-size: .8rem; color: var(--gray); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.google-badge svg { width: 18px; height: 18px; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-banner .btn-outline:hover { color: var(--red); }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 48px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer h5 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: rgba(255,255,255,.4);
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-abn { color: rgba(255,255,255,.35); }

/* ================================================
   LANDING PAGE SPECIFIC (EV & Switchboard)
   ================================================ */
.lp-hero {
  background: var(--dark);
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 50%, rgba(232,64,64,.15) 0%, transparent 55%);
  pointer-events: none;
}
.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}
.lp-hero h1 { color: var(--white); }
.lp-hero h1 em { color: var(--red); font-style: normal; }
.lp-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; margin-bottom: 1.5rem; }
.lp-hero-perks { margin-bottom: 2rem; }
.lp-hero-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  padding: 6px 0;
}
.lp-hero-perk svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2.5; flex-shrink: 0; }
.sticky-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-xl);
}
.sticky-form-title { font-size: 1.2rem; font-weight: 800; margin-bottom: .25rem; }
.sticky-form-sub { font-size: .8rem; color: var(--gray); margin-bottom: 1.25rem; }

/* Feature list */
.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--red);
}
.feature-item-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.feature-item-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 2; }
.feature-item h4 { margin-bottom: .2rem; font-size: 1rem; }
.feature-item p { font-size: .875rem; color: var(--gray); margin: 0; }

/* Warning/alert box */
.alert-box {
  background: #FEF3C7;
  border: 1.5px solid #FCD34D;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.alert-box svg { width: 24px; height: 24px; stroke: #D97706; fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.alert-box p { margin: 0; font-size: .9rem; color: #92400E; font-weight: 500; }

/* Charger types */
.charger-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 2rem;
}
.charger-card {
  background: var(--white);
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: all .3s;
}
.charger-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.charger-card h4 { margin-bottom: .5rem; color: var(--dark); }
.charger-card p { color: var(--gray); font-size: .875rem; margin-bottom: 1rem; }
.charger-spec {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  padding: 6px 0;
  border-top: 1px solid #F3F4F6;
  color: var(--gray);
}
.charger-spec strong { color: var(--dark); }

/* Signs list */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.sign-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid #E5E7EB;
}
.sign-num {
  width: 32px; height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .8rem;
  flex-shrink: 0;
}
.sign-item h4 { font-size: .95rem; margin-bottom: .2rem; }
.sign-item p { font-size: .825rem; color: var(--gray); margin: 0; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 380px; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .charger-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-image-wrap { display: none; }
  .lp-hero { padding: 90px 0 50px; }
  .lp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .signs-grid { grid-template-columns: 1fr; }
  .nav { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--dark); padding: 20px; border-bottom: 1px solid rgba(255,255,255,.08); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: 1rem; }
  .menu-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
  .hero-form-wrap { padding: 28px 20px; }
  .contact-form-card { padding: 28px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-items { flex-direction: column; align-items: center; gap: 16px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .google-badge { display: none; }
}
