/* ============================================================
   WATER RESTORATION PROS — MAIN STYLESHEET
   Brand: Forest #1D4731 + Crimson #7A1F2E
   Fonts: Poppins (headings) · Jost (body)
   Sections: bg-white #fff / bg-light #f7f7f7 only
   Dark bg: hero, trust-bar, cta-section only
   ============================================================ */

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

/* ============================================================
   GLOBAL DARK-BACKGROUND RULES — defined once, never inline
   ============================================================ */
.hero strong,
.page-hero strong,
.trust-bar strong,
.cta-section strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.hero a:not(.btn),
.page-hero a:not(.btn),
.cta-section a:not(.btn) {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero a:not(.btn):hover,
.page-hero a:not(.btn):hover,
.cta-section a:not(.btn):hover { color: #fff; }

/* --- Design Tokens --- */
:root {
  --brand:       #1D4731;
  --brand-dark:  #152F22;
  --brand-mid:   #264F39;
  --brand-light: #E8F0EB;
  --accent:      #7A1F2E;
  --accent-dark: #621829;
  --accent-light:#F3E6E8;
  --dark-cta:    #1A1814;
  --white:       #ffffff;
  --light:       #F7F7F7;
  --text:        #1C1C1C;
  --text-muted:  #5A5A5A;
  --border:      #E4E4E4;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 10px 48px rgba(0,0,0,0.13);
  --radius:      8px;
  --radius-lg:   14px;
  --max-w:       1180px;
  --transition:  0.22s ease;
}

/* --- Base --- */
html { scroll-behavior: smooth; font-size: 16px; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Jost', 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
ul, ol { padding-left: 1.4em; }
ul.unstyled, ol.unstyled { list-style: none; padding: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }

/* --- Layout --- */
.container { max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.bg-white { background: var(--white); }
.bg-light  { background: var(--light); }

/* --- Eyebrow --- */
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.eyebrow--muted { color: var(--text-muted); }

/* --- Section Headers --- */
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center p { max-width: 600px; margin: 10px auto 0; color: var(--text-muted); }
.section-header p { margin-top: 10px; color: var(--text-muted); max-width: 680px; }
.section-header h2 { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn--brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(29,71,49,0.35);
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(122,31,46,0.35);
}

.btn--outline-brand {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--outline-brand:hover { background: var(--brand); color: #fff; }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }

.btn--white {
  background: #fff;
  color: var(--brand);
  border-color: #fff;
  font-weight: 700;
}
.btn--white:hover { background: #f0efec; color: var(--brand-dark); }

.btn--lg  { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm  { padding: 9px 18px; font-size: 0.875rem; }
.btn--xl  { padding: 18px 44px; font-size: 1.15rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  padding: 9px 0;
  font-family: 'Jost', sans-serif;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.88);
}
.topbar__badge svg { color: #6ee7a0; flex-shrink: 0; }
.topbar__sep { color: rgba(255,255,255,0.28); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__hours { color: rgba(255,255,255,0.65); }
.topbar__phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 4px;
  transition: background var(--transition);
  text-decoration: none;
}
.topbar__phone:hover { background: var(--accent-dark); color: #fff; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
body { padding-top: 65px; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 1.5rem;
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo-icon { flex-shrink: 0; }
.nav__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.2;
}
.nav__logo-text strong {
  display: block;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brand);
}
.nav__logo:hover .nav__logo-text,
.nav__logo:hover .nav__logo-text strong { color: var(--accent); }

/* Menu Links */
.nav__links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__links > li { position: relative; }
.nav__links > li > a,
.nav__dropdown-toggle {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  text-decoration: none;
}
.nav__links > li > a:hover,
.nav__dropdown-toggle:hover { color: var(--brand); background: var(--brand-light); }
.nav__links > li > a.active { color: var(--brand); font-weight: 700; }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  z-index: 300;
  list-style: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--border);
}
.dropdown::after {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.dropdown li a:hover { background: var(--brand-light); color: var(--brand); }

/* Nav CTA */
.nav__cta { flex-shrink: 0; }
.nav__mobile-cta { display: none; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--brand);
  background-image: url('/assets/images/water-damage-restoration-everett.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(21,47,34,0.65) 0%,
    rgba(21,47,34,0.50) 55%,
    rgba(21,47,34,0.25) 100%
  );
  z-index: 1;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,31,46,0.2);
  color: #fff;
  border: 1px solid rgba(122,31,46,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.35); }
}
.hero__content h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero__lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 56ch;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero__trust-item svg { color: #6ee7a0; flex-shrink: 0; }

/* Hero Call Box */
.hero__callbox {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}
.hero__callbox-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 4px;
}
.hero__callbox-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.hero__callbox-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  margin-bottom: 14px;
  transition: background var(--transition);
}
.hero__callbox-phone:hover { background: var(--brand-dark); color: #fff; }
.hero__callbox-divider {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  position: relative;
}
.hero__callbox-divider::before,
.hero__callbox-divider::after {
  content: '';
  position: absolute;
  top: 50%; width: 38%;
  height: 1px;
  background: var(--border);
}
.hero__callbox-divider::before { left: 0; }
.hero__callbox-divider::after { right: 0; }

/* Callbox form */
.callbox-form { display: flex; flex-direction: column; gap: 10px; }
.callbox-form input,
.callbox-form textarea,
.callbox-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
}
.callbox-form input:focus,
.callbox-form textarea:focus,
.callbox-form select:focus { outline: none; border-color: var(--brand); }
.callbox-form textarea { resize: vertical; min-height: 70px; }
.callbox-form .btn { width: 100%; justify-content: center; }

.hero__callbox-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.callbox-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.callbox-badge svg { color: var(--brand); flex-shrink: 0; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--brand);
  padding: 28px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}
.trust-stat__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.trust-stat__body {}
.trust-stat__num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.trust-stat__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
  margin-top: 2px;
}
.trust-bar__divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-light);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.why-us__bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-us__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.why-us__bullets li::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.why-us__bullets li strong { color: var(--text); font-weight: 600; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services-grid--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .services-grid--3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid--3col { grid-template-columns: 1fr; } }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card__image {
  height: 160px;
  background: var(--brand-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.04); }
