/* ============================================================
   Lamesa Water Experts — dark local-service theme
   Inspired by high-converting SAB layouts (dark + orange CTAs)
   ============================================================ */

:root {
  --bg: #0b0e11;
  --bg-elevated: #12161c;
  --bg-card: #161b22;
  --bg-card-hover: #1c222b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #9aa4b2;
  --muted-2: #6b7585;
  --orange: #ea580c;
  --orange-hot: #f97316;
  --orange-dark: #c2410c;
  --teal: #2dd4bf;
  --teal-dim: rgba(45, 212, 191, 0.15);
  --success: #22c55e;
  --radius: 8px;
  --radius-pill: 999px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --header-h: 72px;
  --mobile-bar-h: 64px;
  --transition: 0.22s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--muted);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: 0;
}

body.has-mobile-bar {
  padding-bottom: var(--mobile-bar-h);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

a { color: var(--orange-hot); transition: color var(--transition); }
a:hover { color: #fdba74; }

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--orange);
  color: var(--text);
  padding: 0.75rem 1.25rem;
  z-index: 10000;
  text-decoration: none;
  font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Buttons ---------- */
.btn-call {
  background: var(--orange);
  color: var(--text);
  border: none;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-call:hover, .btn-call:focus {
  background: var(--orange-hot);
  color: var(--text);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
}
.btn-call:active { transform: scale(0.98); }

.btn-help,
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-help:hover, .btn-help:focus,
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--text);
}

.btn-help-dark,
.btn-outline-navy {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition);
}
.btn-help-dark:hover, .btn-help-dark:focus,
.btn-outline-navy:hover, .btn-outline-navy:focus {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--text);
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-hot);
  text-decoration: none;
  margin-top: 1.25rem;
}
.text-link-arrow:hover { color: #fdba74; }
.text-link-arrow i { transition: transform var(--transition); }
.text-link-arrow:hover i { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0.85rem 0;
}
.site-header.is-sticky,
body.inner-page .site-header {
  background: rgba(11, 14, 17, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 0.55rem 0;
  backdrop-filter: blur(10px);
}

.site-header .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--text) !important;
  text-decoration: none;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.site-header .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 2px;
}
.site-header .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.85rem !important;
  transition: color var(--transition);
}
.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active {
  color: var(--text) !important;
}

.header-call {
  background: var(--orange);
  color: var(--text) !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.6rem 1.1rem !important;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.header-call:hover { background: var(--orange-hot); color: var(--text) !important; }

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.55rem;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.35); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mobile-header-call {
  display: none;
  background: var(--orange);
  color: var(--text);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-right: 0.5rem;
}
.mobile-header-call:hover { color: var(--text); background: var(--orange-hot); }

@media (max-width: 991.98px) {
  .mobile-header-call { display: inline-flex; align-items: center; gap: 0.25rem; }
  .site-header .navbar-collapse {
    background: var(--bg-elevated);
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 4rem;
  background: var(--bg);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 14, 17, 0.94) 0%, rgba(11, 14, 17, 0.72) 45%, rgba(11, 14, 17, 0.55) 100%),
    url("../images/hero-flood.jpg") center / cover no-repeat;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }

.eyebrow,
.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--orange-hot);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: none;
  border: none;
  padding: 0;
}
.emergency-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.5); }
  50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(234, 88, 12, 0); }
}

.hero h1 {
  color: var(--text);
  font-size: clamp(2.35rem, 5.2vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  max-width: 14ch;
}
.hero-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.hero-phone-note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
.hero-phone-note a {
  color: var(--orange-hot);
  font-weight: 600;
  text-decoration: none;
}
.hero-phone-note a:hover { text-decoration: underline; }

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.hero-visual-indicator {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 14, 17, 0.88);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-left: 3px solid var(--orange);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 2.5rem;
  }
  .hero h1 { max-width: none; }
  .hero-visual { margin-top: 2rem; }
  .hero-visual img { height: 240px; }
  .hero-ctas .btn-call,
  .hero-ctas .btn-help {
    width: 100%;
  }
  .hero-ctas .btn-call {
    font-size: 1.1rem;
    padding: 1.05rem 1.5rem;
  }
}

