:root {
  --red: #C0222B;
  --red-dark: #9B1B22;
  --red-light: #e8353f;
  --navy: #0D1B2A;
  --navy-light: #1A2A4A;
  --white: #FFFFFF;
  --gray-light: #F5F7FA;
  --gray: #E8ECF0;
  --text: #1A1A1A;
  --text-light: #5A6472;
  --border: #DDE3EC;
  --shadow: 0 4px 24px rgba(13,27,42,.10);
  --shadow-lg: 0 8px 40px rgba(13,27,42,.16);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  letter-spacing: .02em;
}
.ann-call {
  background: rgba(255,255,255,.15);
  padding: 4px 14px;
  border-radius: 20px;
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: background .2s;
}
.ann-call:hover { background: rgba(255,255,255,.25); }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo-link { flex-shrink: 0; }
.logo-img { height: 78px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .925rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .2s, background .2s;
}
.nav-link:hover { color: var(--red); background: rgba(192,34,43,.06); }
.nav-active { color: var(--red) !important; font-weight: 700; }
.header-cta { flex-shrink: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192,34,43,.35);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,34,43,.45);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--red); }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Sticky Call Bar (mobile) ── */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--red);
  text-align: center;
}
.sticky-call-btn {
  display: block;
  padding: 16px;
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .04em;
}

/* ── Float Call Button (desktop) ── */
.float-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(192,34,43,.5);
  transition: all .2s;
  animation: pulse-red 2.5s infinite;
}
.float-call-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(192,34,43,.6); }
@keyframes pulse-red {
  0%,100% { box-shadow: 0 6px 24px rgba(192,34,43,.5); }
  50% { box-shadow: 0 6px 32px rgba(192,34,43,.8); }
}

/* ── Hero (Home) ── */
.home-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1520 0%, #1a2a3a 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .35;
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(255,255,255,.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(255,255,255,.03) 60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,34,43,.2);
  border: 1px solid rgba(192,34,43,.4);
  color: #ff9999;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: "🚨"; }
.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero-title span { color: var(--red-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { color: var(--white); }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 900; color: var(--red-light); }
.hero-stat span { font-size: .825rem; color: rgba(255,255,255,.65); letter-spacing: .04em; text-transform: uppercase; }

/* ── Lead Form ── */
.lead-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
  text-align: center;
}
.form-sub {
  font-size: .825rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}
.lead-form { display: flex; flex-direction: column; gap: 12px; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,34,43,.1);
}
.form-row textarea { resize: vertical; }
.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-light);
  cursor: pointer;
}
.sms-consent input { flex-shrink: 0; margin-top: 2px; }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 8px;
}
.form-note a { color: var(--red); font-weight: 600; }
.form-success { text-align: center; padding: 24px 0; }
.success-icon {
  width: 60px; height: 60px;
  background: #22c55e;
  color: white;
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 { font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-light); margin-bottom: 20px; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-grid {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-around;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  color: var(--white);
}
.trust-icon { font-size: 1.4rem; }
.trust-label { font-size: .875rem; font-weight: 600; white-space: nowrap; }

/* ── Section Common ── */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: rgba(192,34,43,.1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.service-link {
  font-size: .875rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }

/* ── Counties Grid ── */
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.county-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all .25s;
}
.county-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateY(-3px); }
.county-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.county-card p { font-size: .8rem; color: var(--text-light); margin-bottom: 12px; }
.county-card a { font-size: .825rem; font-weight: 700; color: var(--red); }
.county-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  justify-content: center;
}
.city-pill {
  font-size: .75rem;
  color: var(--text-light);
  background: var(--gray-light);
  padding: 3px 10px;
  border-radius: 12px;
  transition: all .2s;
}
.city-pill:hover { background: var(--red); color: var(--white); }

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-text::before { content: "\201C"; font-size: 2rem; color: var(--red); line-height: 0; vertical-align: -12px; margin-right: 4px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.reviewer-city { font-size: .8rem; color: var(--text-light); }
.google-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--red);
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--red); color: white; }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.75;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }

/* ── Blog Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block;
  background: rgba(192,34,43,.1);
  color: var(--red);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.blog-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.blog-card p { font-size: .85rem; color: var(--text-light); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-read-more { font-size: .875rem; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.blog-read-more:hover { gap: 10px; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 41px);
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; color: var(--white); margin-bottom: 16px; letter-spacing: -.02em; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phones { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 24px; }
.cta-phone { color: rgba(255,255,255,.7); font-size: .9rem; }
.cta-phone a { color: var(--white); font-weight: 700; }

/* ── Emergency Banner ── */
.emergency-banner {
  background: var(--red);
  padding: 20px 0;
  text-align: center;
}
.emergency-banner p {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
.emergency-banner a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 800;
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.02) 40px, rgba(255,255,255,.02) 41px);
  pointer-events: none;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-size: .825rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  max-width: 620px;
  line-height: 1.65;
}
.page-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Content + Sidebar layout ── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.content-body h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin: 32px 0 12px; }
.content-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-body p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.content-body ul { padding-left: 20px; margin-bottom: 16px; }
.content-body ul li { color: var(--text-light); line-height: 1.75; margin-bottom: 6px; }
.content-sidebar-col { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin-bottom: 20px;
}
.sidebar-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-link {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--gray-light);
  transition: all .2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar-link:hover { background: var(--red); color: var(--white); }

/* ── Process Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}
.step-card { text-align: center; padding: 32px 20px; }
.step-num {
  width: 60px; height: 60px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-card { padding: 32px 20px; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .875rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }

/* ── Table ── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: .875rem;
  font-weight: 700;
}
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--gray-light); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-about { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }
.footer-heading { font-size: .925rem; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-nav a:hover { color: var(--white); }
.footer-badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-badge {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.45); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* ── Brands Section ── */
.brands-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.brand-item {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.brand-item:hover { border-color: var(--red); color: var(--red); }

/* ── City/Area List ── */
.city-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.city-list-item {
  padding: 10px 16px;
  background: var(--gray-light);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-list-item:hover { background: var(--red); color: var(--white); }
.city-list-item::before { content: "📍"; font-size: .8rem; }

/* ── Thank You Page ── */
.thankyou-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.thankyou-icon {
  width: 90px; height: 90px;
  background: #22c55e;
  border-radius: 50%;
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-wrap h1 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.thankyou-wrap p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; max-width: 480px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .content-sidebar-col { position: static; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner .lead-form-wrap { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 9999;
    padding: 80px 20px;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { font-size: 1.3rem; padding: 12px 24px; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .float-call-btn { display: none; }
  .sticky-call-bar { display: block; }
  body { padding-bottom: 60px; }
  .trust-grid { justify-content: flex-start; gap: 0; }
  .trust-item { width: 50%; }
  .footer-grid { grid-template-columns: 1fr; }
  .announcement-bar { font-size: .8rem; gap: 12px; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .trust-item { width: 100%; }
  .logo-img { height: 56px; }
}
