/* =============================================
   PERFECT PLUMBING NJ — Main Stylesheet v2
   Navy Blue (#0a2463) + Gold (#e8850a)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Bebas+Neue&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --navy:        #0a2463;
  --navy-dark:   #061640;
  --navy-mid:    #143080;
  --gold:        #e8850a;
  --gold-light:  #f5a623;
  --gold-dark:   #c47009;
  --red:         #c0392b;
  --red-dark:    #922b21;
  --white:       #ffffff;
  --off-white:   #f5f7fc;
  --gray-light:  #eaecf4;
  --gray-mid:    #c8cfe0;
  --gray:        #5a6070;
  --text:        #1a1f36;
  --border:      #dde2ef;
  --green:       #27ae60;
  --shadow-sm:   0 2px 12px rgba(10,36,99,.08);
  --shadow:      0 4px 24px rgba(10,36,99,.12);
  --shadow-lg:   0 12px 48px rgba(10,36,99,.18);
  --radius:      8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --transition:  all 0.25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1.2; color: var(--navy); }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--navy); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ── TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #c9d4f0;
  white-space: nowrap;
}
.topbar-item a {
  color: #c9d4f0;
  font-size: .82rem;
}
.topbar-item a:hover { color: var(--gold-light); }

/* ── HEADER ─────────────────────────────────── */
/* NO sticky — position static */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(10,36,99,.10);
  position: static;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo-wrap img {
  height: 62px;
  width: auto;
  object-fit: contain;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.phone-big {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.phone-big:hover { color: var(--gold); }

/* Emergency button — always visible red, white text */
.btn-emergency-header {
  background: var(--red);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--red);
  transition: var(--transition);
  animation: pulse-red 2.5s infinite;
  letter-spacing: .3px;
}
.btn-emergency-header:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(192,57,43,.4);
  animation: none;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.45); }
  50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

/* ── NAVIGATION ─────────────────────────────── */
nav.main-nav {
  background: var(--navy);
}
.nav-container {
  display: flex;
  align-items: center;
  position: relative;
}
.nav-menu {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  color: rgba(255,255,255,.92);
  padding: 15px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .4px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--gold-light);
  background: rgba(255,255,255,.07);
}
/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  display: none;
  z-index: 999;
  border-radius: 0 0 var(--radius) var(--radius);
}
.nav-menu li:hover > .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: .88rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--off-white);
  color: var(--navy);
  padding-left: 24px;
}
.has-dropdown > a::after { content: ' ▾'; font-size: .7rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Emergency nav CTA */
.nav-menu > li > a.nav-emergency {
  background: var(--red);
  color: #fff !important;
  border-radius: var(--radius);
  margin: 8px 12px;
  padding: 8px 16px;
}
.nav-menu > li > a.nav-emergency:hover {
  background: var(--red-dark);
  color: #fff !important;
}

/* ── HERO ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 70px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero h1 span { color: var(--gold-light); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: #fff !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .3px;
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,133,10,.35);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,.65);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.14);
  color: #fff !important;
}
.btn-secondary {
  background: var(--navy);
  color: #fff !important;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .97rem;
  font-weight: 600;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--navy-dark);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── HERO FORM CARD ─────────────────────────── */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.hero-form-card .sub {
  font-size: .84rem;
  color: var(--gray);
  margin-bottom: 20px;
}

/* ── FORMS ──────────────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,99,.1);
}
.form-group textarea { min-height: 88px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .5px;
}
.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(232,133,10,.3);
}
.form-note {
  font-size: .74rem;
  color: var(--gray);
  text-align: center;
  margin-top: 10px;
}
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success .check { font-size: 3rem; margin-bottom: 10px; }
.form-success h4 { color: var(--green); font-size: 1.2rem; margin-bottom: 6px; }
.form-success p { color: var(--gray); font-size: .88rem; }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--off-white);
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.trust-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--gold-light); }

/* ── SECTIONS ───────────────────────────────── */
.section { padding: 76px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 52px; }
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  text-align: center;
}
.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ── SERVICE CARDS ──────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 26px; height: 26px; color: #fff; }
.service-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.service-card p { font-size: .86rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--gold);
}
.card-link:hover { gap: 9px; color: var(--gold-dark); }