/* Proof band under hero */
.proof-band {
  padding: 0 0 1rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 3;
}
.proof-band img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-label,
.eyebrow-inline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.65rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  margin-bottom: 1rem;
  color: var(--text);
}
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.bg-soft,
.local-section,
.contact-section {
  background: var(--bg-elevated);
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ---------- Check / problem lists ---------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.55rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.02rem;
  font-weight: 500;
}
.check-list li i {
  color: var(--orange);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ---------- Expect cards (friend-site pattern) ---------- */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.expect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  transition: background var(--transition), border-color var(--transition);
}
.expect-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}
.expect-card .label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.5rem;
}
.expect-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}
.expect-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 991.98px) {
  .expect-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .expect-grid { grid-template-columns: 1fr; }
}

/* ---------- Service / keyword pills ---------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.tag-pill:hover {
  border-color: var(--orange);
  color: var(--text);
  background: rgba(234, 88, 12, 0.12);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: transparent;
  margin-top: 0;
  position: relative;
  z-index: 3;
  padding: 0 0 1rem;
}
.trust-inner {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  padding: 1.35rem 1.1rem;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 1.45rem;
  color: var(--teal);
  margin-bottom: 0.55rem;
  display: block;
}
.trust-item span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
  line-height: 1.35;
}

@media (max-width: 767.98px) {
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ---------- Services ---------- */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(234, 88, 12, 0.45);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-dim);
  color: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1.15rem;
}
.service-card .svc-cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-hot);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card .svc-cta:hover { color: #fdba74; }

/* ---------- Emergency ---------- */
.emergency-section {
  background:
    linear-gradient(120deg, rgba(11, 14, 17, 0.92) 0%, rgba(30, 20, 12, 0.88) 100%),
    url("https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&w=1600&q=70") center / cover;
  color: var(--text);
  padding: 5rem 0;
}
.emergency-section h2 { color: var(--text); }
.emergency-section p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; max-width: 36rem; }
.emergency-section .need-help {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange-hot);
  margin: 1.5rem 0 1rem;
}

/* ---------- Process (vertical friend-style + desktop track) ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(234, 88, 12, 0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.35rem;
}
.process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--orange);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px var(--bg);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.9rem; color: var(--muted); margin: 0; }

.process-vertical {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-vertical .pv-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}
.process-vertical .pv-step:last-child { border-bottom: none; }
.process-vertical .pv-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(234, 88, 12, 0.15);
  color: var(--orange-hot);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.process-vertical h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.process-vertical p { margin: 0; font-size: 0.95rem; }

@media (max-width: 991.98px) {
  .process-track {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .process-track::before { display: none; }
  .process-step { text-align: left; display: grid; grid-template-columns: 56px 1fr; gap: 0 1rem; align-items: start; }
  .process-num { margin: 0; grid-row: 1 / 3; }
}

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.why-item {
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}
.why-item i {
  color: var(--teal);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  display: block;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.why-item p { font-size: 0.92rem; color: var(--muted); margin: 0; }

@media (max-width: 991.98px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------- Local ---------- */
.local-content p { margin-bottom: 1.1rem; }
.local-aside {
  background: var(--bg-card);
  color: var(--text);
  padding: 2rem;
  border-radius: var(--radius);
  height: 100%;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
}
.local-aside h3 {
  color: var(--text);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.local-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.local-aside li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.local-aside li i { color: var(--orange); margin-top: 0.15rem; }

/* ---------- Service area ---------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.area-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-pill);
}
.area-pill.primary {
  background: var(--orange);
  color: var(--text);
  border-color: var(--orange);
}
.area-pill.placeholder {
  border-style: dashed;
  color: var(--muted-2);
  font-weight: 500;
}

/* ---------- Before / After ---------- */
.ba-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.ba-images figure { margin: 0; position: relative; }
.ba-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  opacity: 0.92;
}
.ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  background: rgba(11, 14, 17, 0.9);
  color: var(--text);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}