.service-card__body { padding: 18px 16px; }
.service-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card__body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 10px;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
}
.service-card__link:hover { color: var(--accent); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 52px;
  position: relative;
}
.process-steps--6 { grid-template-columns: repeat(6, 1fr); }
@media (max-width: 960px) {
  .process-steps,
  .process-steps--6 { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 600px) {
  .process-steps,
  .process-steps--6 { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 400px) {
  .process-steps,
  .process-steps--6 { grid-template-columns: 1fr; }
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.areas-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.areas-list li svg { color: var(--brand); flex-shrink: 0; }
.areas-callout {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
}
.areas-callout h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.areas-callout p { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.areas-callout .phone-display {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin: 16px 0 14px;
}
.areas-callout .phone-display:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   CERTIFICATIONS
   ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--brand);
}
.cert-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.cert-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testimonial-card .stars { color: #B8860B; font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  padding: 0;
  border: none;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-card__loc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.faq-jump { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--brand-light); color: var(--brand); font-size: 0.82rem; font-weight: 600; font-family: 'Poppins', sans-serif; text-decoration: none; border: 1px solid transparent; transition: background var(--transition), color var(--transition); }
.faq-jump:hover { background: var(--brand); color: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

/* BEM double-underscore variant (homepage) */
.faq__item,
.faq-item { border-bottom: 1px solid var(--border); }
.faq__item:first-child,
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq__question,
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq__question:hover,
.faq-question:hover { color: var(--brand); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

/* Answer panels */
.faq__answer,
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.open .faq__answer,
.faq-item.open .faq-answer { max-height: 600px; }

.faq__answer-inner,
.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin: 0;
}

/* Plus/minus indicator for service page FAQ buttons */
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.22s ease;
  line-height: 1;
}
.faq-item.open .faq-question::after { content: '×'; }

/* FAQ Sidebar */
.faq-sidebar__box {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: #fff;
  margin-bottom: 24px;
}
.faq-sidebar__box h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.faq-sidebar__box p { color: rgba(255,255,255,0.72); font-size: 0.88rem; margin-bottom: 16px; }
.faq-sidebar__phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
}
.faq-sidebar__phone:hover { color: rgba(255,255,255,0.85); }
.faq-sidebar__box .btn { width: 100%; justify-content: center; }

/* ============================================================
   CTA SECTION (dark)
   ============================================================ */
.cta-section {
  background: var(--dark-cta);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section > .container > p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
.cta-phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.cta-phone:hover { color: rgba(255,255,255,0.85); }
.cta-section__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.cta-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.cta-badge svg { color: #6ee7a0; }

/* ============================================================
   SECTION CTAs
   ============================================================ */

/* Standalone CTA container wrapper (service pages) */
.container > .cta-emergency,
.container > .cta-risk,
.container > .cta-insurance,
.container > .cta-process,
.container > .cta-area,
.container > .cta-faq {
  margin-top: 0;
}
.container:has(> .cta-emergency),
.container:has(> .cta-risk),
.container:has(> .cta-insurance),
.container:has(> .cta-process),
.container:has(> .cta-area),
.container:has(> .cta-faq) {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Emergency — accent red banner */
.cta-emergency {
  margin-top: 32px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-emergency__left { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 220px; }
.cta-emergency__dot { width: 12px; height: 12px; border-radius: 50%; background: #fff; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); animation: pulse 1.5s infinite; }
.cta-emergency__title { color: #fff; font-weight: 700; font-size: 1rem; margin: 0; font-family: 'Poppins', sans-serif; }
.cta-emergency__sub { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 2px 0 0; }
.cta-emergency__btn { background: #fff; color: var(--accent); font-weight: 700; font-family: 'Poppins', sans-serif; padding: 12px 24px; border-radius: var(--radius); text-decoration: none; font-size: 0.95rem; white-space: nowrap; flex-shrink: 0; }
@media (max-width: 600px) {
  .cta-emergency { flex-direction: column; align-items: flex-start; }
  .cta-emergency__btn { width: 100%; text-align: center; }
}

/* Risk — dark brand banner with two buttons */
.cta-risk {
  margin-top: 32px;
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-risk__text { flex: 1; min-width: 200px; }
.cta-risk__eyebrow { color: rgba(255,255,255,0.7); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 4px; font-family: 'Poppins', sans-serif; display: block; }
.cta-risk__title { color: #fff; font-weight: 700; font-size: 1.05rem; margin: 0; font-family: 'Poppins', sans-serif; }
.cta-risk__sub { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 4px 0 0; }
.cta-risk__btns { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cta-risk__secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.3); padding: 10px 20px; border-radius: var(--radius); text-decoration: none; font-size: 0.88rem; font-weight: 600; }
@media (max-width: 700px) {
  .cta-risk { flex-direction: column; align-items: flex-start; }
  .cta-risk__btns { width: 100%; }
  .cta-risk__btns .btn, .cta-risk__secondary { flex: 1; text-align: center; justify-content: center; }
}

/* Insurance — bordered outline card */
.cta-insurance {
  margin-top: 20px;
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-insurance__text { flex: 1; min-width: 180px; }
.cta-insurance__title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--text); margin: 0 0 3px; }
.cta-insurance__sub { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
@media (max-width: 600px) {
  .cta-insurance { flex-direction: column; align-items: flex-start; }
  .cta-insurance .btn { width: 100%; justify-content: center; }
}

/* Process — near-black dark strip */
.cta-process {
  margin-top: 40px;
  background: var(--dark-cta);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-process__text { flex: 1; min-width: 200px; }
.cta-process__eyebrow { color: rgba(255,255,255,0.6); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 6px; font-family: 'Poppins', sans-serif; display: block; }
.cta-process__title { color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.1rem; margin: 0; }
.cta-process__sub { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 6px 0 0; }
.cta-process__btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 700px) {
  .cta-process { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .cta-process__btns { width: 100%; }
  .cta-process__btns .btn { flex: 1; text-align: center; justify-content: center; }
}

/* Service area — button + label inline */
.cta-area {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-area__label { display: flex; flex-direction: column; }
.cta-area__label span:first-child { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; }
.cta-area__label span:last-child { font-size: 0.9rem; font-weight: 700; color: var(--text); font-family: 'Poppins', sans-serif; }
@media (max-width: 500px) {
  .cta-area { flex-direction: column; align-items: flex-start; }
  .cta-area .btn { width: 100%; justify-content: center; }
}

/* FAQ — brand-light left-border box */
.cta-faq {
  margin-top: 24px;
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-faq__text { flex: 1; min-width: 180px; }
.cta-faq__title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--brand); margin: 0 0 2px; }
.cta-faq__sub { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
@media (max-width: 560px) {
  .cta-faq { flex-direction: column; align-items: flex-start; }
  .cta-faq .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-cta);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
  font-size: 0.9rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff !important;
  text-decoration: none;
  display: block;
  margin-bottom: 14px;
}
.footer__logo strong { font-weight: 800; color: #fff !important; }
.footer__brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: #fff; }
.footer__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__badges span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 4px;
}
.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul li a {
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer ul li a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.footer__bottom a { color: rgba(255,255,255,0.38); }

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
}
.float-call__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(29,71,49,0.45);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.float-call__btn:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,71,49,0.5);
}
.float-call__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-call__text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  margin-bottom: 2px;
}
.float-call__text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--brand);
  padding: 56px 0;
}
.page-hero--image {
  background-image: url('/assets/images/water-damage-restoration-everett.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 72px 0;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(21,47,34,0.82) 0%, rgba(21,47,34,0.65) 60%, rgba(21,47,34,0.45) 100%);
  z-index: 1;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 58ch; }
.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: #fff; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--brand); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { align-self: flex-start; }

.contact-info-box {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
}
.contact-info-box h3 { color: #fff; margin-bottom: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.contact-info-item svg { color: #6ee7a0; flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; color: #fff; margin-bottom: 2px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  background: var(--brand-light);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--brand);
}
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.value-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   INLINE CTA LINE
   ============================================================ */
.section-cta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--brand-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--brand);
}
.section-cta-line svg { color: var(--brand); flex-shrink: 0; }
.section-cta-line a { color: var(--brand); font-weight: 600; }

/* ============================================================
   BANNER IMAGE SUPPORT
   ============================================================ */
.hero {
  background-image: url('/assets/images/water-damage-restoration-everett.webp');
}

/* ============================================================
   HERO — FULL WIDTH (no call box, max content space)
   ============================================================ */
.hero__content-only {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 100px 0 90px;
}

/* Force all text inside hero white — beats global h1/p/strong rules */
.hero h1,
.hero h2,
.hero h3 {
  color: #fff !important;
  line-height: 1.15;
}
.hero .hero__content-only h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 22px;
}
.hero p,
.hero .hero__lead {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 66ch;
}
.hero strong { color: #fff !important; }
.hero .hero__badge { color: rgba(255,255,255,0.9); }

/* ============================================================
   SIMPLE SERVICE CARDS — icon + text, no images (service pages)
   ============================================================ */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.svc-card__icon {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--brand);
}
.svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.svc-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.svc-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 10px;
  text-decoration: none;
}
.svc-card a:hover { color: var(--accent); }
@media (max-width: 900px) { .svc-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-cards { grid-template-columns: 1fr; } }

/* Two-column text layout for service pages */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .two-col-text { grid-template-columns: 1fr; gap: 32px; } }

/* Timeline / hour-by-hour list */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--brand-light);
  margin-left: 10px;
  padding-left: 0;
}
.timeline__item {
  position: relative;
  padding: 0 0 28px 32px;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--brand);
}
.timeline__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.timeline__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PROCESS OVERVIEW STRIP
   ============================================================ */
