/* ================================================================
   ADVANTAGE SERVICE COMPANY — Complete Design System
   Brand: #1a6faf blue · #c0392b red · #1a1a2e dark
   ================================================================ */

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

/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
  --blue:       #1a6faf;
  --blue-d:     #0d4f82;
  --blue-l:     #e8f2fb;
  --red:        #c0392b;
  --red-d:      #962d22;
  --dark:       #1a1a2e;
  --dark2:      #16213e;
  --white:      #ffffff;
  --bg:         #f5f7fa;
  --border:     #dde3ed;
  --text:       #1e2939;
  --muted:      #52606d;
  --sh-sm:      0 2px 12px rgba(0,0,0,.08);
  --sh-md:      0 8px 32px rgba(0,0,0,.13);
  --sh-lg:      0 24px 64px rgba(0,0,0,.18);
  --r:          10px;
  --r-lg:       18px;
  --FH:         'Barlow Condensed', sans-serif;
  --FB:         'Barlow', sans-serif;
  --ease:       0.25s ease;
}

/* ── 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: var(--FB); color: var(--text); background: var(--white);
       line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { font-family: var(--FB); cursor: pointer; }

/* ── UTILITIES ─────────────────────────────────────────────────── */
.container  { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
section { padding: 84px 0; }

/* ── TYPOGRAPHY ────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue); font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 10px;
}
.section-tag::before,
.section-tag::after { content: ''; width: 28px; height: 1px; background: currentColor; }
.section-title {
  font-family: var(--FH); font-size: clamp(28px, 4vw, 46px);
  font-weight: 900; color: var(--dark); text-transform: uppercase;
  letter-spacing: .5px; line-height: 1.08;
}
.section-title span { color: var(--blue); }
.section-title.white { color: #fff; }
.section-subtitle {
  font-size: 17px; color: var(--muted); margin-top: 14px;
  max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.65;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r); border: 2px solid transparent;
  font-family: var(--FH); font-weight: 700; font-size: 16px;
  letter-spacing: .5px; text-transform: uppercase; white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue); color: #fff; border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-d); border-color: var(--blue-d);
  box-shadow: 0 8px 24px rgba(26,111,175,.35); }
.btn-secondary {
  background: var(--red); color: #fff; border-color: var(--red);
}
.btn-secondary:hover { background: var(--red-d); border-color: var(--red-d);
  box-shadow: 0 8px 24px rgba(192,57,43,.35); }
.btn-outline {
  background: transparent; color: #fff; border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── TOP BAR ───────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark); color: rgba(255,255,255,.75);
  padding: 9px 0; font-size: 13px; line-height: 1;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar a { color: rgba(255,255,255,.75); transition: color var(--ease); }
.top-bar a:hover { color: #64b5f6; }
.top-bar-phone { color: #64b5f6 !important; font-weight: 700 !important; font-size: 14px; }

/* ── HEADER ────────────────────────────────────────────────────── */
.site-header {
  background: #fff; border-bottom: 3px solid var(--blue);
  box-shadow: var(--sh-sm); position: sticky; top: 0; z-index: 900;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 16px;
}
.logo img { height: 58px; width: auto; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list  { display: flex; align-items: center; gap: 0; }
.nav-link  {
  display: block; padding: 10px 14px;
  font-family: var(--FH); font-weight: 700; font-size: 14px;
  letter-spacing: .5px; text-transform: uppercase; color: var(--dark);
  border-radius: 6px; transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-link:hover { color: var(--blue); background: var(--blue-l); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-toggle::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--blue); border-radius: 0 0 var(--r) var(--r);
  box-shadow: var(--sh-md); min-width: 240px; z-index: 1000; padding: 6px 0;
}
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 14px; color: var(--text);
  border-left: 3px solid transparent; transition: all var(--ease);
}
.dropdown-menu a:hover {
  color: var(--blue); background: var(--bg); border-left-color: var(--blue);
}

/* Header CTA */
.header-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex-shrink: 0; }
.header-phone {
  font-family: var(--FH); font-size: 26px; font-weight: 900;
  color: var(--red); display: flex; align-items: center; gap: 6px;
}
.btn-emergency {
  background: var(--red); color: #fff; padding: 7px 16px;
  border-radius: 6px; font-family: var(--FH); font-weight: 700;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.5); }
  50%      { box-shadow: 0 0 0 8px rgba(192,57,43,0); }
}

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 2px solid var(--blue); border-radius: 6px; padding: 8px;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: all var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay for mobile */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 850;
}
.mobile-nav-overlay.active { display: block; }