.ba-caption {
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.8rem;
  margin: 0;
}
.placeholder-notice {
  display: inline-block;
  background: rgba(234, 88, 12, 0.12);
  color: #fdba74;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  height: 100%;
  border-radius: var(--radius);
}
.review-stars {
  color: var(--orange-hot);
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  font-size: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  min-height: 5.5rem;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}
.review-name { font-weight: 600; color: var(--text); font-size: 0.95rem; margin: 0; }
.review-loc { font-size: 0.8rem; color: var(--muted-2); margin: 0; }

/* ---------- Insurance ---------- */
.insurance-section {
  background: var(--bg-elevated);
  color: var(--text);
}
.insurance-section h2 { color: var(--text); }
.insurance-section .section-lead { color: var(--muted); }
.doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.85rem;
  margin: 2rem 0;
}
.doc-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.1rem;
  border-radius: var(--radius);
  text-align: center;
}
.doc-item i {
  font-size: 1.4rem;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.doc-item span { font-size: 0.88rem; font-weight: 500; color: rgba(255, 255, 255, 0.85); }

/* ---------- FAQ (orange accent bar) ---------- */
.accordion-item {
  border: 1px solid var(--border) !important;
  margin-bottom: 0.65rem;
  border-radius: var(--radius) !important;
  overflow: hidden;
  background: var(--bg-card);
}
.accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text) !important;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  box-shadow: none !important;
  background: var(--bg-card) !important;
  border-left: 3px solid transparent;
}
.accordion-button:not(.collapsed) {
  color: var(--text) !important;
  background: var(--bg-card-hover) !important;
  border-left-color: var(--orange);
}
.accordion-button::after {
  filter: invert(1) brightness(1.8);
}
.accordion-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-left: 3px solid var(--orange);
}

/* ---------- Contact form ---------- */
.form-panel {
  background: var(--bg-card);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 2.25rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  position: relative;
}
.form-panel .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.35rem;
}
.form-panel .form-control,
.form-panel .form-select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
}
.form-panel .form-control::placeholder { color: var(--muted-2); }
.form-panel .form-select option { background: var(--bg-elevated); color: var(--text); }
.form-panel .form-control:focus,
.form-panel .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
  background: var(--bg);
  color: var(--text);
}
.form-panel .is-invalid { border-color: #ef4444; }
.form-error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 1rem;
}
.form-success.show { display: block; }
.form-success--pending {
  background: rgba(234, 88, 12, 0.12);
  border-color: rgba(234, 88, 12, 0.4);
  color: #fdba74;
}
.form-success a { color: inherit; font-weight: 700; }

/* Honeypot — visually hidden from users; leave in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.owner-editable {
  border-left: 3px solid rgba(234, 88, 12, 0.55);
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.owner-editable > .edit-note {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.5rem;
}
.legal-framework .edit-note {
  color: var(--orange-hot);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.legal-framework h2 {
  margin-top: 2rem;
}
.doc-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-align: center;
  font-size: 0.95rem;
}

.form-prefer-call {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.form-prefer-call a {
  font-weight: 700;
  color: var(--orange-hot);
  text-decoration: none;
}

.contact-aside h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.contact-detail i {
  width: 40px;
  height: 40px;
  background: rgba(234, 88, 12, 0.15);
  color: var(--orange-hot);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
}
.contact-detail span,
.contact-detail a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-detail a:hover { color: var(--orange-hot); }

/* ---------- Final closer CTA ---------- */
.closer-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--bg);
}
.closer-cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 0.85rem;
}
.closer-cta p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0 auto 1.75rem;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 3.25rem) 0 3.25rem;
  background:
    linear-gradient(105deg, rgba(11, 14, 17, 0.94) 0%, rgba(11, 14, 17, 0.78) 100%),
    url("../images/hero-flood.jpg") center / cover no-repeat;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}
.page-hero .page-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 0;
}

.home-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: border-color var(--transition), transform var(--transition);
}
.home-preview-card:hover {
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}
.home-preview-card h3 { font-size: 1.25rem; margin-bottom: 0.65rem; }
.home-preview-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.home-preview-card a {
  font-weight: 600;
  text-decoration: none;
  color: var(--orange-hot);
}

