@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800&family=Outfit:wght@400;500;600&display=swap');

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

:root {
  --color-brand-red: #CC2222;
  --color-brand-darkred: #9A1515;
  --color-brand-orange: #F97316;
  --color-brand-dark: #0A0F1E;
  --color-brand-mid: #141E32;
  --color-brand-steel: #1E2D45;
  --color-white: #FFFFFF;
  --color-off-white: #F5F4F0;
  --color-text-dark: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #16A34A;
  --font-display: "Syne", sans-serif;
  --font-body: "Outfit", sans-serif;
  --container-max: 1200px;
  --container-pad: 0 24px;
  --section-gap: 100px;
  --border-radius: 12px;
  --neo-light: rgba(255, 255, 255, 0.08);
  --neo-dark: rgba(0, 0, 0, 0.45);
  --neo-soft: inset 1px 1px 0 rgba(255, 255, 255, 0.05), inset -1px -1px 0 rgba(0, 0, 0, 0.35);
  --neo-raised: 8px 8px 18px var(--neo-dark), -6px -6px 14px rgba(255, 255, 255, 0.03);
}

body {
  font-family: var(--font-body);
  background: var(--color-brand-dark);
  color: var(--color-white);
  line-height: 1.6;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

.urgency-bar {
  width: 100%;
  background: var(--color-brand-darkred);
  color: var(--color-white);
  font-size: 11px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-white);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-brand-red);
  color: var(--color-white);
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.btn-primary:hover {
  background: var(--color-brand-darkred);
}

.btn-secondary,
.btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  box-shadow: var(--neo-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--color-brand-dark);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--neo-soft);
}

.home-page .site-header {
  border-bottom: none;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  flex: 1;
  justify-content: center;
}

.site-nav-item {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  background: #060C18;
  padding: 44px 0 14px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-brand-red);
  font-weight: 500;
}

/* HOMEPAGE STYLES */
.home-page {
  overflow-x: hidden;
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--color-brand-red);
  color: var(--color-white);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
}

.home-logo-text {
  font-weight: 500;
}

.home-services-menu {
  position: relative;
}

.home-services-toggle {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 0;
}

.home-services-toggle:hover,
.home-services-toggle[aria-expanded="true"] {
  color: var(--color-white);
}

.home-services-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: var(--color-brand-mid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px;
  display: none;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.home-services-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.home-services-dropdown.is-open {
  display: block;
}

.home-services-dropdown a {
  display: block;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.home-services-dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-mobile-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--color-white);
  border-radius: 8px;
  font-size: 18px;
}

.home-header-cta {
  min-width: 168px;
  text-align: center;
}

.home-mobile-nav {
  display: none;
}

.home-hero-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: -2px;
}

.home-hero {
  padding: 44px 0 24px;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateY(0);
  will-change: transform;
}

.home-hero-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.65;
  filter: saturate(0.75) contrast(1.05) brightness(0.7);
  transform: scale(1.06);
}

.home-hero-media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(180deg, rgba(10, 15, 30, 0.4) 0%, rgba(10, 15, 30, 0.58) 100%);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.home-hero-eyebrow {
  color: var(--color-brand-red);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
}

.home-hero-heading {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.2;
}

.home-hero-sub {
  margin-top: 14px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}

.home-hero-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  background: var(--color-brand-mid);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.home-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-brand-red);
  animation: pulse 1.4s infinite;
}

.home-hero-stars {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-star-icons {
  color: #F59E0B;
}

.home-hero-stars small {
  color: rgba(255, 255, 255, 0.55);
}

.home-hero-stars a {
  color: var(--color-brand-red);
  font-weight: 500;
}

.home-booking-panel {
  position: relative;
  overflow: hidden;
  background: var(--color-brand-mid);
  border-radius: 10px;
  padding: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.home-booking-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) left bottom / 18% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) left bottom / 1px 0% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) left top / 0% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) right top / 1px 0% no-repeat;
  animation: homeTabTrace 3s linear infinite;
}

.home-booking-panel h2 {
  font-size: 14px;
  font-weight: 500;
}