.process-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.process-overview__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.process-overview__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-overview__label {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--brand);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.process-overview__arrow {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 16px;
  padding: 0 2px;
}

/* ============================================================
   PROCESS DETAIL BLOCKS
   ============================================================ */
.process-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  align-items: start;
}
.process-detail__badge {
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  position: sticky;
  top: 90px;
}
.process-detail__badge--alt {
  background: var(--accent);
}
.process-detail__content h2 {
  margin-top: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--heading);
}
.process-detail__tagline {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 600;
  margin-top: -8px;
  margin-bottom: 16px;
}
.process-detail__what {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 20px;
}
.process-detail__what h3 {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--heading);
}
.process-detail__what ul {
  margin: 0;
  padding-left: 18px;
}
.process-detail__what li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.55;
}
.process-detail__tip {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #78350f;
  margin-top: 20px;
  line-height: 1.55;
}
.process-detail__tools {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.process-detail__tool {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.process-detail__tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--brand-light, rgba(29,71,49,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand);
}
.process-detail__tool-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--heading);
  margin: 0 0 3px;
}
.process-detail__tool-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.process-detail__stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.process-detail__stat {
  flex: 1;
  min-width: 140px;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.process-detail__stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
}
.process-detail__stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.process-detail__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}
.process-detail__two-col h3 {
  font-size: 0.95rem;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--heading);
}
.process-detail__two-col ul {
  padding-left: 18px;
  margin: 0;
}
.process-detail__two-col li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-detail__badge {
    position: static;
    display: inline-block;
    width: auto;
  }
  .process-detail__two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-overview__arrow { display: none; }
  .process-overview { gap: 12px; justify-content: flex-start; }
}

