/* ============================================================
   FORT COLLINS EMERGENCY PROS — MAIN STYLESHEET
   Brand: Navy #0D2151 + Emergency Red #CC1122
   Fonts: Poppins (headings) · Jost (body)
   ============================================================ */

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

/* ============================================================
   GLOBAL DARK-BACKGROUND RULES
   Add any new dark-bg section here — never inline per-page.
   Covers: bold text, links, and general text on dark sections.
   ============================================================ */

/* Bold text on all dark backgrounds = white */
.hero strong,
.page-hero strong,
.trust-bar strong,
.avail-strip strong,
.fc-context strong,
.cta-section strong,
.areas-callout strong,
.fc-local strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

/* Links inside dark backgrounds = white (not navy/red) */
.hero a,
.page-hero a,
.avail-strip a,
.fc-context a,
.cta-section a,
.fc-local a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.hero a:hover,
.page-hero a:hover,
.avail-strip a:hover,
.fc-context a:hover,
.cta-section a:hover,
.fc-local a:hover {
  color: #fff;
}

/* Exception: explicit red CTA buttons stay red in dark sections */
.hero .btn--red,
.page-hero .btn--red,
.avail-strip .btn--red,
.cta-section .btn--red,
.fc-local .btn--red,
.areas-callout .btn--red {
  color: #fff;
  text-decoration: none;
}

/* --- Design Tokens --- */
:root {
  --navy:        #0D2151;
  --navy-mid:    #1A3A7C;
  --navy-light:  #EEF2F9;
  --red:         #CC1122;
  --red-dark:    #a30e1c;
  --red-light:   #FDECEA;
  --white:       #ffffff;
  --light:       #F7F7F7;
  --text:        #1C1C2E;
  --text-muted:  #5F6B7A;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(13,33,81,0.07);
  --shadow-md:   0 4px 24px rgba(13,33,81,0.11);
  --shadow-lg:   0 10px 48px rgba(13,33,81,0.14);
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --max-w:       1180px;
  --transition:  0.22s ease;
}

/* --- Base --- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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(--navy);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red); }

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.22;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 28px; font-weight: 600; }
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); }

/* --- Global overflow guard --- */
html, body { overflow-x: hidden; max-width: 100%; }

/* --- Layout Utilities --- */
.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--lg { padding: 100px 0; }
.bg-white { background: var(--white); }
.bg-light  { background: var(--light); }

/* --- 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); }
.btn:active { transform: translateY(0); }

.btn--red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(204,17,34,0.35);
}

.btn--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: #fff;
  box-shadow: var(--shadow-md);
}

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

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

.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; }

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header--left {
  text-align: left;
  margin-bottom: 40px;
}
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.82);
  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.9);
}
.topbar__badge svg { color: #4ade80; flex-shrink: 0; }
.topbar__sep { color: rgba(255,255,255,0.3); }
.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.topbar__hours { color: rgba(255,255,255,0.72); }
.topbar__phone {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  background: var(--red);
  padding: 4px 14px;
  border-radius: 4px;
  transition: background var(--transition);
}
.topbar__phone:hover {
  background: var(--red-dark);
  color: #fff;
}

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

/* 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: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}
.nav__logo-text strong {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.nav__logo:hover .nav__logo-text,
.nav__logo:hover .nav__logo-text strong {
  color: var(--red);
}

/* Menu Links */
.nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  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(--red);
  background: var(--red-light);
}
.nav__links > li > a.active {
  color: var(--red);
  font-weight: 700;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  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 li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.dropdown li a:hover {
  background: var(--red-light);
  color: var(--red);
}
/* Dropdown arrow connector */
.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;
}

/* 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(--navy);
  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 SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  background-image: url('/assets/images/emergency-plumber-fort-collins.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,33,81,0.92) 0%,
    rgba(13,33,81,0.82) 55%,
    rgba(13,33,81,0.45) 100%
  );
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,17,34,0.18);
  color: #fff;
  border: 1px solid rgba(204,17,34,0.5);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  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(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  max-width: 860px;
}
.hero h1 span { color: #F7B731; }
.hero__lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 820px;
}
.hero__list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  font-weight: 500;
}
.hero__list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  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;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
}
.hero__trust-item svg { color: #4ade80; flex-shrink: 0; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--red);
  padding: 20px 0;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.trust-bar__icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__icon svg { color: #fff; }
.trust-bar__label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  line-height: 1.2;
}
.trust-bar__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.82);
  display: block;
}
.trust-bar__divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* ============================================================
   EMERGENCY STEPS SECTION
   ============================================================ */