.home-booking-panel p {
  margin-top: 4px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.home-booking-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.home-booking-form input,
.home-booking-form select,
.home-popup-form input {
  min-height: 44px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
}

.home-booking-form option {
  color: #111;
}

.home-booking-divider {
  margin-top: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.home-booking-phone {
  margin-top: 4px;
  text-align: center;
  color: var(--color-brand-red);
  font-size: 15px;
  font-weight: 500;
  animation: pulse 1.4s infinite;
}

.home-booking-hours {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.home-booking-confirmation {
  margin-top: 8px;
  color: #9AE6B4;
  font-size: 12px;
  display: none;
}

.home-stats {
  position: relative;
  z-index: 1;
  padding: 28px 0;
}

.home-stats-video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.75) contrast(1.05) brightness(0.66);
  transform: scale(1.04);
}

.home-stats-grid {
  background: transparent;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.home-stat {
  padding: 14px;
  text-align: center;
  border-right: 0.5px solid rgba(255, 255, 255, 0.08);
}

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

.home-stat-number {
  font-size: 28px;
  color: var(--color-brand-red);
  font-weight: 500;
}

.home-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.home-services {
  background: #0D1422;
  padding: 60px 0;
}

.home-services h2,
.home-reviews h2,
.home-faq h2 {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 34px;
}

.home-tabs {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.home-tab-btn {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
}

.home-tab-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.72;
  background:
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) left bottom / 20% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) left bottom / 1px 0% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) left top / 0% 1px no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) right top / 1px 0% no-repeat;
  animation: homeTabTrace 2.4s linear infinite;
}

.home-tab-btn.is-active {
  background: var(--color-brand-red);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-tab-btn.is-active::before {
  opacity: 0.85;
}

@keyframes homeTabTrace {
  0% {
    background-size: 20% 1px, 1px 0%, 0% 1px, 1px 0%;
  }
  26% {
    background-size: 20% 1px, 1px 100%, 0% 1px, 1px 0%;
  }
  52% {
    background-size: 20% 1px, 1px 100%, 100% 1px, 1px 0%;
  }
  78% {
    background-size: 20% 1px, 1px 100%, 100% 1px, 1px 100%;
  }
  100% {
    background-size: 20% 1px, 1px 0%, 0% 1px, 1px 0%;
  }
}

.home-tab-panel {
  margin-top: 16px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-tab-panel.is-active {
  display: grid;
}

.home-svc-card,
.home-svc-checklist-card {
  background: var(--color-brand-mid);
  border-radius: 8px;
  padding: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.home-svc-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.home-svc-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.home-svc-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.home-svc-card .btn-primary {
  margin-top: 14px;
  width: 100%;
}

.home-svc-checklist-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  margin-bottom: 8px;
}

.home-svc-checklist {
  display: grid;
  gap: 8px;
}

.home-svc-checklist-item {
  background: var(--color-brand-mid);
  border-radius: 6px;
  padding: 8px;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-brand-red);
  color: #fff;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-reviews {
  padding: 60px 0;
}

.home-review-grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.home-review-card {
  background: var(--color-brand-mid);
  border-radius: 8px;
  padding: 16px;
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.home-review-top {
  display: flex;
  gap: 8px;
  align-items: center;
}

.home-review-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brand-red);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 500;
}

.home-review-stars {
  color: #F59E0B;
}