/* ============================================================
   EXTERNAL LINKS — distinctive color + indicator
   ============================================================ */
a[target="_blank"] {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(122,31,46,0.35);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
a[target="_blank"]::after {
  content: ' ↗';
  font-size: 0.75em;
  font-weight: 400;
  opacity: 0.7;
}
a[target="_blank"]:hover {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
}
/* Don't apply to buttons */
.btn[target="_blank"]::after { content: none; }
.btn[target="_blank"] { text-decoration: none; color: inherit; font-weight: inherit; }

/* ============================================================
   PROJECTS CAROUSEL
   ============================================================ */
.projects-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 0 48px;
}
.projects-carousel {
  overflow: hidden;
  margin: 0 60px;
}
.projects-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.project-slide {
  flex: 0 0 calc((100% - 40px) / 3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.project-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--brand-light);
}
.project-slide__caption {
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}

/* Carousel nav buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 24px));
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.carousel-btn:hover { background: var(--brand); color: #fff; box-shadow: var(--shadow-md); }
.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.3);
}

/* Responsive carousel */
@media (max-width: 1023px) {
  .project-slide { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 639px) {
  .project-slide { flex: 0 0 100%; }
  .projects-carousel { margin: 0 48px; }
}

/* ============================================================
   EMERGENCY STEPS (section 2)
   ============================================================ */
.emergency-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.emergency-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.emergency-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.emergency-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   RISK GRID (section 3)
   ============================================================ */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.risk-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 4px solid var(--brand);
}
.risk-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}
.risk-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.risk-card a { color: var(--brand); font-weight: 600; }