/* ── WHY US ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.why-content h2 { font-size: 2rem; margin-bottom: 12px; }
.why-content > p { color: var(--gray); margin-bottom: 6px; }
.why-list { display: grid; gap: 18px; margin-top: 26px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; color: #fff; }
.why-item h4 { font-size: .97rem; margin-bottom: 3px; }
.why-item p { font-size: .85rem; color: var(--gray); }
.why-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.why-visual h3 { font-size: 1.55rem; color: #fff; margin-bottom: 26px; }
.stat-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; }
.stat-box { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.72);
  margin-top: 5px;
  display: block;
}

/* ── STATS SECTION ──────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 58px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,.78); font-size: .88rem; margin-top: 7px; display: block; }

/* ── PROCESS STEPS ──────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.step-card { text-align: center; padding: 0 8px; }
.step-number {
  width: 72px; height: 72px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--off-white);
}
.section-alt .step-number { border-color: var(--off-white); }
.step-card h4 { font-size: 1rem; margin-bottom: 8px; }
.step-card p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stars { color: #f5a623; font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: .88rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.reviewer-loc { font-size: .78rem; color: var(--gray); }

/* ── EMERGENCY CTA ──────────────────────────── */
.emergency-cta {
  background: linear-gradient(135deg, #b03325 0%, #7b1611 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-cta::before {
  content: '⚡';
  position: absolute;
  top: -20px; right: 40px;
  font-size: 200px;
  opacity: .05;
  pointer-events: none;
}
.emergency-cta h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 12px; }
.emergency-cta p { color: rgba(255,255,255,.88); margin-bottom: 20px; font-size: 1.05rem; }
.emergency-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 26px;
  letter-spacing: 2px;
}
.emergency-phone a { color: var(--gold-light); }
.emergency-phone a:hover { color: #fff; }
.emergency-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.e-badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
}

/* ── BLOG GRID ──────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-thumb svg { width: 56px; height: 56px; color: rgba(255,255,255,.22); }
.blog-cat-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.blog-body { padding: 22px; }
.blog-date { font-size: .76rem; color: var(--gray); margin-bottom: 8px; }
.blog-card h3 { font-size: .97rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: .84rem; color: var(--gray); margin-bottom: 14px; line-height: 1.65; }
.read-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.read-more:hover { color: var(--gold-dark); gap: 8px; }

/* ── COUNTY CARDS ───────────────────────────── */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 16px;
}
.county-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  transition: var(--transition);
  text-align: center;
}
.county-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.county-icon { font-size: 2rem; margin-bottom: 10px; }
.county-card h3 { font-size: 1rem; margin-bottom: 6px; }
.county-card p { font-size: .78rem; color: var(--gray); }
.county-card a {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
}
.county-card a:hover { color: var(--navy); }

/* ── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  margin-bottom: 48px;
}
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: .87rem; margin-bottom: 18px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: rgba(255,255,255,.7);
}
.social-icon:hover { background: var(--gold); color: #fff; }
.social-icon svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .93rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.62);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a,
.footer-contact-item span { font-size: .85rem; color: rgba(255,255,255,.72); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.52); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── MODAL POPUP ────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  overflow: hidden;
  transform: translateY(30px) scale(.97);
  transition: transform .35s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 26px 28px;
  position: relative;
}
.modal-header h3 { font-size: 1.4rem; margin-bottom: 4px; color: #fff; }
.modal-header p { font-size: .87rem; color: rgba(255,255,255,.8); }
.modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.32); }
.modal-body { padding: 28px; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb li { font-size: .82rem; color: var(--gray); }
.breadcrumb li + li::before { content: '›'; margin-right: 6px; color: var(--gray); }
.breadcrumb li a { color: var(--navy); }
.breadcrumb li a:hover { color: var(--gold); }

/* ── PAGE HERO ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 52px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 48px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.section-alt + .section .page-hero::after,
.page-hero.alt-bg::after { background: var(--off-white); }
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,.85); max-width: 620px; font-size: 1rem; }

/* ── SIDEBAR LAYOUT ─────────────────────────── */
.content-sidebar-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 50px;
  align-items: start;
}
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.sidebar-card h4 {
  font-size: .96rem;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.sidebar-services li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .86rem;
  color: var(--text);
}
.sidebar-services li a:hover { color: var(--gold); padding-left: 4px; }
.sidebar-phone-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: center;
  margin-bottom: 22px;
}
.sidebar-phone-card p { font-size: .85rem; color: rgba(255,255,255,.82); margin-bottom: 8px; }
.sidebar-phone-card a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.95rem;
  color: var(--gold-light);
  display: block;
  letter-spacing: 1px;
}
.sidebar-phone-card .sub { font-size: .77rem; color: rgba(255,255,255,.58); margin-top: 4px; }

