/* Font loaded via <link> in <head> — not @import (eliminates render-blocking chain) */

/* =============================================
   RESPONSE ELECTRICIANS — CLAYMATION DESIGN SYSTEM
   Shared CSS for Netlify Static Site
   Version: 3.0 / Netlify Build
   ============================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
  --cyan: #00A4E4;
  --cyan-light: #e8f6fd;
  --cyan-glow: rgba(0, 164, 228, 0.15);
  --dark: #0a0a12;
  --white: #ffffff;
  --gray6: #f5f5f5;
  --warm-bg: #faf9f7;
  --warm-card: #ffffff;
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;
  --clay-shadow: 0 8px 32px rgba(10, 10, 18, 0.10), 0 2px 8px rgba(10, 10, 18, 0.06);
  --clay-shadow-hover: 0 16px 48px rgba(10, 10, 18, 0.14), 0 4px 12px rgba(10, 10, 18, 0.08);
  --clay-radius: 20px;
  --clay-radius-sm: 14px;
  --clay-radius-lg: 28px;
  --header-height: 80px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--warm-bg);
  color: #111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---------- STICKY DESKTOP CTA ---------- */
.sticky-desktop {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: none; gap: 14px; align-items: center;
  background: var(--dark); border-radius: var(--clay-radius);
  padding: 18px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.30);
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}
.sticky-desktop.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.sticky-desktop-number { font-size: 20px; font-weight: 900; color: var(--cyan); letter-spacing: 0.5px; }
.sticky-desktop-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1.5px; }
.sticky-desktop-btn {
  display: inline-block; background: var(--cyan); color: #fff;
  padding: 12px 26px; border-radius: var(--clay-radius-sm);
  font-size: 14px; font-weight: 800; text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
}
.sticky-desktop-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,164,228,0.35); }

@media (min-width: 769px) { .sticky-desktop { display: flex; } .sticky-mobile { display: none !important; } }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  display: none; grid-template-columns: 1fr 1fr;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sticky-mobile.visible { opacity: 1; pointer-events: all; }
.sticky-mob-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 18px 16px; text-decoration: none; color: #fff;
  font-size: 15px; font-weight: 800; font-family: 'Montserrat', sans-serif;
}
.sticky-mob-call { background: var(--cyan); }
.sticky-mob-sms { background: var(--dark); }
.sticky-mob-icon { font-size: 18px; }

@media (max-width: 768px) { .sticky-mobile { display: grid; } .sticky-desktop { display: none !important; } body { padding-bottom: 60px; } }

/* ---------- POPUP FORM ---------- */
.popup-overlay {
  position: fixed; inset: 0; z-index: 999999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 24px; overflow-y: auto;
}
.popup-overlay.active { display: flex; }
.popup-card {
  background: #fff; border-radius: var(--clay-radius);
  padding: 44px 40px; max-width: 480px; width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: popIn .3s ease;
}
@keyframes popIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.popup-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; }
.popup-tag {
  display: inline-block; border: 2px solid var(--cyan); color: var(--cyan);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 16px; border-radius: 40px; margin-bottom: 20px;
}
.popup-title { font-size: clamp(22px,2.5vw,28px); font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.popup-sub { font-size: 15px; color: #555; font-weight: 500; line-height: 1.5; margin-bottom: 28px; }
.popup-form input, .popup-form textarea {
  width: 100%; padding: 14px 18px; border: 2px solid #e5e7eb;
  border-radius: var(--clay-radius-sm); font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 500; margin-bottom: 12px;
  transition: border-color .2s; outline: none;
}
.popup-form input:focus, .popup-form textarea:focus { border-color: var(--cyan); }
.popup-submit {
  width: 100%; padding: 16px; background: var(--cyan); color: #fff; border: none;
  border-radius: var(--clay-radius-sm); font-family: 'Montserrat', sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.popup-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,164,228,0.35); }

/* Preferred contact method checkboxes */
.preferred-contact {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 8px; padding: 0 2px;
}
.preferred-label {
  font-size: 13px; font-weight: 600; color: var(--dark); width: 100%; margin-bottom: -6px;
}
.check-option {
  display: flex; align-items: center; gap: 6px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: #444;
}
.check-option input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--cyan); cursor: pointer;
  border-radius: 4px;
}

