/* ============================================================
   Davidson Plumbing & Gas — Master Stylesheet
   ------------------------------------------------------------
   Design system: Dark navy + steel blue + orange CTA
   Colours pulled from logo: #1A2035 navy, #0369A1 blue, #F97316 orange
   ============================================================ */

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--cta);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ---- Design tokens ---- */
:root {
  --primary:        #1A2035;   /* dark navy — logo background colour */
  --primary-2:      #0F1629;   /* deeper navy for footer */
  --secondary:      #44403C;
  --accent:         #0369A1;   /* steel blue — utility bar, icons, pills */
  --accent-hover:   #0284C7;
  --accent-soft:    #DBEAFE;
  --cta:            #F97316;   /* flame orange — primary CTA button only */
  --cta-hover:      #EA580C;
  --bg:             #FAFAF9;
  --bg-alt:         #F5F5F4;
  --bg-card:        #FFFFFF;
  --text:           #0C0A09;
  --text-muted:     #57534E;
  --text-on-dark:   #FAFAF9;
  --text-on-dark-2: rgba(250, 250, 249, 0.78);
  --border:         #E7E5E4;
  --border-dark:    #292524;
  --shadow-sm:      0 1px 3px rgba(12, 10, 9, 0.06);
  --shadow-md:      0 8px 24px rgba(12, 10, 9, 0.10);
  --shadow-lg:      0 24px 56px rgba(12, 10, 9, 0.20);
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --container:      1240px;
  --nav-height:     84px;
  --ease:           cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Eyebrow / labels ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* Section heading with orange underline accent */
.heading-accent {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.text-center .heading-accent::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--cta);
  /* Uses --cta (orange) not --accent (blue) — CTA button intentionally matches logo flame */
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.45);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover {
  background: var(--primary-2);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ---- Phone button glow — pulses to draw attention to call CTAs ---- */
@keyframes call-pulse-white {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
     60%   { box-shadow: 0 0 0 12px rgba(255,255,255,0);  }
}
@keyframes call-pulse-orange {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249,115,22,0.6), 0 4px 14px rgba(249,115,22,0.35); }
     60%   { box-shadow: 0 0 0 12px rgba(249,115,22,0),  0 4px 14px rgba(249,115,22,0.35); }
}
a[href^="tel:"].btn-outline-light {
  animation: call-pulse-white 2.4s ease-out infinite;
}
a[href^="tel:"].btn-primary {
  animation: call-pulse-orange 2.4s ease-out infinite;
}

/* ============================================================
   TOP UTILITY BAR  (above nav — phone + service area)
   ============================================================ */