/* ---------- Related content (SEO internal links) ---------- */
.related-section {
  border-top: 1px solid var(--border);
}
.related-section .section-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0.5rem auto 0;
  font-size: 1.02rem;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.related-card:hover {
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateY(-2px);
}
.related-card .related-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-dim);
  color: var(--teal);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.related-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
  line-height: 1.35;
}
.related-card h3 a {
  color: var(--text);
  text-decoration: none;
}
.related-card h3 a:hover {
  color: var(--orange-hot);
}
.related-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.related-card .related-link {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--orange-hot);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.related-card .related-link:hover {
  color: var(--orange);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #07090c;
  color: var(--muted);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.site-footer h4 {
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--orange-hot); }
.site-footer a.btn-call,
.site-footer a.btn-call:hover,
.site-footer a.btn-call:focus {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}
.site-footer a.btn-call:hover,
.site-footer a.btn-call:focus {
  background: var(--orange-hot);
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.35);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-disclaimer {
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
  padding-top: 1.35rem;
}
.footer-disclaimer p {
  margin: 0;
  max-width: 52rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* ---------- Mobile CTA bar (always on for mobile — CSS only) ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #07090c;
  padding: 0.65rem 0.75rem;
  gap: 0.55rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.55);
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta-bar .m-call {
  background: var(--orange);
  color: var(--text);
}
.mobile-cta-bar .m-call:hover,
.mobile-cta-bar .m-call:focus {
  background: var(--orange-hot);
  color: var(--text);
}
.mobile-cta-bar .m-help {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.mobile-cta-bar .m-help:hover,
.mobile-cta-bar .m-help:focus {
  background: var(--bg-card-hover);
  color: var(--text);
}

/* Phones + tablets in portrait/narrow — sticky Call / Get Help on ALL pages */
@media (max-width: 991.98px) {
  .mobile-cta-bar {
    display: flex !important;
  }
  body {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }
}

@media (min-width: 992px) {
  .mobile-cta-bar {
    display: none !important;
  }
}

/* ---------- Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .emergency-badge .pulse-dot { animation: none; }
  .service-card:hover,
  .home-preview-card:hover { transform: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.text-emergency { color: var(--orange-hot); }

/* ---------- Location map ---------- */
.map-frame {
  width: 100%;
  height: min(480px, 70vh);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-meta {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.map-meta-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.map-meta-item strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.map-meta-item span,
.map-meta-item a {
  color: var(--muted);
  font-size: 0.95rem;
  text-decoration: none;
}
.map-meta-item a:hover { color: var(--orange-hot); }

/* ---------- Contact page extras ---------- */
.contact-note-box {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.35);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
}
.contact-note-box strong {
  display: block;
  color: var(--orange-hot);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.contact-note-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-values {
  background: #e8ecf1;
}
.contact-values .section-title { color: #0b0e11; }
.contact-values .expect-card {
  background: #12161c;
  border-color: rgba(255, 255, 255, 0.08);
}
.contact-values .expect-card h3 { color: #fff; }
.contact-values .expect-card p { color: #9aa4b2; }

.area-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 1.5rem 0 0.5rem;
}
.area-col-title {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.85rem;
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}
@media (max-width: 767.98px) {
  .area-columns { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ---------- Service area city grid (Guardians-style) ---------- */
.service-area-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 2rem 0 1.5rem;
}
.sa-item {
  padding: 1.15rem 0.85rem 1.25rem;
  border-bottom: 1px solid rgba(234, 88, 12, 0.45);
}
/* Middle row uses teal rule (items 6—10) */
.sa-item:nth-child(n+6):nth-child(-n+10) {
  border-bottom-color: rgba(45, 212, 191, 0.45);
}
.sa-item:nth-child(n+11) {
  border-bottom-color: rgba(234, 88, 12, 0.45);
}
.sa-city {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}
.sa-county {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.sa-county.accent-orange { color: var(--orange-hot); }
.sa-county.accent-teal { color: var(--teal); }
.sa-footnote {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 42rem;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.sa-footnote a {
  color: var(--orange-hot);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 991.98px) {
  .sa-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .sa-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-item { padding: 1rem 0.5rem 1.1rem; }
  .sa-city { font-size: 1.05rem; }
}