/* ── LOCATION SERVICES LIST ─────────────────── */
.location-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.loc-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border);
}
.loc-service-item svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

/* ── FAQ ────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--navy); color: #fff; }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-answer.open { padding: 16px 20px; max-height: 400px; }

/* ── BACK TO TOP ────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 800;
  font-size: 1.2rem;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); }

/* ── INNER CONTENT ──────────────────────────── */
.inner-content h2 { font-size: 1.55rem; margin: 30px 0 12px; }
.inner-content h3 { font-size: 1.15rem; margin: 22px 0 9px; }
.inner-content p { margin-bottom: 16px; color: var(--gray); line-height: 1.8; }
.inner-content ul { padding-left: 22px; margin-bottom: 16px; }
.inner-content ul li { margin-bottom: 8px; color: var(--gray); font-size: .93rem; list-style: disc; }

/* ── LEGAL PAGES ────────────────────────────── */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content p { margin-bottom: 1rem; line-height: 1.8; color: var(--gray); }
.legal-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 .75rem;
  padding-bottom: .4rem;
  border-bottom: 2px solid var(--gold);
}
.legal-content h3 { font-size: 1.1rem; color: var(--navy-dark); margin: 1.25rem 0 .5rem; }
.legal-content ul { margin: .5rem 0 1rem 1.5rem; color: var(--gray); line-height: 1.8; }
.legal-content ul li { margin-bottom: .3rem; list-style: disc; }
.legal-content a { color: var(--gold); }

/* ── CONTACT PAGE ───────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.contact-form-box {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.contact-form-box h2 { font-size: 1.75rem; margin-bottom: .5rem; }
.contact-form-box > p { color: var(--gray); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-check label { display: flex; align-items: center; gap: .5rem; font-weight: 500; cursor: pointer; font-size: .9rem; }
.btn-full { width: 100%; text-align: center; justify-content: center; margin-top: .5rem; }

.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 1.6rem;
  margin-bottom: 1.25rem;
}
.contact-info-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .9rem;
  padding-bottom: .45rem;
  border-bottom: 2px solid var(--gold);
}
.contact-info-list { padding: 0; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-info-list li:last-child { border-bottom: none; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #999;
  margin-bottom: .15rem;
}
.contact-info-list a { color: var(--navy); font-weight: 600; }
.contact-info-list a:hover { color: var(--gold); }
.contact-info-list small { display: block; color: #999; font-size: .8rem; margin-top: .12rem; }

.county-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.county-tags a {
  background: var(--off-white);
  color: var(--navy);
  padding: .3rem .7rem;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.county-tags a:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Emergency info card */