/* ── EMERGENCY BANNER ──────────────────────────────────────────── */
.emergency-banner {
  background: var(--red); color: #fff; text-align: center; padding: 12px 20px;
  font-family: var(--FH); font-size: 17px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; line-height: 1.4;
}
.emergency-banner a { color: #fff; text-decoration: underline; }

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 55%, #0f3460 100%);
  min-height: 580px; display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: 1;
  background-image: radial-gradient(circle at 70% 50%, rgba(26,111,175,.18) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 2; padding-top: 72px; padding-bottom: 72px; }
.hero-content { max-width: 660px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,.9); color: #fff;
  padding: 6px 16px; border-radius: 40px; font-size: 12px;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: #fff;
  border-radius: 50%; animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.2 } }
.hero h1 {
  font-family: var(--FH); font-size: clamp(38px, 6vw, 72px);
  font-weight: 900; line-height: 1.04; color: #fff;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px;
}
.hero h1 span { color: #64b5f6; }
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.8);
  margin-bottom: 34px; line-height: 1.65; max-width: 580px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust  { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item  {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
}

/* ── SERVICES ──────────────────────────────────────────────────── */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
a.service-card { display: block; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: var(--r);
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: #fff; flex-shrink: 0;
}
.service-card h3 {
  font-family: var(--FH); font-size: 21px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.learn-more { color: var(--blue); font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* ── STATS ─────────────────────────────────────────────────────── */
.stats-section { background: var(--blue); padding: 56px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item {
  text-align: center; color: #fff; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--FH); font-size: 56px; font-weight: 900;
  line-height: 1; margin-bottom: 8px; letter-spacing: -1px;
}
.stat-label {
  font-size: 12px; font-weight: 600; opacity: .8;
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* ── WHY CHOOSE US ─────────────────────────────────────────────── */
.why-section { background: var(--dark); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.why-content .section-tag { color: #64b5f6; }
.why-content h2 {
  font-family: var(--FH); font-size: clamp(28px,3.5vw,44px);
  font-weight: 900; text-transform: uppercase; color: #fff;
  line-height: 1.08; margin-bottom: 18px; margin-top: 10px;
}
.why-content p { color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 28px; font-size: 16px; }
.why-divider {
  border: none; border-top: 1px solid rgba(255,255,255,.1);
  margin: 28px 0 20px;
}
.why-counties-label { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.why-counties-list  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }
.why-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.why-feature {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 22px 18px; transition: all var(--ease);
}
.why-feature:hover { background: rgba(26,111,175,.25); border-color: rgba(26,111,175,.6); }
.why-feature-icon { font-size: 28px; margin-bottom: 10px; line-height: 1; }
.why-feature h4 {
  font-family: var(--FH); font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; color: #fff; margin-bottom: 6px;
}
.why-feature p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── PROCESS ───────────────────────────────────────────────────── */
.process-section { background: var(--bg); }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 30px; left: calc(12.5% + 16px);
  right: calc(12.5% + 16px); height: 2px; background: var(--border); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 60px; height: 60px; background: var(--blue); color: #fff;
  border-radius: 50%; border: 4px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--FH); font-size: 26px; font-weight: 900;
  margin: 0 auto 18px; box-shadow: 0 0 0 3px var(--blue);
}
.process-step h4 {
  font-family: var(--FH); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 8px;
}
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── REVIEWS ───────────────────────────────────────────────────── */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.review-card {
  background: #fff; border-radius: var(--r-lg); padding: 30px 26px;
  box-shadow: var(--sh-sm); border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.review-stars { color: #f59e0b; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--FH); font-weight: 900; font-size: 16px;
}
.reviewer-name     { font-weight: 700; font-size: 15px; color: var(--dark); }
.reviewer-location { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── COUNTIES GRID ─────────────────────────────────────────────── */
.counties-section { background: var(--bg); }
.counties-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.county-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 22px 20px; transition: border-color var(--ease), box-shadow var(--ease);
}
.county-card:hover { border-color: var(--blue); box-shadow: var(--sh-sm); }
.county-card h4 {
  font-family: var(--FH); font-size: 18px; font-weight: 800;
  text-transform: uppercase; color: var(--dark); margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
}
.county-card ul { display: flex; flex-direction: column; gap: 6px; }
.county-card ul li a {
  font-size: 14px; color: var(--muted);
  transition: color var(--ease), padding var(--ease);
  display: flex; align-items: center; gap: 4px;
}
.county-card ul li a:hover { color: var(--blue); padding-left: 4px; }
.county-card ul li:last-child a {
  color: var(--blue); font-weight: 600; margin-top: 2px;
}

/* ── BLOG PREVIEW ──────────────────────────────────────────────── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
a.blog-card { display: block; }
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: transform var(--ease), box-shadow var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.blog-thumb {
  background: linear-gradient(135deg, var(--dark2), #0f3460);
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.blog-thumb svg { opacity: .2; }
.blog-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 40px;
}
.blog-body { padding: 22px 22px 24px; }
.blog-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-body h3 {
  font-family: var(--FH); font-size: 20px; font-weight: 800;
  color: var(--dark); line-height: 1.3; margin-bottom: 10px;
}
.blog-body h3 a { color: inherit; }
.blog-body h3 a:hover { color: var(--blue); }
.blog-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.read-more { color: var(--blue); font-size: 14px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }

/* ── CTA SECTION ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-d) 0%, #0f3460 100%);
  color: #fff; text-align: center; padding: 88px 0;
}
.cta-section h2 {
  font-family: var(--FH); font-size: clamp(30px,4vw,54px);
  font-weight: 900; text-transform: uppercase; margin-bottom: 14px;
}
.cta-section > .container > p { font-size: 17px; opacity: .85; margin-bottom: 32px; }
.cta-phone {
  font-family: var(--FH); font-size: clamp(36px,5vw,52px);
  font-weight: 900; letter-spacing: 2px; margin-bottom: 28px;
}
.cta-phone a { color: #fff; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FORM SECTION ──────────────────────────────────────────────── */
.form-section { background: var(--bg); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.contact-info h3 {
  font-family: var(--FH); font-size: 30px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 10px; margin-top: 10px;
}
.contact-info > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: var(--r); background: var(--blue);
  display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0;
}
.contact-detail-text label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.contact-detail-text a,
.contact-detail-text p { font-size: 16px; font-weight: 600; color: var(--dark); }
.contact-detail-text a:hover { color: var(--blue); }

.contact-form {
  background: #fff; border-radius: var(--r-lg);
  padding: 40px; box-shadow: var(--sh-md); border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--FH); font-size: 24px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 3px solid var(--blue);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase; color: var(--text); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--FB); font-size: 15px; color: var(--text);
  background: #fff; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,111,175,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit { width: 100%; padding: 16px; font-size: 17px; margin-top: 4px; }
.form-success {
  display: none; background: #e8f5e9; border: 1px solid #4caf50;
  border-radius: var(--r); padding: 14px 18px; color: #2e7d32;
  font-weight: 600; text-align: center; margin-top: 16px;
}

/* ── FAQ ───────────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r);
  margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 18px 24px; border: none; background: #fff;
  text-align: left; font-family: var(--FB); font-size: 16px; font-weight: 600;
  color: var(--dark); display: flex; justify-content: space-between;
  align-items: center; gap: 16px; transition: background var(--ease);
}
.faq-question:hover  { background: var(--bg); }
.faq-question.open   { background: var(--blue); color: #fff; }
.faq-question svg    { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--ease); }
.faq-question.open svg { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 18px 24px; background: var(--bg);
  font-size: 15px; color: var(--muted); line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ── FOOTER ────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.65); }
.footer-top  { padding: 70px 0 44px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .logo-footer {
  height: 64px; width: auto; max-width: 210px;
  background: #fff; border-radius: 8px; padding: 8px 14px;
  margin-bottom: 18px;
}
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 22px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all var(--ease);
}
.social-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.footer-col h4 {
  font-family: var(--FH); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff; margin-bottom: 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: all var(--ease); display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '›'; color: #64b5f6; font-size: 16px; }
.footer-col ul li a:hover  { color: #64b5f6; padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #64b5f6; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 11px; padding: 4px 12px; border-radius: 40px;
  border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.6);
}

/* ── POPUP ─────────────────────────────────────────────────────── */
.popup-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.72); z-index: 9900;
  align-items: center; justify-content: center; padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: #fff; border-radius: var(--r-lg); padding: 40px 36px;
  max-width: 480px; width: 100%; position: relative;
  border-top: 6px solid var(--blue); box-shadow: var(--sh-lg);
  animation: slideUp .35s ease;
}
@keyframes slideUp { from { transform:translateY(32px); opacity:0; } to { transform:translateY(0); opacity:1; } }
.popup-close {
  position: absolute; top: 14px; right: 14px; width: 30px; height: 30px;
  background: var(--bg); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted); transition: all var(--ease);
}
.popup-close:hover { background: var(--red); color: #fff; }
.popup-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 40px; margin-bottom: 12px;
}
.popup-box h3 {
  font-family: var(--FH); font-size: 26px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 6px;
}
.popup-box > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.popup-success {
  display: none; background: #e8f5e9; border: 1px solid #4caf50;
  border-radius: var(--r); padding: 20px; text-align: center;
  color: #2e7d32; font-weight: 600; line-height: 1.7;
}
.popup-success a { color: var(--blue); }

/* ── BREADCRUMB ────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #64b5f6; }
.breadcrumb span { color: rgba(255,255,255,.95); }

/* ── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3a6e 100%);
  color: #fff; padding: 60px 0 48px;
}
.page-hero h1 {
  font-family: var(--FH); font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900; text-transform: uppercase; line-height: 1.08;
  color: #fff; margin-bottom: 14px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,.85); max-width: 640px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.blog-hero .page-hero { padding-bottom: 40px; }
.blog-meta-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-intro { font-size: 17px; color: rgba(255,255,255,.85); max-width: 680px; }
.blog-date  { font-size: 13px; color: rgba(255,255,255,.6); }

/* ── PAGE LAYOUT (inner pages) ─────────────────────────────────── */
.page-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; align-items: start;
  padding: 52px 0 64px;
}
.page-main { min-width: 0; }
.content-section { margin-bottom: 40px; }
.content-section h2 {
  font-family: var(--FH); font-size: 24px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 3px solid var(--blue);
}
.content-section h3 {
  font-family: var(--FH); font-size: 19px; font-weight: 800;
  color: var(--dark); margin: 22px 0 10px;
}
.content-section p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.content-section ul { margin: 10px 0 16px 22px; list-style: disc; }
.content-section ul li { font-size: 15px; color: var(--muted); margin-bottom: 7px; line-height: 1.65; }

/* CTA box inside page-main */
.cta-box {
  background: linear-gradient(135deg, var(--blue-d), #0f3460);
  color: #fff; padding: 34px 32px; border-radius: var(--r-lg);
  text-align: center; margin-top: 40px;
}
.cta-box h2 {
  font-family: var(--FH); font-size: 26px; font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.cta-box p { opacity: .9; margin-bottom: 20px; font-size: 15px; }

/* ── SIDEBAR ───────────────────────────────────────────────────── */
.page-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 22px; margin-bottom: 20px; box-shadow: var(--sh-sm);
}
.sidebar-widget h3 {
  font-family: var(--FH); font-size: 15px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px; color: var(--dark);
  margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--blue);
}
.sidebar-emergency { background: var(--red); border-color: var(--red); }
.sidebar-emergency h3 { color: #fff; border-color: rgba(255,255,255,.3); }
.sidebar-emergency p { color: rgba(255,255,255,.9); font-size: 14px; margin-bottom: 14px; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 0; font-size: 14px; color: var(--muted);
  transition: all var(--ease);
}
.sidebar-links a::before { content: '›'; color: var(--blue); font-weight: 700; }
.sidebar-links a:hover { color: var(--blue); padding-left: 5px; }
.sidebar-form input,
.sidebar-form select {
  width: 100%; padding: 10px 12px; margin-bottom: 10px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--FB); font-size: 14px; outline: none;
  transition: border-color var(--ease);
}
.sidebar-form input:focus,
.sidebar-form select:focus { border-color: var(--blue); }

/* ── BLOG INDEX ────────────────────────────────────────────────── */
.blog-index-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px;
}
.blog-index-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; transition: transform var(--ease), box-shadow var(--ease);
}
.blog-index-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.blog-index-card h2 {
  font-family: var(--FH); font-size: 20px; font-weight: 800;
  color: var(--dark); margin: 10px 0 9px; line-height: 1.3;
}
.blog-index-card h2 a { color: inherit; }
.blog-index-card h2 a:hover { color: var(--blue); }
.blog-index-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; line-height: 1.65; }