.emergency-steps {
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.step-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-card__num {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}
.emergency-note {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.emergency-note svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.emergency-note p { margin: 0; font-size: 0.95rem; color: var(--text); }
.emergency-note strong { color: var(--red); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--navy-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--red-light);
}
.service-card__icon svg { color: var(--navy); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--red); }
.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 18px;
  line-height: 1.65;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  margin-top: auto;
}
.service-card:hover .service-card__link { gap: 10px; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
/* Legacy — kept for any other page that uses the old two-col grid */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Homepage why-us: full-width header, then image|points split, then full-width FAQ */
.why-us__header {
  max-width: 100%;
  margin-bottom: 48px;
}
.why-us__header .eyebrow { margin-bottom: 10px; }
.why-us__header h2 { margin-bottom: 16px; }
.why-us__header > p { color: var(--text-muted); max-width: 860px; }
.why-us__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.why-us__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-light);
}
.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-us__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  background: var(--navy-light);
}
.why-us__image-placeholder svg { color: var(--navy); opacity: 0.3; }

/* ============================================================
   WHY-US POINTS — reusable icon+text list for inner page splits
   Global rule: use .why-us__points / .why-us__point on any page
   that uses the full-width header → split → full-width FAQ pattern
   ============================================================ */
.why-us__points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.why-us__point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-us__point-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-top: 2px;
}
.why-us__point strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-us__point p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

.why-us__content .eyebrow { margin-bottom: 10px; }
.why-us__content h2 { margin-bottom: 16px; }
.why-us__content > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 32px;
}
.differentiators {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-item__icon {
  width: 46px;
  height: 46px;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.diff-item__icon svg { color: var(--red); }
.diff-item__text h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.diff-item__text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Fort Collins context box */
.fc-context {
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 8px;
}
.fc-context h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-context p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.78);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  padding: 0 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: background var(--transition), color var(--transition);
}
.process-step:hover .process-step__num {
  background: var(--navy);
  color: #fff;
}
.process-step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   AREAS SECTION
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.areas-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--light);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
}
.areas-list li svg { color: var(--red); flex-shrink: 0; }
.areas-callout {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  color: #fff;
  text-align: center;
}
.areas-callout h3 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.areas-callout p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
}
.areas-callout .phone-display {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #F7B731;
  margin-bottom: 20px;
  text-decoration: none;
  transition: color var(--transition);
}
.areas-callout .phone-display:hover { color: #ffd04a; }

/* ============================================================
   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-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--navy-light);
  font-family: Georgia, serif;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars span { color: #F7B731; font-size: 1.1rem; }
.testimonial-card blockquote {
  font-size: 0.96rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  border: none;
  padding: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  display: block;
}
.testimonial-card__loc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   WEEKEND / AVAILABILITY STRIP
   ============================================================ */
.avail-strip {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}
.avail-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.avail-strip h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.avail-strip p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.97rem;
}
.avail-strip__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.avail-strip__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.avail-strip__item::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.faq-list { max-width: 100%; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--red); }
.faq__item.open .faq__question { color: var(--red); }
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 0.25s ease, background var(--transition);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--red);
  color: #fff;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq__item.open .faq__answer { max-height: 500px; }
.faq__answer-inner {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar__box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.faq-sidebar__box h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.faq-sidebar__box p {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.faq-sidebar__phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #F7B731;
  margin-bottom: 18px;
  transition: color var(--transition);
  text-decoration: none;
}
.faq-sidebar__phone:hover { color: #ffd04a; }
.faq-links { background: var(--light); border-radius: var(--radius-lg); padding: 22px; border: 1px solid var(--border); }
.faq-links h4 { color: var(--navy); margin-bottom: 14px; font-size: 0.95rem; }
.faq-links ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.faq-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.faq-links a:hover { color: var(--red); }
.faq-links a svg { color: var(--red); flex-shrink: 0; }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--navy);
  padding: 90px 0;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.cta-section > .container > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #F7B731;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color var(--transition);
}
.cta-phone:hover { color: #ffd04a; }
.cta-section__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  font-weight: 500;
}
.cta-badge svg { color: #4ade80; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a1a3f;
  color: rgba(255,255,255,0.72);
  padding: 64px 0 0;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 48px;
}
.footer__logo {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer__logo strong {
  font-weight: 800;
  color: #fff;
  display: block;
  font-size: 1.15rem;
}
.footer__brand p {
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 18px;
  font-size: 0.9rem;
}
.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.78);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer__contact a:hover { color: #F7B731; }
.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__badges span {
  font-size: 0.78rem;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.72);
  padding: 4px 10px;
  border-radius: 4px;
}
.footer h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer li { color: rgba(255,255,255,0.65); }
.footer a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
  display: inline-block;
}
.footer a:hover { color: #F7B731; }
.footer__areas li { font-size: 0.88rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ============================================================
   FLOATING CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
}
.float-call__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(204,17,34,0.45);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.float-call__btn:hover {
  background: var(--red-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(204,17,34,0.55);
}
.float-call__icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-call__text small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 2px;
}
.float-call__text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

/* ============================================================
   FORT COLLINS SPECIFIC / SECOND IMAGE SECTION
   ============================================================ */
.fc-specific__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.fc-specific__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-light);
  order: -1;
}
.fc-specific__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-specific__content h2 { margin-bottom: 18px; }
.fc-specific__content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.78;
}