.contact-emergency-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.contact-emergency-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: .6rem; }
.contact-emergency-card p { color: rgba(255,255,255,.78); font-size: .88rem; margin-bottom: 1rem; }
.contact-emergency-card small { color: rgba(255,255,255,.55); font-size: .78rem; }
.btn-emergency-cta {
  display: block;
  background: var(--gold);
  color: #fff !important;
  text-align: center;
  padding: .95rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: .8rem 0;
  transition: var(--transition);
}
.btn-emergency-cta:hover { background: var(--gold-dark); color: #fff !important; }

.contact-social-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 1.6rem;
}
.contact-social-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .9rem; }
.social-links-contact { display: flex; gap: .75rem; flex-wrap: wrap; }
.social-links-contact a {
  background: var(--navy);
  color: #fff !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
}
.social-links-contact a:hover { background: var(--gold); color: #fff !important; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.why-contact-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.why-contact-icon { font-size: 2.2rem; display: block; margin-bottom: .7rem; }
.why-contact-item h3 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.why-contact-item p { color: var(--gray); font-size: .86rem; line-height: 1.6; }

/* ── ABOUT PAGE ─────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: #fff;
}
.about-visual h3 { color: #fff; font-size: 1.5rem; margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { text-align: center; background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; }
.about-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.about-stat .lbl { color: rgba(255,255,255,.72); font-size: .8rem; margin-top: 4px; display: block; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .content-sidebar-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; gap: 12px; }
  .header-inner { flex-wrap: nowrap; gap: 10px; }
  .phone-big { font-size: 1.1rem; }
  .btn-emergency-header { padding: 9px 14px; font-size: .85rem; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--navy);
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-menu > li > a.nav-emergency { margin: 10px 16px; text-align: center; }
  .nav-menu .dropdown { position: static !important; box-shadow: none !important; display: none !important; }
  .nav-container { position: relative; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .location-services-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero { padding: 46px 0 78px; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 16px; }
  .trust-item { font-size: .82rem; }
  .emergency-phone { font-size: 2.4rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .why-contact-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 1.5rem; }
}

/* ── COMPATIBILITY RULES ────────────────────── */
/* Support both .header-inner and .container > .header-inner patterns */
.container > .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
/* Ensure topbar always shows correctly regardless of div nesting */
.topbar .topbar-left,
.topbar .topbar-right {
  display: flex !important;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
/* Page hero after breadcrumb - fix background */
.breadcrumb + .page-hero::after,
nav.breadcrumb + .page-hero::after { background: var(--white); }
/* Section title center align helper */
.text-center { text-align: center; }
/* Blog index grid on blog listing page */
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) { .blog-index-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-index-grid { grid-template-columns: 1fr; } }
/* County city grid */
.city-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .city-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .city-links-grid { grid-template-columns: repeat(2, 1fr); } }
.city-link-item a {
  display: block;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--navy);
  transition: var(--transition);
}
.city-link-item a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
}
/* About page values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.value-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: .86rem; color: var(--gray); line-height: 1.65; }
/* Mobile touch improvements */
@media (hover: none) {
  .service-card:hover,
  .testimonial-card:hover,
  .blog-card:hover,
  .county-card:hover { transform: none; }
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover { transform: none; }
}
/* Print styles */
@media print {
  .topbar, nav.main-nav, .modal-overlay, .back-to-top, .btn-emergency-header { display: none; }
  .site-header { box-shadow: none; }
  .hero { padding: 20px 0; background: #fff; color: #000; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-form-card { padding: 24px 18px; }
  .modal-box { margin: 10px; }
  .modal-body { padding: 20px 18px; }
  .trust-item span { font-size: .8rem; }
  .container { padding: 0 16px; }
  .section-header h2 { font-size: 1.55rem; }
  .btn-primary, .btn-outline, .btn-secondary { font-size: .93rem; padding: 12px 20px; }
  .stat-number { font-size: 2.4rem; }
  .stat-num { font-size: 2.4rem; }
  h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
}
/* Fix topbar on very small screens */
@media (max-width: 380px) {
  .topbar-item { font-size: .75rem; }
  .phone-big { font-size: 1rem; }
  .btn-emergency-header { font-size: .8rem; padding: 8px 10px; }
  .logo-wrap img { height: 46px; }
}

/* ═══════════════════════════════════════════════
   MISSING CLASS DEFINITIONS — Complete Fix
   ═══════════════════════════════════════════════ */

/* ── BLOG POST LAYOUT ─────────────────────────── */
.blog-post { padding: 52px 0 76px; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.blog-post-main { min-width: 0; }
.blog-post-main h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
  font-size: .84rem;
  color: var(--gray);
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-content { color: var(--text); line-height: 1.85; }
.blog-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-light);
}
.blog-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: var(--navy-dark);
  margin: 24px 0 10px;
}
.blog-content p { margin-bottom: 18px; color: var(--gray); }
.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--gray);
}
.blog-content ul li { list-style: disc; margin-bottom: 8px; line-height: 1.7; }
.blog-content ol li { list-style: decimal; margin-bottom: 8px; line-height: 1.7; }
.blog-content strong { color: var(--navy); }
.blog-content a { color: var(--gold); font-weight: 600; }
.blog-content a:hover { color: var(--gold-dark); }
.blog-content blockquote {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray);
}

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 20px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.sidebar-widget h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.sidebar-services li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: .87rem;
  color: var(--text);
  transition: var(--transition);
}
.sidebar-services li a:hover { color: var(--gold); padding-left: 6px; }
.sidebar-services li:last-child a { border-bottom: none; }

/* Blog CTA box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  margin: 32px 0;
}
.blog-cta-box h3 { color: #fff; font-size: 1.2rem; margin-bottom: 10px; }
.blog-cta-box p { color: rgba(255,255,255,.82); font-size: .9rem; margin-bottom: 18px; }

/* Blog listing page */
.blog-listing { padding: 52px 0; }
.blog-card-content { padding: 20px; }
.blog-category {
  display: inline-block;
  background: var(--off-white);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ── SIDEBAR (General) ───────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── CHECK LIST ──────────────────────────────── */
.check-list { list-style: none; padding: 0; margin-bottom: 18px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: .93rem;
  color: var(--gray);
}
.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list li:last-child { border-bottom: none; }

/* ── BTN VARIANTS ────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; }
.btn.btn-primary { /* already styled */ }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 34px; font-size: 1.1rem; }
.btn-link { background: none; border: none; color: var(--gold); font-weight: 600; cursor: pointer; padding: 0; font-family: 'Open Sans', sans-serif; }