.popup-trust { text-align: center; font-size: 12px; font-weight: 600; color: #888; margin-top: 16px; }

@media (max-width: 768px) {
  .popup-card { padding: 24px 16px; border-radius: var(--clay-radius); }
  .popup-overlay { padding-top: 70px; }
}

/* ---------- THANK YOU OVERLAY ---------- */
.thankyou-overlay {
  position: fixed; inset: 0; z-index: 1000000;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 24px; overflow-y: auto;
}
.thankyou-overlay.active { display: flex; }
.thankyou-card {
  background: #fff; border-radius: var(--clay-radius);
  padding: 48px 40px; max-width: 480px; width: 100%;
  text-align: center; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  animation: popIn .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.thankyou-icon { margin-bottom: 20px; }
.thankyou-icon svg { display: inline-block; }
.thankyou-title {
  font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px;
}
.thankyou-message { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 24px; font-weight: 500; }
.thankyou-next { font-size: 14px; color: var(--dark); margin-bottom: 12px; font-weight: 700; }
.thankyou-steps { margin-bottom: 24px; }
.thankyou-step {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  text-align: left; font-size: 14px; color: #444; font-weight: 500;
}
.thankyou-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cyan); color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.thankyou-cta-text { font-size: 13px; color: #888; font-weight: 600; margin-bottom: 8px; }
.thankyou-phone {
  display: inline-block; font-size: 20px; font-weight: 800; color: var(--cyan);
  text-decoration: none; margin-bottom: 20px; letter-spacing: -0.5px;
}
.thankyou-phone:hover { text-decoration: underline; }
.thankyou-close {
  display: block; width: 100%; padding: 14px; background: var(--dark); color: #fff;
  border: none; border-radius: var(--clay-radius-sm); font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s;
}
.thankyou-close:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,10,18,0.25); }
@media (max-width: 768px) {
  .thankyou-card { padding: 36px 24px; }
  .thankyou-title { font-size: 20px; }
}