/* ── BLOG POST ─────────────────────────────────────────────────── */
.blog-content h2 {
  font-family: var(--FH); font-size: 22px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin: 2rem 0 1rem;
  padding-bottom: 8px; border-bottom: 2px solid var(--border);
}
.blog-content p  { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; }
.blog-content ul { margin: 8px 0 18px 22px; list-style: disc; }
.blog-content ul li { font-size: 15px; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.blog-content strong { font-weight: 700; color: var(--dark); }
.blog-content a   { color: var(--blue); }
.blog-content a:hover { text-decoration: underline; }
.blog-cta-box {
  background: linear-gradient(135deg, var(--blue-d), #0f3460);
  color: #fff; padding: 32px; border-radius: var(--r-lg);
  margin-top: 32px; text-align: center;
}
.blog-cta-box h3 {
  font-family: var(--FH); font-size: 24px; font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 10px;
}
.blog-cta-box p  { opacity: .9; margin-bottom: 20px; }
.blog-cta-box .btn { margin: 4px; }

/* ── RESPONSIVE: TABLET 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .reviews-grid   { grid-template-columns: repeat(2,1fr); }
  .counties-grid  { grid-template-columns: repeat(2,1fr); }
  .blog-grid      { grid-template-columns: repeat(2,1fr); }
  .blog-index-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid       { grid-template-columns: 1fr; gap: 40px; }
  .form-grid      { grid-template-columns: 1fr; gap: 40px; }
  .process-grid   { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .stat-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat-item:nth-child(even) { border-bottom: none; }
  .page-layout    { grid-template-columns: 1fr 260px; gap: 32px; }
}

/* ── RESPONSIVE: MOBILE 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Top bar */
  .top-bar-left { display: none; }

  /* Header */
  .menu-toggle { display: flex; }
  .header-inner { gap: 10px; }
  .header-phone { font-size: 20px; }
  .btn-emergency { font-size: 11px; padding: 6px 12px; }

  /* Nav — slide-in drawer */
  .main-nav {
    display: none; position: fixed; top: 0; right: 0;
    width: min(300px, 85vw); height: 100dvh;
    background: var(--dark); z-index: 890;
    flex-direction: column; justify-content: flex-start; align-items: stretch;
    padding: 80px 0 40px; overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0,0,0,.4);
    transition: transform .3s ease; transform: translateX(100%);
  }
  .main-nav.open { display: flex; transform: translateX(0); }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-link {
    color: rgba(255,255,255,.8); border-radius: 0;
    padding: 14px 24px; font-size: 16px;
  }
  .nav-link:hover { color: #64b5f6; background: rgba(255,255,255,.07); }
  .dropdown-toggle::after { float: right; }
  .dropdown-menu {
    position: static; box-shadow: none; border: none; min-width: auto;
    background: rgba(255,255,255,.06); border-left: 3px solid var(--blue);
    margin-left: 24px; padding: 4px 0; display: none;
  }
  .dropdown-menu.open { display: block; }
  .dropdown-menu a {
    color: rgba(255,255,255,.65); padding: 9px 16px; font-size: 14px;
    border-left: none;
  }
  .dropdown-menu a:hover { color: #64b5f6; background: transparent; }

  /* Hero */
  .hero { min-height: auto; }
  .hero .container { padding-top: 52px; padding-bottom: 52px; }
  .hero h1 { font-size: clamp(32px,9vw,48px); }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 14px; }
  .trust-item { font-size: 13px; }

  /* Sections */
  section { padding: 60px 0; }
  .services-grid  { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .counties-grid  { grid-template-columns: 1fr 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .blog-index-grid{ grid-template-columns: 1fr; }
  .process-grid   { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .why-features   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .cta-phone      { font-size: 32px; }

  /* Inner pages */
  .page-layout    { grid-template-columns: 1fr; padding: 36px 0 48px; }
  .page-sidebar   { position: static; top: auto; }
  .page-hero      { padding: 44px 0 36px; }
  .page-hero h1   { font-size: clamp(24px,7vw,40px); }
}

/* ── RESPONSIVE: SMALL MOBILE 480px ────────────────────────────── */
@media (max-width: 480px) {
  .container        { padding: 0 16px; }
  .hero h1          { font-size: 30px; }
  .stat-number      { font-size: 42px; }
  .contact-form     { padding: 24px 18px; }
  .popup-box        { padding: 28px 20px; }
  .popup-box h3     { font-size: 22px; }
  .counties-grid    { grid-template-columns: 1fr; }
  .section-title    { font-size: 26px; }
  .cta-section      { padding: 64px 0; }
  .footer-top       { padding: 48px 0 32px; }
  .blog-thumb       { height: 130px; }
  .header-phone     { font-size: 17px; }
  .btn-emergency    { display: none; }
}

/* ── CITY / LOCATION PAGES ──────────────────────────────────────── */
.city-hero { /* uses .page-hero styles — alias */ }
.page-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,.65);
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 14px;
}
.page-breadcrumb a { color: rgba(255,255,255,.75); }
.page-breadcrumb a:hover { color: #64b5f6; }
.city-service-tag {
  display: inline-block; background: rgba(26,111,175,.2); color: #64b5f6;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 40px; margin-bottom: 14px;
}
.content-grid {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start;
  padding: 52px 0 64px;
}
.main-content { min-width: 0; }
.page-content  { min-width: 0; }
.highlight-box {
  background: var(--blue-l); border-left: 4px solid var(--blue);
  border-radius: 0 var(--r) var(--r) 0; padding: 18px 20px; margin: 20px 0;
}
.highlight-box p { font-size: 15px; color: var(--dark); margin: 0; font-weight: 500; }
.city-services-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.city-services-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--muted); line-height: 1.6;
}
.city-services-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.related-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.related-link {
  display: inline-block; padding: 7px 14px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 40px;
  font-size: 13px; color: var(--muted); transition: all var(--ease);
}
.related-link:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Legacy sidebar class aliases */
.sidebar { position: sticky; top: 88px; }
.sidebar-phone {
  display: block; background: var(--red); color: #fff; text-align: center;
  padding: 14px 18px; border-radius: var(--r); font-family: var(--FH);
  font-size: 22px; font-weight: 900; margin-bottom: 14px;
}
.sidebar-phone:hover { background: var(--red-d); color: #fff; }
.sidebar-services, .sidebar-links-list {
  display: flex; flex-direction: column;
}
.sidebar-services a { 
  padding: 9px 0; font-size: 14px; color: var(--muted);
  border-bottom: 1px solid var(--border); transition: all var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.sidebar-services a::before { content: '›'; color: var(--blue); font-weight: 700; }
.sidebar-services a:hover { color: var(--blue); padding-left: 5px; }

/* Features grid used on about page */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
  margin: 20px 0;
}
.feature-item {
  background: var(--bg); border-radius: var(--r); padding: 22px 18px;
  border: 1px solid var(--border);
}
.feature-item h3 {
  font-family: var(--FH); font-size: 17px; font-weight: 800;
  color: var(--dark); margin-bottom: 8px;
}
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Contact page cards */
.contact-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 36px;
}
.contact-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px 20px; text-align: center; transition: all var(--ease);
}
.contact-card:hover { box-shadow: var(--sh-sm); }
.contact-card:first-child { background: var(--blue); border-color: var(--blue); }
.contact-card:first-child * { color: #fff; }
.contact-card:first-child a { color: #fff; }
.contact-card h3 { font-family: var(--FH); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.contact-card p  { font-size: 13px; color: var(--muted); margin-top: 4px; }
.contact-card a  { font-size: 18px; font-weight: 700; color: var(--dark); }
.contact-form-wrap {
  background: var(--bg); padding: 36px; border-radius: var(--r-lg); margin-bottom: 36px;
}
.contact-form-wrap h2 {
  font-family: var(--FH); font-size: 26px; font-weight: 900;
  text-transform: uppercase; color: var(--dark); margin-bottom: 8px;
}

/* Emergency utility class */
.emergency { color: var(--red); font-weight: 700; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid  { grid-template-columns: 1fr 260px; gap: 32px; }
  .contact-cards { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 768px) {
  .content-grid  { grid-template-columns: 1fr; padding: 36px 0 48px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}