/* ── FOOTER VARIANTS ─────────────────────────── */
.footer-brand { /* same as footer-col */ }
.footer-brand img { height: 54px; width: auto; margin-bottom: 16px; }
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-about { color: rgba(255,255,255,.68); font-size: .87rem; line-height: 1.75; margin-bottom: 18px; }
.footer-top { padding-bottom: 48px; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── CONTACT SECTION ─────────────────────────── */
.contact-section { padding: 52px 0; }
.contact-form-col { flex: 1 1 0; min-width: 0; }
.contact-info-col { flex: 0 0 360px; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}

/* ── CTA SECTION ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 64px 0;
  text-align: center;
}
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 28px; }

/* ── FAQ SECTION ─────────────────────────────── */
.faq-section { padding: 52px 0; }

/* ── ABOUT PAGE ──────────────────────────────── */
.about-section { padding: 52px 0; }
.about-content { max-width: 800px; }
.about-content h2 { font-size: 1.8rem; margin-bottom: 14px; }
.about-content p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-sidebar { /* inherits sidebar styles */ }
.values-section { padding: 52px 0; background: var(--off-white); }

/* ── SERVICE AREAS ON COUNTY PAGES ──────────── */
.county-links { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 20px; }
.county-link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .86rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  display: block;
}
.county-link-card:hover { background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px); }
@media (max-width: 768px) { .county-links { grid-template-columns: repeat(2,1fr); } }

/* ── STATS (alt classes) ─────────────────────── */
.stat-item { text-align: center; }
.trust-stat { display: flex; align-items: center; gap: 10px; }
.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
}

/* ── MISC LAYOUT ─────────────────────────────── */
.bg-light { background: var(--off-white); }
.section-pad { padding: 52px 0; }
.why-content { flex: 1 1 0; min-width: 0; }
.hero-content { flex: 1 1 0; min-width: 0; }
.map-section { padding: 52px 0; }
.service-areas-section { padding: 52px 0; }

/* ── LOGO CLASSES ────────────────────────────── */
.logo-link { display: flex; align-items: center; }
.logo-img { height: 62px; width: auto; object-fit: contain; }

/* ── CHEVRON (FAQ indicator) ─────────────────── */
.chevron { transition: transform .3s ease; display: inline-block; }
.faq-question.open .chevron { transform: rotate(180deg); }

/* ── HEADER VARIANTS ─────────────────────────── */
.header-main { background: var(--white); }
.header-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-dark); color: #fff !important; }

/* ── POPUP ALT CLASSES ───────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-box {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.popup-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 24px 26px;
  color: #fff;
}
.popup-header h2 { color: #fff; font-size: 1.35rem; margin-bottom: 4px; }
.popup-header p { color: rgba(255,255,255,.8); font-size: .87rem; }
.popup-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,.18);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-icon {
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-check { margin-bottom: 14px; }
.form-check label { display: flex; align-items: center; gap: 8px; font-size: .9rem; cursor: pointer; }

/* ── NAV TOGGLE (alt class) ──────────────────── */
.nav-toggle { display: none; }
@media (max-width: 768px) { .nav-toggle { display: flex; } }

/* ── BLOG POST RESPONSIVE ───────────────────── */
@media (max-width: 960px) {
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .blog-post { padding: 36px 0 52px; }
  .blog-content h2 { font-size: 1.25rem; }
  .county-links { grid-template-columns: repeat(2, 1fr); }
  .contact-form-col, .contact-info-col { flex: 1 1 100%; }
}
@media (max-width: 480px) {
  .blog-post-main h1 { font-size: 1.55rem; }
  .county-links { grid-template-columns: repeat(2, 1fr); }
}

/* ── FINAL MISSING CLASSES ───────────────────── */
.footer-col { /* already handled as base grid col */ }
.has-dropdown { position: relative; }
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.logo-wrap img { height: 62px; width: auto; object-fit: contain; }
.inner-content { /* already defined above */ }
.sidebar-services { list-style: none; padding: 0; margin: 0; }
.emergency-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.emergency-card h3 { color: #fff; margin-bottom: 10px; }
.emergency-card p { color: rgba(255,255,255,.78); font-size: .88rem; margin-bottom: 14px; }
.why-contact { background: var(--off-white); }
