/* ============================================================
   RED ROOTER PLUMBING — Master Stylesheet
   Brand Colors: Red #CC0000, Dark #1A1A1A, White #FFFFFF
   Accent: Silver/Chrome #C0C0C0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
  --red:        #CC0000;
  --red-dark:   #990000;
  --red-light:  #FF1A1A;
  --dark:       #111111;
  --dark-2:     #1E1E1E;
  --dark-3:     #2A2A2A;
  --gray:       #555555;
  --gray-light: #888888;
  --silver:     #C8C8C8;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --border:     #E0E0E0;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.18);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: all 0.3s ease;
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Barlow', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--red-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-red { background: var(--red); }
.bg-dark { background: var(--dark); }
.bg-off-white { background: var(--off-white); }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); text-transform: uppercase; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }
.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 640px; margin: 0 auto 50px; }
.label {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(204,0,0,0.35);
}
.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,0,0,0.45);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--dark-3); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); color: var(--red-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark);
  color: var(--silver);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar a { color: var(--silver); }
.top-bar a:hover { color: var(--red-light); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { flex-shrink: 0; }
.emergency-badge {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

/* ---- Header ---- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.site-logo img { height: 65px; width: auto; }
.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone-label { font-size: 0.7rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1px; }
.header-phone-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.5px;
}

/* ---- Navigation ---- */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--red); background: rgba(204,0,0,0.06); }
.nav-link.has-dropdown { padding-right: 22px; }
.nav-link.has-dropdown::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
}
.dropdown.mega { min-width: 700px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: block;
  padding: 10px 18px;
  color: var(--dark);
  font-size: 0.88rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-link:hover { color: var(--red); background: var(--off-white); padding-left: 24px; }
.dropdown-group { padding: 10px 0; }
.dropdown-group-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  padding: 8px 18px 4px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0D0D0D 0%, #1E1E1E 50%, #0D0D0D 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.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='none' fill-rule='evenodd'%3E%3Cg fill='%23CC0000' fill-opacity='0.04'%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/g%3E%3C/svg%3E");
}
.hero-red-stripe {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: var(--red);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; width: 100%; }
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--red-light); border-radius: 50%; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
.hero h1 { color: var(--white); margin-bottom: 8px; }
.hero h1 span { color: var(--red); }
.hero-tagline {
  font-size: 1.15rem;
  color: #AAAAAA;
  margin: 16px 0 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: #888; font-size: 0.85rem; }
.hero-trust-item svg { color: var(--red); flex-shrink: 0; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-form-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 20px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(204,0,0,0.12); }
.form-control::placeholder { color: var(--gray-light); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-submit { width: 100%; }
.form-note { font-size: 0.76rem; color: var(--gray-light); text-align: center; margin-top: 8px; }

/* ---- Stat Bar ---- */
.stat-bar { background: var(--red); padding: 22px 0; }
.stat-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-label { font-size: 0.8rem; opacity: 0.85; text-align: center; margin-top: 4px; }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(204,0,0,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); }
.service-icon svg { color: var(--red); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; margin-bottom: 18px; }
.service-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* ---- Why Us / Features ---- */
.feature-item { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.feature-item:last-child { border-bottom: none; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.feature-content h4 { margin-bottom: 4px; }
.feature-content p { color: var(--gray); font-size: 0.92rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #FF2200 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.04'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0 5.5 4.5 10 10 10s10-4.5 10-10-4.5-10-10-10-10 4.5-10 10z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- Reviews ---- */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--gray); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.reviewer-location { font-size: 0.78rem; color: var(--gray-light); }

/* ---- Location Section ---- */
.county-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.county-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.county-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow); }
.county-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.county-card p { font-size: 0.8rem; color: var(--gray-light); }
.county-icon { font-size: 2rem; margin-bottom: 12px; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(204,0,0,0.6), rgba(0,0,0,0.4));
}
.blog-card-content { padding: 24px; }
.blog-category { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.3; }
.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--red); }
.blog-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--gray-light); }

/* ---- Emergency Strip ---- */
.emergency-strip {
  background: var(--dark);
  padding: 14px 0;
  border-top: 3px solid var(--red);
}
.emergency-strip-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; color: var(--white); }
.emergency-strip strong { color: var(--red-light); font-family: var(--font-head); font-size: 1.15rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--dark);
  color: #999;
  padding: 70px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand { }
.footer-logo { height: 60px; margin-bottom: 18px; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #999; }
.footer-contact-item a:hover { color: var(--red-light); }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-link { display: block; color: #888; font-size: 0.87rem; padding: 4px 0; transition: var(--transition); }
.footer-link:hover { color: var(--red-light); padding-left: 6px; }
.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: var(--red-light); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  transition: var(--transition);
}
.social-link:hover { background: var(--red); color: var(--white); }

/* ---- Pop-up Modal ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-header {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 28px 32px;
  color: var(--white);
  position: relative;
}
.modal-header h3 { color: var(--white); margin-bottom: 4px; }
.modal-header p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
  border: none;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-body { padding: 28px 32px; }
.modal-success {
  text-align: center;
  padding: 40px 32px;
  display: none;
}
.modal-success svg { color: var(--red); margin: 0 auto 16px; }
.modal-success h3 { margin-bottom: 8px; }
.modal-success p { color: var(--gray); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
}
.page-hero-inner { position: relative; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #666; margin-bottom: 16px; }
.page-hero .breadcrumb a { color: #666; }
.page-hero .breadcrumb a:hover { color: var(--red-light); }
.page-hero .breadcrumb-sep { color: #444; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: #AAA; max-width: 640px; font-size: 1.05rem; }

/* ---- Content Sections ---- */
.content-block { max-width: 800px; }
.content-block h2 { margin-bottom: 16px; }
.content-block h3 { margin: 28px 0 12px; color: var(--dark); }
.content-block p { color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.content-block ul { margin: 16px 0; padding-left: 0; }
.content-block ul li { padding: 5px 0 5px 24px; position: relative; color: var(--gray); font-size: 0.95rem; }
.content-block ul li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ---- Checklist ---- */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.checklist-item { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; background: var(--off-white); border-radius: var(--radius); font-size: 0.9rem; }
.checklist-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ---- Sidebar ---- */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border); }
.sidebar-widget h4 { margin-bottom: 16px; font-size: 1.05rem; padding-bottom: 10px; border-bottom: 2px solid var(--red); }
.sidebar-cta { background: var(--dark); color: var(--white); text-align: center; }
.sidebar-cta h4 { color: var(--white); border-bottom-color: var(--red); }
.sidebar-cta p { color: #999; font-size: 0.88rem; margin-bottom: 16px; }
.sidebar-phone {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  text-align: center;
  margin-bottom: 12px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link { padding: 8px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: var(--dark); font-size: 0.9rem; }
.sidebar-link:hover { color: var(--red); }

/* ---- City Page Specifics ---- */
.cities-list { columns: 3; column-gap: 20px; }
.cities-list li { break-inside: avoid; margin-bottom: 6px; }
.cities-list li a { color: var(--gray); font-size: 0.9rem; }
.cities-list li a:hover { color: var(--red); }

/* ---- Accordion / FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  transition: var(--transition);
}
.faq-question:hover { color: var(--red); }
.faq-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; font-weight: 700; transition: var(--transition); }
.faq-answer { display: none; padding-bottom: 18px; color: var(--gray); font-size: 0.95rem; line-height: 1.75; }
.faq-item.active .faq-question { color: var(--red); }
.faq-item.active .faq-icon { background: var(--dark); transform: rotate(45deg); }
.faq-item.active .faq-answer { display: block; }

/* ---- Process Steps ---- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { text-align: center; padding: 30px 20px; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(100% + 30px);
  height: 2px;
  background: linear-gradient(to right, var(--red), transparent);
  transform: translateY(-50%);
}
.process-step:last-child .step-num::after { display: none; }
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--gray); }

/* ---- Breadcrumb ---- */
.breadcrumb-bar { background: var(--off-white); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--silver); }
.breadcrumb-current { color: var(--dark); font-weight: 600; }

/* ---- Info Box ---- */
.info-box {
  background: rgba(204,0,0,0.05);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { margin: 0; color: var(--dark); font-size: 0.95rem; }

/* ---- Table ---- */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--dark); color: var(--white); font-family: var(--font-head); font-weight: 700; padding: 14px 18px; text-align: left; text-transform: uppercase; letter-spacing: 0.5px; }
.data-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--gray); }
.data-table tr:hover td { background: var(--off-white); }
.data-table tr:last-child td { border-bottom: none; }

/* ---- Floating CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  transition: var(--transition);
  color: var(--white);
}
.floating-btn-call { background: var(--red); }
.floating-btn-call:hover { background: var(--red-dark); color: var(--white); transform: scale(1.05); }
.floating-btn-quote { background: var(--dark); }
.floating-btn-quote:hover { background: var(--dark-3); color: var(--white); transform: scale(1.05); }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); color: var(--white); }

/* ---- Animations ---- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up { animation: fadeInUp 0.7s ease forwards; }
.animate-fade { animation: fadeIn 0.5s ease forwards; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .county-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 480px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .checklist { grid-template-columns: 1fr; }
  .step-num::after { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .menu-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 90vw);
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    overflow-y: auto;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-link { color: var(--white); padding: 14px 0; border-bottom: 1px solid #222; width: 100%; border-radius: 0; }
  .nav-link:hover { background: none; color: var(--red-light); }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-top: none;
    background: #1A1A1A;
    padding: 8px 12px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown.mega { display: block; grid-template-columns: 1fr; }
  .nav-item.open .dropdown { display: block; }
  .dropdown-link { color: #AAA; border-bottom-color: #2A2A2A; }
  .header-cta .btn { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .county-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .top-bar-left { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .cities-list { columns: 2; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; }
  .floating-btn span { display: none; }
  .floating-btn { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .modal-body { padding: 20px; }
  .modal-header { padding: 22px 20px; }
}
@media (max-width: 480px) {
  .header-phone-num { font-size: 1.2rem; }
  .county-grid { grid-template-columns: 1fr; }
  .cities-list { columns: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stat-bar-inner { grid-template-columns: 1fr 1fr; }
}