/* ============================================================
   PROCESS DETAILED (section 5)
   ============================================================ */
.process-detailed {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.process-detail-card:last-child { border-bottom: none; }
.process-detail-card:hover { background: #fafaf9; }
.process-detail-card__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-detail-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.process-detail-card__body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

/* ============================================================
   CAUSES GRID (section 6)
   ============================================================ */
.causes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cause-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  border-top: 3px solid var(--brand);
}
.cause-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cause-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.3;
}
.cause-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin: 0;
}

/* ============================================================
   WAIT GRID (section 7)
   ============================================================ */
.wait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.wait-card {
  text-align: center;
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.wait-card__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.wait-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.wait-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   DAMAGE LAYOUT (section 8)
   ============================================================ */
.damage-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.damage-callout {
  background: var(--brand);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: #fff;
}
.damage-callout h3 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.damage-callout p { color: rgba(255,255,255,0.72); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0; }
.damage-callout .phone-display {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  margin: 18px 0 14px;
}
.damage-callout .phone-display:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   COST TABLE (section 9)
   ============================================================ */
.cost-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: start;
}
.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cost-table thead tr {
  background: var(--brand);
}
.cost-table thead th {
  padding: 13px 18px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.cost-table tbody tr { border-bottom: 1px solid var(--border); }
.cost-table tbody tr.alt { background: var(--light); }
.cost-table tbody tr.total { background: var(--brand-light); }
.cost-table tbody td {
  padding: 12px 18px;
  vertical-align: middle;
  color: var(--text-muted);
}
.cost-table tbody tr.total td { color: var(--brand); font-weight: 700; }
.cost-table tbody tr:hover { background: #f5f5f3; }
.cost-table tbody tr.total:hover { background: var(--brand-light); }
.insurance-box {
  background: var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--brand);
}
.insurance-box h3 { font-size: 1.05rem; margin-bottom: 14px; }
.insurance-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.72; margin: 0; }
.insurance-box a { color: var(--brand); font-weight: 600; }