/* FC Local: full-width visual card section */
.fc-local {
  background: var(--navy);
  color: #fff;
  padding: 80px 0;
}
.fc-local__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 56px;
}
.fc-local__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
  background: var(--navy-mid);
}
.fc-local__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fc-local__intro .eyebrow {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.2);
}
.fc-local__intro h2 {
  color: #fff;
  margin-bottom: 18px;
}
.fc-local__intro p {
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  margin-bottom: 14px;
}
.fc-local__intro strong { color: rgba(255,255,255,0.95); font-weight: 700; }
.fc-local-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fc-local-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition);
}
.fc-local-card:hover { background: rgba(255,255,255,0.11); }
.fc-local-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(204,17,34,0.18);
  border: 1px solid rgba(204,17,34,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fc-local-card__icon svg { color: #f87171; }
.fc-local-card h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.fc-local-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  line-height: 1.72;
  margin: 0;
}
.fc-local-card strong { color: rgba(255,255,255,0.92); font-weight: 600; }
.fc-local__note {
  margin-top: 40px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
}
.fc-local__note a { color: rgba(255,255,255,0.9); text-decoration: underline; }
.fc-local__note a:hover { color: #fff; }
@media (max-width: 900px) {
  .fc-local__top { grid-template-columns: 1fr; gap: 36px; }
  .fc-local__image { aspect-ratio: 16/7; order: -1; }
  .fc-local-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .fc-local-cards { grid-template-columns: 1fr; }
  .fc-local__top { grid-template-columns: 1fr; }
}

/* Service blocks (homepage services list) */
.service-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.service-block:hover { background: #fafafa; }
.service-block:nth-child(even) { border-right: none; }
.service-block:nth-last-child(-n+2) { border-bottom: none; }
.service-block__icon {
  width: 52px;
  height: 52px;
  background: var(--navy-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.service-block:hover .service-block__icon { background: var(--red-light); }
.service-block__icon svg { color: var(--navy); transition: color var(--transition); }
.service-block:hover .service-block__icon svg { color: var(--red); }
.service-block__content h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-block__content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.65;
}
.service-block__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
}
.service-block:hover .service-block__link { gap: 8px; }

/* Inline FAQ boxes within sections */
.section-qa {
  background: var(--navy-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 22px 24px;
  margin-top: 32px;
}
.section-qa__q {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.section-qa__q-badge {
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.section-qa__a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
  padding-left: 36px;
  margin: 0;
}

/* Section CTA callout (italic lines like "Not sure it counts...") */
.section-cta-line {
  margin-top: 24px;
  padding: 18px 22px;
  background: var(--red-light);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-cta-line a { color: var(--red); text-decoration: underline; font-weight: 700; }

/* ============================================================
   INNER PAGE COMPONENTS
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: '›'; color: var(--border); }
.breadcrumb a { color: var(--navy); }
.breadcrumb [aria-current="page"] { color: var(--text-muted); }

/* GLOBAL RESPONSIVE 2-COL GRID — collapses inline 1fr 1fr grids on mobile */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: repeat(2, 1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* GLOBAL FLEX LIST ITEM FIX — prevents bold/strong from becoming separate flex items */
/* On mobile: convert flex li to block with absolutely-positioned icon so text flows naturally */
@media (max-width: 768px) {
  li[style*="display: flex; gap: 10px"],
  li[style*="display: flex; gap: 14px"] {
    display: block !important;
    padding-left: 26px !important;
    position: relative !important;
  }
  li[style*="display: flex; gap: 10px"] > svg,
  li[style*="display: flex; gap: 14px"] > svg {
    position: absolute !important;
    left: 0 !important;
    top: 3px !important;
  }
}

/* Page Hero (inner pages) */
.page-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,33,81,0.94) 0%, rgba(13,33,81,0.80) 60%, rgba(13,33,81,0.45) 100%);
  z-index: 0;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-hero__ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.page-hero .badge {
  display: inline-block;
  background: rgba(204,17,34,0.2);
  color: #fff;
  border: 1px solid rgba(204,17,34,0.4);
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 600px;
}
.page-hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Content Grid (prose + sidebar) */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

/* Sidebar */
.sidebar__cta {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar__cta h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.sidebar__cta p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }
.sidebar__phone {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #F7B731;
  margin-bottom: 16px;
  text-decoration: none;
  transition: color var(--transition);
}
.sidebar__phone:hover { color: #ffd04a; }
.sidebar__box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.sidebar__box h3 {
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sidebar__box ul { list-style: none; padding: 0; }
.sidebar__box li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.sidebar__box li:last-child { border-bottom: none; }
.sidebar__box a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  transition: color var(--transition);
}
.sidebar__box a:hover { color: var(--red); }
.sidebar__box a svg { color: var(--red); flex-shrink: 0; }

/* Prose */
.prose h2 { margin-top: 2.5rem; margin-bottom: 12px; }
.prose h3 { margin-top: 2rem; margin-bottom: 10px; color: var(--navy); }
.prose h4 { margin-top: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.prose ul, .prose ol { margin-bottom: 1rem; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose p + h2, .prose p + h3 { margin-top: 2rem; }

/* Alert boxes */
.alert {
  border-left: 4px solid var(--navy);
  background: var(--navy-light);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.alert--red { border-color: var(--red); background: var(--red-light); }
.alert p { margin: 0; font-size: 0.95rem; }

/* FAQ Q&A pairs within content */
.inline-qa {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}
.inline-qa__q {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.inline-qa__q::before {
  content: 'Q';
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 3px;
}
.inline-qa__a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding-left: 28px;
  margin: 0;
}

/* Process steps (inline) */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 1.5rem 0;
}
.steps-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.steps-list__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.steps-list__content h4 { margin: 0 0 4px; font-size: 1rem; }
.steps-list__content p { margin: 0; font-size: 0.93rem; color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  h2 { font-size: 34px; }
  h3 { font-size: 24px; }
  .why-us__grid { gap: 48px; }
  .trust-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-bar__divider { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-layout { grid-template-columns: 1fr 320px; gap: 40px; }
}

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

  /* Mobile nav at 900px */
  .topbar { display: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links.open { display: flex !important; }
  .nav__links.open .nav__mobile-cta { display: block; padding: 8px 0 4px; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 199;
  }
  .nav__links.open ~ .nav__cta { display: none; }
  .nav__links.open .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    border: none;
    background: var(--light);
    border-radius: var(--radius);
    padding: 8px;
    margin-top: 4px;
    display: none;
  }
  .nav__links.open .has-dropdown.dropdown-open .dropdown { display: block; }
  .nav__links.open .dropdown::before,
  .nav__links.open .dropdown::after { display: none; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__image { order: -1; aspect-ratio: 16/7; }
  .why-us__split { grid-template-columns: 1fr; gap: 36px; }
  .fc-specific__grid { grid-template-columns: 1fr; gap: 40px; }
  .fc-specific__image { order: 0; aspect-ratio: 16/7; }
  .service-blocks { grid-template-columns: 1fr; }
  .service-block { border-right: none; }
  .service-block:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .service-block:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .avail-strip__inner { grid-template-columns: 1fr; }
  .fc-local-cards { grid-template-columns: 1fr; }
}

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

  .hero { min-height: 480px; }
  .hero__inner { padding: 48px 0; }
  .hero__badge { font-size: 0.72rem; padding: 6px 12px; white-space: normal; max-width: 100%; }

  /* Buttons: full-width + wrap on mobile */
  .btn { white-space: normal; text-align: center; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 420px; justify-content: center; }

  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-blocks { grid-template-columns: 1fr; }
  .trust-bar__inner { grid-template-columns: 1fr; gap: 12px; }
  .trust-bar__item { padding: 4px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .avail-strip__items { grid-template-columns: 1fr; }
  .avail-strip__inner { text-align: center; }
  .avail-strip__inner > div:last-child { margin-top: 8px; }
  .avail-strip__inner .btn { width: 100%; max-width: 340px; justify-content: center; }
  .process-steps { grid-template-columns: 1fr; }
  .fc-specific__grid { grid-template-columns: 1fr; }
  .section-qa__a { padding-left: 0; }

  /* Services bottom CTA button — shorten via width clamp */
  #services .btn--red { max-width: 100%; }

  .float-call__text { display: flex; flex-direction: column; }
  .float-call__btn { padding: 12px 18px; border-radius: 50px; }
  .float-call__icon { width: 36px; height: 36px; background: none; flex-shrink: 0; }
}