/* ---------- INLINE CTA BARS ---------- */
.inline-cta-bar { padding: 44px 24px; text-align: center; }
.inline-cta-bar.cyan-bg { background: var(--cyan); }
.inline-cta-bar.dark-bg { background: var(--dark); }
.inline-cta-bar.light-bg { background: var(--gray6); }
.icta-text { font-size: clamp(18px,2vw,24px); font-weight: 800; margin-bottom: 20px; line-height: 1.4; }
.inline-cta-bar.cyan-bg .icta-text, .inline-cta-bar.dark-bg .icta-text { color: #fff; }
.inline-cta-bar.light-bg .icta-text { color: var(--dark); }
.icta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.icta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--clay-radius-sm);
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.icta-btn:hover { transform: translateY(-2px); }
.icta-btn-white { background: #fff; color: var(--dark); }
.icta-btn-cyan { background: var(--cyan); color: #fff; }
.icta-btn-dark { background: var(--dark); color: #fff; }
.icta-phone { font-size: clamp(16px,1.6vw,20px); font-weight: 900; color: #fff; text-decoration: none; }
.inline-cta-bar.light-bg .icta-phone { color: var(--cyan); }
.icta-divider { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); }
.inline-cta-bar.light-bg .icta-divider { color: #999; }

/* ---------- HERO — CLAYMATION STYLE ---------- */
.hero {
  background: linear-gradient(165deg, var(--warm-bg) 0%, var(--cyan-light) 50%, var(--warm-bg) 100%);
  padding: 0; text-align: center; overflow: hidden;
}
.hero .container { padding: 120px 24px 60px; }
.hero.has-image .container { padding: 40px 24px 60px; }
/* When hero-image-wrap is present, reduce container top padding */
.hero-image-wrap ~ .container { padding-top: 40px; }
.hero-tag {
  display: inline-block; color: var(--cyan);
  font-size: clamp(11px,1.1vw,13px); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(34px,5vw,64px); font-weight: 900; color: var(--dark);
  line-height: 1.08; letter-spacing: -1.5px; max-width: 880px; margin: 0 auto 20px;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-sub {
  font-size: clamp(16px,1.8vw,20px); font-weight: 500; color: #555;
  line-height: 1.6; max-width: 660px; margin: 0 auto 36px;
}
.hero-cta {
  display: inline-block; background: var(--cyan); color: #fff;
  font-size: clamp(15px,1.5vw,18px); font-weight: 800;
  padding: 18px 44px; border-radius: var(--clay-radius-sm); text-decoration: none;
  letter-spacing: 0.3px; transition: transform .2s, box-shadow .2s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,164,228,0.35); }

/* Trust Bar */
.trust-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 16px; margin-top: 24px;
}
.review-badge {
  display: inline-flex; align-items: center; gap: 4px; background: #fff;
  border-radius: 8px; padding: 4px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.06);
}
.review-badge-logo { flex-shrink: 0; width: 14px; height: 14px; }
.review-badge-stars { color: #F5A623; font-size: 10px; letter-spacing: 0; line-height: 1; }
.review-badge-text { font-size: 10px; font-weight: 600; color: #555; line-height: 1.2; }
.review-badge-text strong { font-size: 11px; font-weight: 900; color: var(--dark); }
@media (max-width: 768px) {
  .trust-bar { gap: 8px 16px; flex-wrap: nowrap; justify-content: center; }
  .review-badge { padding: 3px 8px; gap: 3px; }
  .review-badge-logo { width: 12px; height: 12px; }
  .review-badge-stars { font-size: 9px; }
  .review-badge-text { font-size: 9px; }
  .review-badge-text strong { font-size: 10px; }
}

/* Hero Image — Full-bleed */
.hero-image-wrap { width: 100%; margin: 0; position: relative; line-height: 0; }
.hero-image-wrap img { width: 100%; height: auto; display: block; }
/* Subtle gradient at top of hero image for nav text readability */
.hero-image-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 120px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.10) 50%, transparent 100%);
}

/* Scroll indicator */
.scroll-indicator {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: scrollBounce 1.5s ease-in-out infinite;
  z-index: 998; cursor: pointer;
  transition: opacity 0.4s ease;
}
.scroll-indicator span {
  font-size: 11px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 2px;
  background: rgba(255,255,255,0.9); padding: 4px 14px;
  border-radius: 20px; backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.scroll-chevron {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--cyan);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,164,228,0.4);
}
.scroll-chevron svg {
  width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }

/* ---------- SECTION TYPOGRAPHY ---------- */
.section-eyebrow {
  text-align: center; font-size: clamp(11px,1.1vw,13px); font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.section-h2 {
  text-align: center; font-size: clamp(26px,3.2vw,40px); font-weight: 900;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 16px;
}
.section-sub {
  text-align: center; font-size: clamp(15px,1.5vw,18px); color: #555;
  font-weight: 500; line-height: 1.6; max-width: 660px; margin: 0 auto 56px;
}

/* ---------- SERVICES ---------- */
.services { padding: 80px 24px; background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.service-card {
  background: var(--warm-card); border-radius: var(--clay-radius);
  padding: 32px 28px; border-left: 4px solid var(--cyan);
  box-shadow: var(--clay-shadow);
  cursor: pointer; transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--clay-shadow-hover); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--cyan-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: clamp(16px,1.6vw,19px); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: clamp(13px,1.3vw,15px); font-weight: 500; color: #555; line-height: 1.6; }
.service-link {
  display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 700;
  color: var(--cyan); text-decoration: none; letter-spacing: 0.3px;
}

/* ---------- WHY CHOOSE US ---------- */
.why { padding: 80px 24px; background: var(--gray6); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.why-card {
  background: #fff; border-radius: var(--clay-radius);
  padding: 36px 32px; border-left: 4px solid var(--cyan);
  box-shadow: var(--clay-shadow);
}
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cyan-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: clamp(17px,1.8vw,21px); font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: clamp(14px,1.4vw,16px); font-weight: 500; color: #444; line-height: 1.65; }

/* ---------- PROCESS ---------- */
.process { padding: 80px 24px; background: var(--white); }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 960px; margin: 0 auto; position: relative;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--cyan); color: #fff; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; position: relative; z-index: 2;
  box-shadow: 0 4px 16px rgba(0,164,228,0.3);
}
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 30px;
  left: calc(50% + 30px); right: calc(-50% + 30px);
  height: 3px; background: rgba(0,164,228,0.2); z-index: 1;
}
.process-step h3 { font-size: clamp(15px,1.5vw,18px); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.process-step p { font-size: clamp(13px,1.3vw,15px); font-weight: 500; color: #555; line-height: 1.6; }

/* ---------- STATS ---------- */
.stat-strip { padding: 72px 24px; background: var(--dark); text-align: center; }
.stat-strip-eyebrow {
  font-size: clamp(11px,1.1vw,13px); font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.stat-strip h2 { font-size: clamp(24px,3vw,36px); font-weight: 900; color: #fff; margin-bottom: 56px; letter-spacing: -0.5px; }
.stat-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.stat-col-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--clay-radius); padding: 32px 20px;
}
.sc-num { font-size: clamp(36px,4.5vw,56px); font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 10px; }
.sc-label { font-size: clamp(13px,1.3vw,15px); font-weight: 600; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 80px 24px; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.testi-card {
  background: var(--gray6); border-radius: var(--clay-radius);
  padding: 32px 28px; box-shadow: var(--clay-shadow);
}
.testi-stars { color: var(--amber); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card blockquote {
  font-size: clamp(14px,1.4vw,16px); font-weight: 500; color: #333;
  line-height: 1.65; font-style: italic; margin-bottom: 16px;
}
.testi-card cite { font-size: 13px; font-weight: 700; color: #666; font-style: normal; }

/* ---------- FAQ ---------- */
.faq { padding: 80px 24px; background: var(--gray6); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--clay-radius-sm);
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid #e5e7eb; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-q {
  width: 100%; padding: 22px 28px; border: none; background: none;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left; font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px,1.5vw,17px); font-weight: 700; color: var(--dark);
}
.faq-q::after { content: '+'; font-size: 24px; font-weight: 300; color: var(--cyan); transition: transform .2s; }
.faq-item.active .faq-q::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.active .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 28px 22px; font-size: clamp(14px,1.4vw,16px); font-weight: 500; color: #555; line-height: 1.7; }

/* ---------- RELATED SERVICES ---------- */
.related { padding: 80px 24px; background: var(--white); }
.related-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1000px; margin: 0 auto; align-items: stretch;
}
.related-card {
  background: var(--gray6); border-radius: var(--clay-radius);
  padding: 28px 24px; text-align: center; text-decoration: none;
  box-shadow: var(--clay-shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column; justify-content: flex-start;
}
.related-card:hover { transform: translateY(-6px); box-shadow: var(--clay-shadow-hover); }
.related-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cyan-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
}
.related-icon svg { width: 26px; height: 26px; }
.related-card h3 { font-size: clamp(14px,1.4vw,16px); font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.related-card p { font-size: 13px; font-weight: 500; color: var(--cyan); }

/* ---------- LOCAL AREA ---------- */
.local-area { padding: 60px 24px; background: var(--warm-bg); }
.local-area-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 44px;
  max-width: 960px; margin: 0 auto; align-items: start;
}
.local-area-text { font-size: clamp(15px,1.5vw,17px); font-weight: 500; color: #555; line-height: 1.8; margin-bottom: 28px; }
.nearby-header { font-size: clamp(15px,1.5vw,17px); font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.nearby-list { display: flex; flex-direction: column; gap: 10px; }
.nearby-link { font-size: 14px; font-weight: 600; color: var(--cyan); text-decoration: none; transition: color .2s; }
.nearby-link:hover { color: var(--dark); }
.city-hub-link { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 700; color: var(--cyan); text-decoration: none; transition: color .2s; }
.city-hub-link:hover { color: var(--dark); }

/* ---------- FINAL CTA ---------- */
.final-cta { padding: 80px 24px; background: var(--dark); text-align: center; }
.final-cta h2 { font-size: clamp(26px,3.2vw,40px); font-weight: 900; color: #fff; margin-bottom: 16px; }
.final-cta > .container > p { font-size: clamp(15px,1.5vw,18px); font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.6; max-width: 580px; margin-left: auto; margin-right: auto; }
.final-form-wrap { max-width: 640px; margin: 0 auto 32px; }
.inline-form input, .inline-form textarea {
  width: 100%; padding: 16px 20px; border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--clay-radius-sm); font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 500; margin-bottom: 12px;
  background: rgba(255,255,255,0.08); color: #fff; outline: none; transition: border-color .2s;
}
.inline-form input::placeholder, .inline-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.inline-form input:focus, .inline-form textarea:focus { border-color: var(--cyan); background: rgba(255,255,255,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inline-submit {
  width: 100%; padding: 18px; background: var(--cyan); color: #fff; border: none;
  border-radius: var(--clay-radius-sm); font-family: 'Montserrat', sans-serif;
  font-size: 17px; font-weight: 800; cursor: pointer;
  transition: transform .2s, box-shadow .2s; margin-top: 4px;
}
.inline-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,164,228,0.35); }
.final-or { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.final-dual-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-btn {
  padding: 18px 36px; border-radius: var(--clay-radius-sm);
  font-size: clamp(15px,1.5vw,18px); font-weight: 800; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.final-btn:hover { transform: translateY(-2px); }
.final-btn-call { background: var(--cyan); color: #fff; }
.final-btn-call:hover { box-shadow: 0 6px 20px rgba(0,164,228,0.35); }
.final-btn-sms { background: rgba(255,255,255,0.1); color: #fff; border: 2px solid rgba(255,255,255,0.25); }
.final-phone { display: block; margin-top: 20px; font-size: clamp(22px,2.5vw,32px); font-weight: 900; color: var(--cyan); text-decoration: none; }
.form-toggle-btn {
  background: none; border: 2px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6); padding: 12px 28px; border-radius: var(--clay-radius-sm);
  font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: border-color .2s, color .2s;
}
.form-toggle-btn:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ---------- HERO TAG (Homepage) ---------- */
.hero-tag {
  display: inline-block; color: var(--cyan);
  font-size: clamp(11px,1.1vw,13px); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 28px;
}

/* ---------- HIGHLIGHTS (Homepage) ---------- */
.highlights { padding: 80px 24px; background: var(--warm-bg); }
.highlights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.highlight-card {
  background: #fff; border-radius: var(--clay-radius);
  padding: 32px 28px; text-align: center;
  box-shadow: var(--clay-shadow);
  transition: transform .25s, box-shadow .25s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--clay-shadow-hover); }
.highlight-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--cyan-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 16px;
}
.highlight-icon svg { width: 28px; height: 28px; }
.highlight-card h3 { font-size: clamp(15px,1.5vw,18px); font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.highlight-card p { font-size: clamp(13px,1.3vw,15px); font-weight: 500; color: #555; line-height: 1.6; }

/* ---------- AREAS (Homepage) ---------- */
.areas { padding: 80px 24px; background: var(--white); }
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1000px; margin: 0 auto;
}
.area-card {
  background: var(--gray6); border-radius: var(--clay-radius);
  padding: 28px 24px; text-align: center; text-decoration: none;
  box-shadow: var(--clay-shadow);
  transition: transform .25s, box-shadow .25s;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--clay-shadow-hover); }
.area-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cyan-light); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
}
.area-icon svg { width: 26px; height: 26px; }
.area-card h3 { font-size: clamp(14px,1.4vw,16px); font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.area-card p { font-size: 13px; font-weight: 500; color: var(--cyan); }

/* ---------- STAT COLUMNS (Homepage variant) ---------- */
.stat-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; max-width: 960px; margin: 0 auto; }
.stat-col-card {
  background: rgba(255,255,255,0.04); border-radius: var(--clay-radius);
  padding: 28px 20px; text-align: center;
}
.sc-num { font-size: clamp(36px,4.5vw,56px); font-weight: 900; color: var(--cyan); line-height: 1; margin-bottom: 10px; }
.sc-label { font-size: clamp(13px,1.3vw,15px); font-weight: 600; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero { padding-top: 0 !important; }
  .hero .container { padding-top: 28px; }
  .hero.has-image .container { padding-top: 28px; }
  .hero-image-wrap ~ .container { padding-top: 28px; }
  .scroll-indicator { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step:not(:last-child)::after { display: none; }
  .stat-cols { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-num { font-size: 32px; margin-bottom: 6px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .local-area-grid { grid-template-columns: 1fr; }
  .icta-buttons { flex-direction: column; gap: 12px; }
  .icta-phone { font-size: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .final-dual-cta { flex-direction: column; align-items: center; }
}

/* ---------- MOBILE PADDING FIX ---------- */
@media (max-width: 768px) {
  .container { padding: 0 12px; }
  .services, .why, .process, .stat-strip, .testimonials, .faq, .related, .local-area, .final-cta, .highlights, .areas { padding-left: 12px; padding-right: 12px; }
  .inline-cta-bar { padding-left: 12px; padding-right: 12px; }
  .hero .container { padding-left: 12px; padding-right: 12px; }
  .stat-col-card { padding: 20px 12px; }
  .service-card { padding: 20px 16px; }
  .related-card { padding: 20px 16px; }
}

/* ---------- SERVICES GRID EQUAL HEIGHT ---------- */
.services-grid, .related-grid { align-items: stretch; }

/* ---------- AREAS WE SERVICE PAGE ---------- */
.areas-intro {
  padding: 60px 24px;
  text-align: center;
  background: var(--warm-bg);
}
.areas-intro .container {
  max-width: 800px;
}
.areas-intro p {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: #333;
}

/* Suburb Search Section */
.suburb-search-section {
  padding: 40px 24px;
  background: linear-gradient(165deg, var(--warm-bg) 0%, var(--cyan-light) 100%);
  margin-bottom: 0;
}
.suburb-search-section .container {
  max-width: 600px;
}
.suburb-search-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 12px;
}
.suburb-search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid transparent;
  border-radius: var(--clay-radius-sm);
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.suburb-search-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px var(--cyan-glow);
}
.suburb-search-input::placeholder {
  color: #999;
}

/* Suburb Regions Container */
.suburb-regions {
  padding: 60px 24px;
  background: var(--warm-bg);
}
.suburb-regions .container {
  max-width: 1100px;
}

/* Region Card */
.region-card {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
}
.region-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.region-card.hidden {
  display: none;
}

/* Region Heading & Meta */
.region-heading {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  margin-top: 0;
}
.region-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #666;
}
.suburb-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--cyan-light);
  border-radius: 12px;
  font-weight: 600;
  color: var(--dark);
}

/* Suburb Grid */
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.suburb-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--clay-radius-sm);
  color: var(--cyan);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suburb-link:hover {
  background: var(--cyan-light);
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 164, 228, 0.20);
}
.suburb-link.hidden {
  display: none;
}
.suburb-link::before {
  content: '→';
  margin-right: 8px;
  opacity: 0.6;
  font-weight: 700;
}

/* Responsive — Suburb Grid */
@media (max-width: 1024px) {
  .suburb-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
@media (max-width: 768px) {
  .areas-intro {
    padding: 40px 12px;
  }
  .suburb-search-section {
    padding: 30px 12px;
  }
  .suburb-regions {
    padding: 40px 12px;
  }
  .region-heading {
    font-size: clamp(18px, 2vw, 24px);
  }
  .suburb-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .suburb-link {
    padding: 14px 16px;
    font-size: 14px;
  }
  .region-card {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