.home-review-quote {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.home-review-badge {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.home-reviews-link {
  margin-top: 14px;
  display: inline-block;
  color: var(--color-brand-red);
  font-weight: 500;
}

.home-faq {
  background: #0D1422;
  padding: 60px 0;
}

.home-faq-list {
  margin-top: 16px;
}

.home-faq-item {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.home-faq-question {
  width: 100%;
  min-height: 44px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  padding: 12px 0;
}

.home-faq-arrow {
  color: var(--color-brand-red);
  transition: transform 0.2s ease;
}

.home-faq-question[aria-expanded="true"] .home-faq-arrow {
  transform: rotate(90deg);
}

.home-faq-answer {
  display: none;
  padding: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.home-faq-answer.is-open {
  display: block;
}

.home-cta-banner {
  background: var(--color-brand-red);
  padding: 28px 0;
}

.home-cta-inner {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.home-cta-inner h2 {
  font-size: 30px;
  line-height: 1.2;
}

.home-cta-inner p {
  color: rgba(255, 255, 255, 0.82);
}

.home-cta-actions {
  display: flex;
  gap: 8px;
}

.home-btn-white {
  background: var(--color-white);
  color: var(--color-brand-red);
}

.home-footer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.home-footer-title {
  color: var(--color-brand-orange);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
}

.home-footer-links {
  display: grid;
  gap: 6px;
}

/* Inline company links (Home / About / Blog / Contact) — not a vertical services list */
.home-footer-nav-inline {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 6px;
  font-size: 14px;
}

.home-footer-nav-inline a {
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.home-footer-nav-inline .home-footer-nav-sep {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.home-footer-links a,
.home-footer-contact a,
.home-footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.home-footer-bottom {
  margin-top: 18px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.home-email-trigger {
  margin-top: 14px;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

@media (min-width: 769px) {
  .home-email-trigger {
    width: auto;
  }
}

.home-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 20px;
}

.home-popup-overlay.is-open {
  display: flex;
}

.home-popup-card {
  width: 100%;
  max-width: 420px;
  background: var(--color-brand-mid);
  border-radius: 12px;
  padding: 28px;
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  position: relative;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.55), -12px -12px 28px rgba(255, 255, 255, 0.03);
}

.home-popup-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 520px) {
  .home-popup-form-row {
    grid-template-columns: 1fr;
  }
}

.home-popup-field {
  display: grid;
  gap: 6px;
}

.home-popup-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.home-popup-req {
  color: var(--color-brand-red);
}

.home-popup-char-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.home-popup-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.home-popup-form select,
.home-popup-form textarea {
  min-height: 44px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: inherit;
  font-size: 14px;
}

.home-popup-form textarea {
  min-height: 100px;
  resize: vertical;
}

.home-popup-form option {
  color: #111;
}

/* HEATING PAGE STYLES */
.heating-hero,
.cooling-hero,
.water-hero,
.plumbing-hero {
  padding: 52px 0;
  background: var(--color-brand-dark);
}

.heating-hero-grid,
.cooling-hero-grid,
.water-hero-grid,
.plumbing-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.heating-hero h1,
.cooling-hero h1,
.water-hero h1,
.plumbing-hero h1 {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.2;
  margin-top: 10px;
}

.heating-hero p,
.cooling-hero p,
.water-hero p,
.plumbing-hero p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.heating-hero-actions,
.cooling-hero-actions,
.water-hero-actions,
.plumbing-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.heating-hero-image,
.cooling-hero-image,
.water-hero-image,
.plumbing-hero-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.heating-hero-image,
.cooling-hero-image,
.water-hero-image,
.plumbing-hero-image {
  height: auto;
}

.heating-detail,
.cooling-detail,
.water-detail,
.plumbing-detail {
  background: var(--color-off-white);
  color: var(--color-text-dark);
  padding: 60px 0;
}

.heating-detail-card,
.cooling-detail-card,
.water-detail-card,
.plumbing-detail-card {
  max-width: 820px;
  margin: 0 auto;
  background: #ECEAE4;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 10px 10px 24px rgba(136, 136, 136, 0.25), -8px -8px 20px rgba(255, 255, 255, 0.9);
}

.heating-checklist,
.cooling-checklist,
.water-checklist,
.plumbing-checklist {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.heating-checklist-item,
.cooling-checklist-item,
.water-checklist-item,
.plumbing-checklist-item {
  background: #F5F4F0;
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: inset 2px 2px 6px rgba(184, 182, 177, 0.35), inset -2px -2px 6px rgba(255, 255, 255, 0.85);
}

.heating-why,
.cooling-why,
.water-why,
.plumbing-why {
  background: var(--color-brand-dark);
  padding: 52px 0;
}

.heating-why-list,
.cooling-why-list,
.water-why-list,
.plumbing-why-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.heating-why-item,
.cooling-why-item,
.water-why-item,
.plumbing-why-item {
  background: var(--color-brand-mid);
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.service-extra {
  padding: 52px 0;
  background: var(--color-brand-dark);
}

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

.service-extra-card {
  background: var(--color-brand-mid);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.service-extra-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-extra-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-extra-card li {
  color: rgba(255, 255, 255, 0.75);
}

.service-faq {
  background: #0D1422;
  padding: 52px 0;
}

.home-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
}

.home-popup-card h2 {
  font-size: 24px;
  font-family: var(--font-display);
}

.home-popup-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
}

.home-popup-form {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.home-popup-privacy {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.home-popup-success,
.home-popup-error {
  margin-top: 10px;
  display: none;
}

.home-popup-success {
  color: #9AE6B4;
}

.home-popup-error {
  color: #FEB2B2;
}

.site-call-fab {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 70;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-red);
  color: var(--color-white);
  font-size: 22px;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.site-trust-bubble {
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 69;
  max-width: 360px;
  width: min(360px, calc(100vw - 96px));
  background: #26272b;
  color: #9fa2a7;
  border-left: 5px solid #56b273;
  border-radius: 10px;
  padding: 12px 16px;
  line-height: 1.45;
  box-shadow: 10px 10px 24px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.site-trust-bubble::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #26272b transparent;
}

.site-trust-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-trust-bubble[data-accent="1"] { border-left-color: #56b273; }
.site-trust-bubble[data-accent="2"] { border-left-color: #01AD9B; }
.site-trust-bubble[data-accent="3"] { border-left-color: #b388dd; }
.site-trust-bubble[data-accent="4"] { border-left-color: #ff8750; }

.site-trust-bubble-title {
  display: block;
  color: #f5f7fb;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.site-trust-bubble-body {
  display: block;
  font-size: 12px;
}

@media (max-width: 768px) {
  .site-call-fab {
    display: inline-flex;
  }

  .site-trust-bubble {
    max-width: 300px;
    width: min(300px, calc(100vw - 92px));
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .urgency-bar {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .site-nav,
  .home-header-cta {
    display: none;
  }

  .home-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .home-mobile-nav.is-open {
    display: grid;
    gap: 8px;
    padding-bottom: 12px;
  }

  .home-mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-video,
  .home-stats-video {
    opacity: 0.53;
  }

  .home-hero-heading {
    font-size: 30px;
  }

  .home-booking-panel {
    width: 100%;
  }

  .home-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-stat:nth-child(2n) {
    border-right: none;
  }

  .home-stat:nth-child(-n+2) {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  }

  .home-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    gap: 6px;
    padding-bottom: 4px;
    margin-inline: -4px;
    padding-inline: 4px;
    /* Hide native scrollbar (still scrollable by touch / trackpad) */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .home-tab-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .home-tab-panel {
    grid-template-columns: 1fr;
  }

  .home-review-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .home-cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-footer-grid {
    grid-template-columns: 1fr;
  }

  .home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .heating-hero-grid,
  .cooling-hero-grid,
  .water-hero-grid,
  .plumbing-hero-grid,
  .service-extra-grid {
    grid-template-columns: 1fr;
  }

  .heating-hero h1,
  .cooling-hero h1,
  .water-hero h1,
  .plumbing-hero h1 {
    font-size: 30px;
  }

  .heating-hero-grid .heating-hero-image,
  .cooling-hero-grid .cooling-hero-image,
  .water-hero-grid .water-hero-image,
  .plumbing-hero-grid .plumbing-hero-image {
    order: -1;
  }

  .heating-checklist-grid,
  .cooling-checklist-grid,
  .water-checklist-grid,
  .plumbing-checklist-grid {
    grid-template-columns: 1fr;
  }

  .heating-process-steps,
  .cooling-process-steps,
  .water-process-steps,
  .plumbing-process-steps {
    grid-template-columns: 1fr;
  }

  .heating-pricing-cards,
  .cooling-pricing-cards,
  .water-pricing-cards,
  .plumbing-pricing-cards {
    grid-template-columns: 1fr;
  }

  .heating-review-row,
  .cooling-review-row,
  .water-review-row,
  .plumbing-review-row {
    grid-template-columns: 1fr;
  }

  .heating-related-grid,
  .cooling-related-grid,
  .water-related-grid,
  .plumbing-related-grid {
    grid-template-columns: 1fr;
  }

  .heating-cta-inner,
  .cooling-cta-inner,
  .water-cta-inner,
  .plumbing-cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .heating-cta-actions,
  .cooling-cta-actions,
  .water-cta-actions,
  .plumbing-cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-service-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══ SERVICE PAGE REBUILD — shared utilities ═══ */
.btn-white {
  background: #ffffff;
  color: #cc2222;
  border-radius: 6px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.btn-white:hover {
  background: #f5f4f0;
}

.home-services-dropdown a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.symptom-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 18px;
  border: 0.5px solid var(--color-border);
  border-top: 3px solid #cc2222;
}

.symptom-card-icon {
  font-size: 18px;
  margin-bottom: 8px;
}

.symptom-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.symptom-card-body {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.related-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  border: 0.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.related-card-icon {
  font-size: 20px;
}

.related-card-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text-dark);
}

.related-card-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.related-card-link {
  font-size: 12px;
  color: #cc2222;
  font-weight: 500;
  text-decoration: none;
  margin-top: 4px;
}

.related-card-link:hover {
  text-decoration: underline;
}

/* Signs */
.heating-signs,
.cooling-signs,
.water-signs,
.plumbing-signs {
  background: #f5f4f0;
  padding: 60px 0;
  color: var(--color-text-dark);
}

.heating-signs h2,
.cooling-signs h2,
.water-signs h2,
.plumbing-signs h2 {
  font-size: 26px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.heating-signs-intro,
.cooling-signs-intro,
.water-signs-intro,
.plumbing-signs-intro {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 720px;
  line-height: 1.6;
}

/* Checklist section (dark) — section element uses [prefix]-checklist */
section.heating-checklist,
section.cooling-checklist,
section.water-checklist,
section.plumbing-checklist {
  display: block;
  margin-top: 0;
  padding: 60px 0;
  background: #0a0f1e;
  color: rgba(255, 255, 255, 0.88);
}

section.heating-checklist h2,
section.cooling-checklist h2,
section.water-checklist h2,
section.plumbing-checklist h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-top: 8px;
  color: #fff;
}

section.heating-checklist .section-label,
section.cooling-checklist .section-label,
section.water-checklist .section-label,
section.plumbing-checklist .section-label {
  color: #cc2222;
}

.heating-checklist-sub,
.cooling-checklist-sub,
.water-checklist-sub,
.plumbing-checklist-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.heating-checklist-grid,
.cooling-checklist-grid,
.water-checklist-grid,
.plumbing-checklist-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-top: 24px;
}

.heating-checklist-rows,
.cooling-checklist-rows,
.water-checklist-rows,
.plumbing-checklist-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.heating-checklist-row,
.cooling-checklist-row,
.water-checklist-row,
.plumbing-checklist-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.heating-checklist-check,
.cooling-checklist-check,
.water-checklist-check,
.plumbing-checklist-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cc2222;
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.heating-checklist-text strong,
.cooling-checklist-text strong,
.water-checklist-text strong,
.plumbing-checklist-text strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.heating-checklist-text span,
.cooling-checklist-text span,
.water-checklist-text span,
.plumbing-checklist-text span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.heating-checklist-callout,
.cooling-checklist-callout,
.water-checklist-callout,
.plumbing-checklist-callout {
  background: #141e32;
  border-radius: 12px;
  padding: 22px;
  border-top: 4px solid #cc2222;
  box-shadow: var(--neo-raised), var(--neo-soft);
}

.heating-checklist-callout h3,
.cooling-checklist-callout h3,
.water-checklist-callout h3,
.plumbing-checklist-callout h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.heating-checklist-callout p,
.cooling-checklist-callout p,
.water-checklist-callout p,
.plumbing-checklist-callout p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.heating-checklist-callout .btn-primary,
.cooling-checklist-callout .btn-primary,
.water-checklist-callout .btn-primary,
.plumbing-checklist-callout .btn-primary {
  width: 100%;
  margin-top: 14px;
  justify-content: center;
  min-height: 44px;
}

.heating-checklist-callout-tel,
.cooling-checklist-callout-tel,
.water-checklist-callout-tel,
.plumbing-checklist-callout-tel {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

.heating-checklist-callout-tel a,
.cooling-checklist-callout-tel a,
.water-checklist-callout-tel a,
.plumbing-checklist-callout-tel a {
  color: #cc2222;
}

.heating-checklist-callout-note,
.cooling-checklist-callout-note,
.water-checklist-callout-note,
.plumbing-checklist-callout-note {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* Process */
.heating-process,
.cooling-process,
.water-process,
.plumbing-process {
  background: #ffffff;
  padding: 60px 0;
  color: var(--color-text-dark);
}

.heating-process h2,
.cooling-process h2,
.water-process h2,
.plumbing-process h2 {
  font-size: 26px;
  margin-top: 8px;
}

.heating-process-steps,
.cooling-process-steps,
.water-process-steps,
.plumbing-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.heating-process-step,
.cooling-process-step,
.water-process-step,
.plumbing-process-step {
  position: relative;
  padding: 20px 16px 16px;
  border-radius: 12px;
  border: 0.5px solid var(--color-border);
  background: #fafafa;
  min-height: 44px;
}

.heating-process-num,
.cooling-process-num,
.water-process-num,
.plumbing-process-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: rgba(204, 34, 34, 0.18);
  line-height: 1;
  margin-bottom: 6px;
}

.heating-process-step h3,
.cooling-process-step h3,
.water-process-step h3,
.plumbing-process-step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.heating-process-step p,
.cooling-process-step p,
.water-process-step p,
.plumbing-process-step p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.heating-process-trust,
.cooling-process-trust,
.water-process-trust,
.plumbing-process-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.heating-process-trust span,
.cooling-process-trust span,
.water-process-trust span,
.plumbing-process-trust span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 10px 8px;
  border-radius: 8px;
  background: #f5f4f0;
}

/* Pricing */
.heating-pricing,
.cooling-pricing,
.water-pricing,
.plumbing-pricing {
  background: #f5f4f0;
  padding: 60px 0;
  color: var(--color-text-dark);
}

.heating-pricing h2,
.cooling-pricing h2,
.water-pricing h2,
.plumbing-pricing h2 {
  font-size: 26px;
  margin-top: 8px;
}

.heating-pricing-intro,
.cooling-pricing-intro,
.water-pricing-intro,
.plumbing-pricing-intro {
  margin-top: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 800px;
  line-height: 1.6;
}

.heating-pricing-cards,
.cooling-pricing-cards,
.water-pricing-cards,
.plumbing-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.heating-pricing-card,
.cooling-pricing-card,
.water-pricing-card,
.plumbing-pricing-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 0.5px solid var(--color-border);
}

.heating-pricing-card h3,
.cooling-pricing-card h3,
.water-pricing-card h3,
.plumbing-pricing-card h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.heating-pricing-card p,
.cooling-pricing-card p,
.water-pricing-card p,
.plumbing-pricing-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.heating-pricing-callout,
.cooling-pricing-callout,
.water-pricing-callout,
.plumbing-pricing-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid rgba(204, 34, 34, 0.45);
  background: rgba(204, 34, 34, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.heating-pricing-callout p,
.cooling-pricing-callout p,
.water-pricing-callout p,
.plumbing-pricing-callout p {
  flex: 1 1 280px;
  font-size: 14px;
  margin: 0;
}

/* Reviews strip */
.heating-reviews,
.cooling-reviews,
.water-reviews,
.plumbing-reviews {
  background: #0a0f1e;
  padding: 44px 0;
  color: #fff;
}

.heating-reviews h2,
.cooling-reviews h2,
.water-reviews h2,
.plumbing-reviews h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.heating-review-row,
.cooling-review-row,
.water-review-row,
.plumbing-review-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.heating-review-card,
.cooling-review-card,
.water-review-card,
.plumbing-review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 18px;
}

.heating-review-head,
.cooling-review-head,
.water-review-head,
.plumbing-review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.heating-review-avatar,
.cooling-review-avatar,
.water-review-avatar,
.plumbing-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #cc2222;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.heating-review-meta,
.cooling-review-meta,
.water-review-meta,
.plumbing-review-meta {
  flex: 1;
}

.heating-review-meta strong,
.cooling-review-meta strong,
.water-review-meta strong,
.plumbing-review-meta strong {
  display: block;
  font-size: 14px;
}

.heating-review-stars,
.cooling-review-stars,
.water-review-stars,
.plumbing-review-stars {
  color: #f5a524;
  font-size: 13px;
}

.heating-review-card blockquote,
.cooling-review-card blockquote,
.water-review-card blockquote,
.plumbing-review-card blockquote {
  margin: 0;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.heating-review-badge,
.cooling-review-badge,
.water-review-badge,
.plumbing-review-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.heating-reviews-google,
.cooling-reviews-google,
.water-reviews-google,
.plumbing-reviews-google {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #cc2222;
  text-decoration: none;
}

.heating-reviews-google:hover,
.cooling-reviews-google:hover,
.water-reviews-google:hover,
.plumbing-reviews-google:hover {
  text-decoration: underline;
}

/* Why */
.heating-why,
.cooling-why,
.water-why,
.plumbing-why {
  background: #141e32;
  padding: 44px 0;
  color: #fff;
}

.heating-why h2,
.cooling-why h2,
.water-why h2,
.plumbing-why h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.heating-why-grid,
.cooling-why-grid,
.water-why-grid,
.plumbing-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.heating-why-point,
.cooling-why-point,
.water-why-point,
.plumbing-why-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.heating-why-point-icon,
.cooling-why-point-icon,
.water-why-point-icon,
.plumbing-why-point-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.heating-why-point h3,
.cooling-why-point h3,
.water-why-point h3,
.plumbing-why-point h3 {
  font-size: 14px;
  margin-bottom: 4px;
}

.heating-why-point p,
.cooling-why-point p,
.water-why-point p,
.plumbing-why-point p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Areas */
.heating-areas,
.cooling-areas,
.water-areas,
.plumbing-areas {
  background: #0a0f1e;
  padding: 44px 0;
  color: #fff;
}

.heating-areas h2,
.cooling-areas h2,
.water-areas h2,
.plumbing-areas h2 {
  font-size: 22px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.heating-areas-body,
.cooling-areas-body,
.water-areas-body,
.plumbing-areas-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 800px;
}

.heating-area-pills,
.cooling-area-pills,
.water-area-pills,
.plumbing-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.heating-area-pill,
.cooling-area-pill,
.water-area-pill,
.plumbing-area-pill {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Related */
.heating-related,
.cooling-related,
.water-related,
.plumbing-related {
  background: #f5f4f0;
  padding: 44px 0;
  color: var(--color-text-dark);
}

.heating-related h2,
.cooling-related h2,
.water-related h2,
.plumbing-related h2 {
  font-size: 22px;
  margin-bottom: 18px;
}

.heating-related-grid,
.cooling-related-grid,
.water-related-grid,
.plumbing-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* FAQ (prefixed) */
.heating-faq,
.cooling-faq,
.water-faq,
.plumbing-faq {
  background: #ffffff;
  padding: 60px 0;
  color: var(--color-text-dark);
}

.heating-faq h2,
.cooling-faq h2,
.water-faq h2,
.plumbing-faq h2 {
  font-size: 26px;
  margin-top: 8px;
}

.heating-faq-list,
.cooling-faq-list,
.water-faq-list,
.plumbing-faq-list {
  margin-top: 20px;
  display: grid;
  gap: 0;
}

.heating-faq-item,
.cooling-faq-item,
.water-faq-item,
.plumbing-faq-item {
  border-bottom: 0.5px solid var(--color-border);
}

.heating-faq-question,
.cooling-faq-question,
.water-faq-question,
.plumbing-faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 16px 36px 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  cursor: pointer;
  position: relative;
  min-height: 44px;
}

.heating-faq-arrow,
.cooling-faq-arrow,
.water-faq-arrow,
.plumbing-faq-arrow {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s ease;
  font-size: 20px;
  color: #cc2222;
}

.heating-faq-question[aria-expanded="true"] .heating-faq-arrow,
.cooling-faq-question[aria-expanded="true"] .cooling-faq-arrow,
.water-faq-question[aria-expanded="true"] .water-faq-arrow,
.plumbing-faq-question[aria-expanded="true"] .plumbing-faq-arrow {
  transform: translateY(-50%) rotate(90deg);
}

.heating-faq-answer,
.cooling-faq-answer,
.water-faq-answer,
.plumbing-faq-answer {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.heating-faq-answer.is-open,
.cooling-faq-answer.is-open,
.water-faq-answer.is-open,
.plumbing-faq-answer.is-open {
  display: block;
}

/* Final CTA banner (prefixed) */
.heating-cta-banner,
.cooling-cta-banner,
.water-cta-banner,
.plumbing-cta-banner {
  background: #cc2222;
  padding: 40px 0;
  color: #fff;
}

.heating-cta-inner,
.cooling-cta-inner,
.water-cta-inner,
.plumbing-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.heating-cta-inner h2,
.cooling-cta-inner h2,
.water-cta-inner h2,
.plumbing-cta-inner h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.heating-cta-inner p,
.cooling-cta-inner p,
.water-cta-inner p,
.plumbing-cta-inner p {
  font-size: 14px;
  opacity: 0.95;
}

.heating-cta-actions,
.cooling-cta-actions,
.water-cta-actions,
.plumbing-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.heating-cta-actions .btn-ghost,
.cooling-cta-actions .btn-ghost,
.water-cta-actions .btn-ghost,
.plumbing-cta-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* Hero eyebrow on dark service heroes */
.heating-hero .section-label,
.cooling-hero .section-label,
.water-hero .section-label,
.plumbing-hero .section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #cc2222;
}

/* Contact page */
.contact-hero {
  background: #0a0f1e;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.contact-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 34px;
  margin-top: 10px;
  line-height: 1.15;
}

.contact-hero-sub {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.contact-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.contact-hero-pills a {
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.contact-pill-call {
  background: #cc2222;
  color: #fff;
}

.contact-pill-email {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.contact-body {
  background: #f5f4f0;
  padding: 60px 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.contact-form-card h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-form-card > p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.contact-form-card .home-popup-form {
  margin-top: 0;
}

.contact-form-card .home-popup-field span.home-popup-label {
  color: var(--color-text-dark);
}

.contact-form-card .home-popup-form input,
.contact-form-card .home-popup-form select,
.contact-form-card .home-popup-form textarea {
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-text-dark);
}

.contact-form-card .home-popup-char-count {
  color: var(--color-text-muted);
}

.contact-form-card .home-popup-honeypot span {
  color: var(--color-text-dark);
}

.contact-info {
  background: #141e32;
  border-radius: 12px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-info h2 {
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-info-block {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info-block a {
  color: #cc2222;
}

.contact-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 18px 0;
}

.contact-info h3 {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.contact-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.contact-area-pills span {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-response-callout {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(204, 34, 34, 0.12);
  border-left: 3px solid #cc2222;
  font-size: 13px;
  line-height: 1.5;
}

.contact-thanks-panel {
  padding: 4px 0 8px;
}

.contact-thanks-panel h2 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.25;
}

.contact-thanks-lead {
  font-size: 15px;
  color: var(--color-text-dark);
  line-height: 1.55;
  margin-bottom: 10px;
}

.contact-thanks-secondary {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.contact-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-thanks-actions .btn-primary,
.contact-thanks-actions .btn-ghost {
  min-height: 44px;
}

.contact-services-strip {
  background: #0a0f1e;
  padding: 44px 0;
  color: #fff;
}

.contact-services-strip h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-services-strip > .container > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.contact-service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.contact-service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px;
  text-decoration: none;
  color: #fff;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-service-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-service-card strong {
  font-size: 14px;
}

.contact-service-card span {
  font-size: 12px;
  color: #cc2222;
  font-weight: 500;
}

@media (max-width: 900px) {
  .heating-process-trust,
  .cooling-process-trust,
  .water-process-trust,
  .plumbing-process-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .heating-why-grid,
  .cooling-why-grid,
  .water-why-grid,
  .plumbing-why-grid {
    grid-template-columns: 1fr;
  }
}