.utility-bar {
  background: var(--primary-2);
  color: var(--text-on-dark);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.utility-bar a:hover { color: #fff; }
.utility-bar .utility-left,
.utility-bar .utility-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility-bar svg { width: 16px; height: 16px; }

/* 24/7 Emergency badge in top bar — make it pop */
.emergency-badge {
  color: var(--accent) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.emergency-badge svg { color: var(--accent); }

@media (max-width: 600px) {
  .utility-bar .utility-left { display: none; }
  .utility-bar .container { justify-content: center; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(12, 10, 9, 0.14);
}
.site-header.scrolled .nav {
  height: 62px;
}
.site-header.scrolled .nav-logo-img {
  height: 46px;
  width: 46px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--nav-height);
  transition: height 0.3s var(--ease);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo img,
.nav-logo-img {
  height: 80px;
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  transition: height 0.3s var(--ease), width 0.3s var(--ease);
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-cta {
  padding: 12px 24px;
  font-size: 0.95rem;
}
.mobile-cta { display: none; }

/* Right-side nav cluster: emergency badge + phone + CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-emergency svg { width: 14px; height: 14px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.nav-phone:hover { color: var(--accent); }
.nav-phone svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1100px) {
  .nav-emergency { display: none; }
  .nav-links { gap: 1.25rem; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-right .nav-cta { display: none; }
  .mobile-cta { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-200%);
    transition: transform 0.35s var(--ease);
    align-items: stretch;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    justify-content: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.6rem 0; }
  .nav-cta { margin: 0.5rem 0 0; }
}
@media (max-width: 480px) {
  .nav-phone span { display: none; }
}

/* ============================================================
   HERO REEL  (Section 1 — full-screen video, no text)
   ============================================================ */
.hero-reel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #0c0a09;
}

/* Suppress the native "tap to play" overlay mobile browsers flash before
   muted autoplay kicks in (iOS Safari + Android Chrome) */
.hero-reel video::-webkit-media-controls,
.hero-reel video::-webkit-media-controls-enclosure,
.hero-reel video::-webkit-media-controls-panel,
.hero-reel video::-webkit-media-controls-start-playback-button,
.hero-reel video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0 !important;
}

/* Desktop landscape hero video — fills the frame (≥769px) */
.hero-reel-desk {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Mobile vertical excavator reel — fills the frame (≤768px) */
.hero-reel-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Desktop: hide the vertical reel, show the landscape clip */
@media (min-width: 769px) {
  .hero-reel-main { display: none; }
}

/* Mobile: hide the landscape clip, show the vertical reel */
@media (max-width: 768px) {
  .hero-reel-desk { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reel-desk,
  .hero-reel-main { display: none; }
}

/* Centered logo overlay — DESKTOP hero video only (hidden on the mobile reel).
   Sits above the video, never blocks clicks, drop-shadow keeps it legible. */
.hero-logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(190px, 28vw, 340px);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55));
}
.hero-logo img { width: 100%; height: auto; display: block; }
@media (min-width: 769px) { .hero-logo { display: block; } }

/* ============================================================
   HERO CONTENT BLOCK  (Section 2 — dark navy, text + form)
   ============================================================ */
.hero-content-block {
  background: var(--primary);
  color: #fff;
  padding: 5rem 0 6rem;
}

.hero-inner {
  padding: 6rem 0 4rem;
  min-height: 44vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-home { min-height: auto; padding: 4rem 0; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 .accent {
  color: var(--accent);
  display: block;
}
/* Home hero (.hero-content-block) — headline in the brand CTA blue */
.hero-content-block h1 {
  color: var(--accent);
}
.hero-content-block h1 .accent {
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-on-dark-2);
  margin-bottom: 1.75rem;
  max-width: 620px;
}

/* Google-review-style badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.7rem 1.15rem 0.7rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.review-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-badge-icon svg { width: 100%; height: 100%; }
.review-badge-text { line-height: 1.2; }
.review-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1rem;
}
.review-badge-rating .stars {
  display: inline-flex;
  color: var(--accent);
}
.review-badge-rating .stars svg { width: 14px; height: 14px; fill: #FACC15; }
.review-badge-sub {
  font-size: 0.78rem;
  color: var(--text-on-dark-2);
}

/* Trust bullets row */
.trust-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.trust-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  font-weight: 600;
  color: var(--text);
}
.hero .trust-bullets li,
.hero-content-block .trust-bullets li,
.section-dark .trust-bullets li { color: #fff; }
.trust-bullets svg {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero CTA card (right side — quote request) */
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-head {
  background: var(--accent);
  color: #fff;
  margin: -2rem -2rem 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero-card-head h3 {
  color: #fff;
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}
.hero-card-head p { margin: 0; opacity: 0.92; font-size: 0.95rem; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 5rem 0; }
.section-tight { padding: 2.25rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: var(--text-on-dark-2); }
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head.text-center { text-align: center; }
.section-head p {
  color: var(--text-muted);
  font-size: 1.08rem;
}
.section-dark .section-head p { color: var(--text-on-dark-2); }

/* ============================================================
   STATS ROW  (big orange numbers — Precise pattern)
   ============================================================ */
.stats-section { background: var(--accent); padding: 2.25rem 0; }
.stats-section .stat-num { color: #fff; }
.stats-section .stat-label { color: rgba(255,255,255,0.8); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}
.section-dark .stat-label { color: var(--text-on-dark-2); }

/* ============================================================
   WHY CHOOSE US  (4-card grid)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .feature-grid,
  .feature-grid.cols-3,
  .feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid,
  .feature-grid.cols-3,
  .feature-grid.cols-2 { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Dark variant for hero-adjacent panels */
.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark);
}
.section-dark .feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
}
.section-dark .feature-card p { color: var(--text-on-dark-2); }

/* ============================================================
   TWO-COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.flip > :first-child { order: 2; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.flip > :first-child { order: 0; }
}
.media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.media-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SERVICES — CARDS
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 720px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .service-grid { grid-template-columns: 1fr; gap: 0.75rem; } }

/* Desktop: hide chevron, make head-left transparent so children
   flow directly into the existing section-dark flex row.
   These must appear BEFORE the mobile media query so the
   @media (max-width: 768px) rules below can override them. */
.service-card-chevron { display: none; }
.service-card-head-left { display: contents; }

/* ---- Mobile accordion (icon + title visible, description collapses) ---- */
@media (max-width: 768px) {
  .service-card {
    cursor: pointer;
  }
  .service-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    margin-bottom: 0;
  }
  .service-card-head-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .service-icon {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .service-card-head h3 {
    margin-bottom: 0;
    font-size: 1rem;
  }
  .service-card-chevron {
    display: block;
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }
  .service-card.is-open .service-card-chevron {
    transform: rotate(180deg);
  }
  .service-card p {
    display: none;
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  .service-card.is-open p {
    display: block;
  }
  .service-card:hover {
    transform: none;
  }
  .services-photo-strip {
    display: none;
  }
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

/* Service icon — SVG icon container for redesigned service cards */
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--accent-hover);
  transform: scale(1.14);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-card-img {
  height: 200px;
  background: var(--primary) center/cover no-repeat;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(12,10,9,0.55) 100%);
}
.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { color: var(--text-muted); flex: 1; }
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.service-card-list li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.learn-more {
  color: var(--accent);
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.learn-more svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.learn-more:hover svg { transform: translateX(3px); }

/* ============================================================
   SERVICES PHOTO STRIP — 3-column image mosaic
   ============================================================ */
.services-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.services-photo-strip-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.services-photo-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.services-photo-strip-img:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .services-photo-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS — numbered steps (Precise pattern)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .process,
  .process.cols-5 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (max-width: 480px) {
  .process,
  .process.cols-5 { grid-template-columns: 1fr; gap: 1.25rem; }
}
.process-step {
  text-align: center;
  padding: 1rem;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(3, 105, 161, 0.35);
}
.process-step { position: relative; z-index: 1; }
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }
.section-dark .process-step p { color: var(--text-on-dark-2); }
.process::before {
  content: '';
  position: absolute;
  top: calc(1rem + 32px);
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    var(--accent-soft) 0px, var(--accent-soft) 6px,
    transparent 6px, transparent 14px);
  z-index: 0;
}
@media (max-width: 900px) { .process::before { display: none; } }

/* Variant: horizontal numbered list (alt style) */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.process-list-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.process-list-item:last-child { border-bottom: 0; }
.process-list-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.process-list-num.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.process-list-item h4 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}
.process-list-item p { color: var(--text-muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
@media (max-width: 700px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.review-stars svg { width: 20px; height: 20px; fill: #FACC15; }
.review-card blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}
.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.55rem 1.2rem;
  min-height: 44px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.gallery-filter:hover { border-color: var(--accent); color: var(--accent); }
.gallery-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  cursor: pointer;
  background: var(--primary);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,9,0.85) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption h4 { color: #fff; margin: 0 0 0.15rem; font-size: 1rem; }
.gallery-caption span { font-size: 0.85rem; opacity: 0.85; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.area-list li:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.area-list svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.section-dark .area-list li {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-dark);
  color: #fff;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1rem; }
/* fieldset used for chip-group label association — reset browser defaults */
fieldset.form-group {
  border: none;
  padding: 0;
  margin: 0 0 1rem;
  min-width: 0;
}
fieldset.form-group legend {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0;
  margin-bottom: 0.4rem;
  /* float trick makes legend flow like a block heading */
  float: left;
  width: 100%;
}
fieldset.form-group legend + * { clear: both; }
fieldset.form-group legend .req { color: var(--accent); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.12);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Service chips selector (Precise pattern) */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.chip {
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-secure svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EA580C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER  (mid-page + final)
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(105deg, rgba(12,10,9,0.88) 0%, rgba(26,32,53,0.80) 100%),
    url('assets/davidson-drainage-pipes.jpg') center/cover;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-banner p {
  color: var(--text-on-dark-2);
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}
.cta-banner .hero-buttons { justify-content: center; }

/* Tel highlight inside dark sections */
.tel-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
}
.tel-big:hover { color: #fff; }
.tel-big svg { width: 28px; height: 28px; }

/* ============================================================
   CONTACT — info cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  align-items: flex-start;
  transition: all 0.25s var(--ease);
}
.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.info-card-detail {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.15rem;
}
.info-card-detail a { color: var(--text); }
.info-card-detail a:hover { color: var(--accent); }
.info-card-sub { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.form-card {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 0.5rem; }
.form-card .form-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Hours card */
.hours-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hours-list { list-style: none; padding: 0; margin: 1rem 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border: 0; }
.hours-list .day { font-weight: 700; }
.hours-callout {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CALLBACK STICKY BUTTON  (bottom-right floating)
   ============================================================ */
.callback-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(3, 105, 161, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s var(--ease);
}
.callback-fab:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(3, 105, 161, 0.5);
}
.callback-fab svg { width: 20px; height: 20px; }
@media (max-width: 980px) {
  /* Sticky bottom bar handles mobile CTAs — hide the floating button */
  .callback-fab { display: none; }
}

/* Modal (callback request) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-alt);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg { width: 18px; height: 18px; }
.modal h3 { margin-bottom: 0.5rem; }
.modal .form-intro { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-2);
  color: var(--text-on-dark-2);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a {
  color: var(--text-on-dark-2);
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover { color: var(--accent); }
.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  display: block;
}
.footer-logo img,
.footer-logo .nav-logo-img {
  height: 90px;
  width: 90px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 0;
  object-fit: contain;
  transform: none;
}
.footer-blurb { margin: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  margin-left: 1.25rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
/* Gradient section divider — steel blue to orange */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--cta));
  border: none;
  margin: 0;
}
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.hide-mobile { }
.show-mobile { display: none; }
@media (max-width: 700px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ============================================================
   SCROLL FADE-UP ANIMATION
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.28); }
.lightbox-close svg { width: 22px; height: 22px; }

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 0.65rem 1rem;
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  z-index: 800;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(12, 10, 9, 0.3);
}
@media (max-width: 980px) {
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: 80px; }
}
.mobile-bottom-bar .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.93rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   EMERGENCY STRIP
   ============================================================ */