/* ============================================================
   AFTER GRID (section 10)
   ============================================================ */
.after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.after-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--brand);
}
.after-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.after-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.after-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ============================================================
   SERVICE AREAS — TWO-COL WITH MAP (section 12)
   ============================================================ */
.areas-two-col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
.zip-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.zip-map__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--brand);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}
.zip-map__visual {
  padding: 8px;
  background: var(--white);
}
.zip-map__visual svg {
  width: 100%;
  height: auto;
  display: block;
}
.zip-map__zips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 16px 4px;
}
.zip-pill {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 10px;
  border-radius: 99px;
  border: 1px solid rgba(29,71,49,0.2);
}
.zip-map .btn { margin: 8px 14px 14px; width: calc(100% - 28px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 340px; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .emergency-steps { grid-template-columns: repeat(3, 1fr); }
  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-layout { grid-template-columns: 1fr; }
  .areas-two-col { grid-template-columns: 1fr 300px; gap: 36px; }
}

@media (max-width: 900px) {
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }

  /* Nav */
  .nav__links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: #fff; padding: 80px 24px 32px; z-index: 150; gap: 4px; justify-content: flex-start; overflow-y: auto; overflow-x: hidden; }
  .nav__links.open { display: flex; }
  .nav__links > li > a, .nav__dropdown-toggle { font-size: 1.05rem; padding: 12px 16px; width: 100%; text-align: center; justify-content: center; }
  .nav__toggle { display: flex; z-index: 160; }
  .nav__cta { display: none; }
  .nav__mobile-cta { display: block; width: 100%; margin-top: 16px; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: hidden; box-shadow: none; border: none; padding: 0 0 0 16px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, visibility 0.3s; }
  .has-dropdown.dropdown-open .dropdown { visibility: visible; max-height: 500px; }
  .dropdown::before, .dropdown::after { display: none; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .hero__callbox { max-width: 480px; }

  /* Layout grids */
  .why-us__split { grid-template-columns: 1fr; gap: 36px; }
  .why-us__image { min-height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-steps { grid-template-columns: repeat(2, 1fr); }
  .risk-grid { grid-template-columns: 1fr; }
  .process-detailed { margin-top: 32px; }
  .process-detail-card { padding: 20px 22px; gap: 16px; }
  .causes-grid { grid-template-columns: repeat(2, 1fr); }
  .wait-grid { grid-template-columns: 1fr; gap: 16px; }
  .damage-layout { grid-template-columns: 1fr; }
  .cost-layout { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; gap: 16px; }
  .areas-two-col { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .faq-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .areas-list { grid-template-columns: 1fr 1fr; }

  /* Trust bar */
  .trust-bar__divider { display: none; }
  .trust-bar__inner { justify-content: center; gap: 24px; }
  .trust-stat { min-width: 140px; justify-content: flex-start; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .topbar__left { display: none; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .emergency-steps { grid-template-columns: 1fr; }
  .causes-grid { grid-template-columns: 1fr; }
  .after-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .cta-phone { font-size: 1.6rem; }
  .hero__callbox { max-width: 100%; }
  .float-call__btn { padding: 12px 18px; }
  .float-call__icon { width: 36px; height: 36px; }
  .process-detail-card { flex-direction: column; }
  .topbar { display: none; }
}