.emergency-strip {
  background: #DC2626;
  color: #fff;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  letter-spacing: 0.01em;
}
.emergency-strip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.emergency-strip a:hover { opacity: 0.85; }

/* ============================================================
   WHY CHOOSE US — 3-COLUMN CARD GRID
   ============================================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 700px) {
  .why-us-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.why-us-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.why-us-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-us-card-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-us-card-icon svg { width: 26px; height: 26px; color: var(--accent); }
.why-us-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.why-us-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   GUARANTEE BLOCK
   ============================================================ */
.guarantee-block {
  background: linear-gradient(135deg, var(--primary) 0%, #0F1629 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 3rem 0;
  color: var(--text-on-dark);
}
@media (max-width: 700px) {
  .guarantee-block { flex-direction: column; text-align: center; padding: 2rem 1.5rem; gap: 1.5rem; }
}
.guarantee-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(3, 105, 161, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg { width: 36px; height: 36px; color: var(--accent-hover); }
.guarantee-block h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.4rem; }
.guarantee-block p { color: var(--text-on-dark-2); margin: 0; font-size: 1rem; line-height: 1.65; }

/* ============================================================
   TRUST BADGE (replaces fake review badge)
   ============================================================ */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 99px;
  padding: 0.45rem 1rem 0.45rem 0.6rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.trust-badge-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge-icon svg { width: 15px; height: 15px; color: #fff; }
.trust-badge-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ============================================================
   MOBILE — HIDE HERO TEXTAREA
   ============================================================ */
@media (max-width: 768px) {
  .hero-card .form-group:has(#hero-details) { display: none; }
}

/* ============================================================
   SUBURB PILL TAGS
   ============================================================ */
.suburb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.suburb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  padding: 0.35rem 0.85rem 0.35rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark-2);
}
.suburb-pill svg {
  width: 12px;
  height: 12px;
  color: var(--accent-hover);
  flex-shrink: 0;
}

/* ============================================================
   STATS STAGGER — transition-delay applied inline per .stat
   ============================================================ */
.stats-section .stat.fade-up.visible {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ============================================================
   SERVICE CARDS — DARK SECTION VARIANT (Option B — left accent border)
   ============================================================ */
.section-dark .service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.5rem 1.4rem;
  box-shadow: none;
  transform: none;
}
.section-dark .service-card:hover {
  background: rgba(3, 105, 161, 0.08);
  border-color: rgba(56, 189, 248, 0.18);
  border-left-color: #38bdf8;
  transform: translateX(4px);
  box-shadow: none;
}
.section-dark .service-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-dark .service-icon {
  width: 36px;
  height: 36px;
  background: rgba(3, 105, 161, 0.2);
  border-radius: 8px;
  flex-shrink: 0;
  margin-bottom: 0;
}
.section-dark .service-card:hover .service-icon {
  background: rgba(3, 105, 161, 0.35);
  transform: none;
}
.section-dark .service-icon svg {
  width: 18px;
  height: 18px;
  stroke: #7dd3fc;
}
.section-dark .service-card h3 {
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.section-dark .service-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.83rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.section-dark .services-photo-strip-img {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
/* Callout strip sitting inside a dark section */
.section-dark .callout-strip {
  background: rgba(3, 105, 161, 0.18);
  border-color: rgba(3, 105, 161, 0.55);
}
.section-dark .callout-strip strong { color: #fff; }
.section-dark .callout-strip span { color: rgba(255, 255, 255, 0.72); }
.section-dark .callout-strip-icon { background: var(--accent); }
.section-dark .callout-strip-icon svg { stroke: #fff; }

/* ===== TEAM GRID ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.team-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
/* Portrait placeholder — used until real headshots of Hugh & Benjy arrive */
.team-card-photo-pending {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--accent-soft);
  border-bottom: 2px dashed rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 1rem;
}
.team-card-photo-pending svg { width: 46px; height: 46px; color: var(--accent); opacity: 0.7; }
.team-card-photo-pending span { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-muted); }
.team-card-body {
  padding: 1.5rem;
}
.team-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.team-card-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
}
.team-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CALLOUT STRIP ===== */
.callout-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
}
.callout-strip-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.callout-strip-icon svg {
  width: 24px;
  height: 24px;
}
.callout-strip-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.callout-strip-text strong {
  font-size: 1.05rem;
  color: var(--primary);
}
.callout-strip-text span {
  font-size: 0.92rem;
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .callout-strip {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
}

/* ===== LEGAL PAGES (privacy, terms) ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.legal-content p,
.legal-content ul,
.legal-content address {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 1.5rem;
}
.legal-content ul li {
  margin-bottom: 0.4rem;
}
.legal-content address {
  font-style: normal;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ============================================================
   EMERGENCY CALL BAND (home — between hero content and stats)
   ============================================================ */
.emergency-band {
  background: linear-gradient(100deg, #b91c1c 0%, #dc2626 100%);
  color: #fff;
  padding: 1.5rem 0;
}
.emergency-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.emergency-band-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.emergency-band-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emergency-band-icon svg { width: 26px; height: 26px; stroke: #fff; }
.emergency-band h2 {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0;
}
.emergency-band p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  margin: 0.15rem 0 0;
}
.emergency-band-btn {
  background: #fff;
  color: #b91c1c;
  font-weight: 700;
  flex-shrink: 0;
  animation: call-pulse-white 2.4s ease-out infinite;
}
.emergency-band-btn:hover { background: #fff5f5; color: #991b1b; }
@media (max-width: 720px) {
  .emergency-band .container { flex-direction: column; align-items: flex-start; }
  .emergency-band-btn { width: 100%; }
}

/* ============================================================
   FORM — optional details disclosure + optional label
   ============================================================ */
.form-optional {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--text-muted);
}
.form-more {
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.form-more > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
}
.form-more > summary::-webkit-details-marker { display: none; }
.form-more > summary::before {
  content: '+';
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 700;
}
.form-more[open] > summary::before { content: '\2212'; }
.form-more[open] > summary { border-bottom: 1px solid var(--border); margin-bottom: 0.5rem; }
.form-more .form-row,
.form-more .form-group { padding-left: 1rem; padding-right: 1rem; }
.form-more .form-row:last-of-type .form-group { margin-bottom: 1rem; }
