/* ═══════════════════════════════════════════════════════════════
   ROKO DRAIN CLEANING — main.css
   Brand: Navy + Teal + Orange
   Fonts: Montserrat (headings) · Open Sans (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
  --navy:         #030C10;
  --teal:         #145A77;
  --teal-dark:    #0e3f55;
  --orange:       #FFA500;
  --orange-dark:  #E69500;
  --sky:          #87CEEB;
  --sky-dark:     #6ab8de;
  --white:        #FFFFFF;
  --light-bg:     #F2F2F2;
  --light-blue-bg:#eef6fb;
  --body-text:    #595959;
  --border:       #DADADA;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 4px;
  --radius:    6px;
  --radius-lg: 8px;
  --radius-xl: 50px;

  --shadow-sm: 0 1px 4px rgba(3,12,16,.06);
  --shadow:    0 3px 16px rgba(3,12,16,.10);
  --shadow-md: 0 6px 28px rgba(3,12,16,.14);

  --container: 1140px;
  --section-py: 72px;

  color-scheme: light;
}

/* ── RESET ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; }
h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 700; }
h4 { font-size: 15px; font-weight: 700; }
p { margin-bottom: 0; }

.section-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.orange-line {
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 12px 0 24px;
}

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-xl);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  text-align: center;
  white-space: nowrap;
}
.btn--orange {
  background: var(--orange);
  color: var(--navy);
}
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); transform: translateY(-1px); }
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── TOPBAR ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.topbar__item { display: flex; align-items: center; gap: 5px; }
.topbar__item svg { color: var(--orange); }
.topbar__sep { color: rgba(255,255,255,.3); }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__hours { font-size: 12px; }
.topbar__phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
}
.topbar__phone:hover { color: var(--orange-dark); }

/* ── NAV ────────────────────────────────────────────────────────── */
.nav {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.14); }
.nav__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav__logo-img { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav__links > li > a,
.dropdown-toggle {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav__links > li > a:hover,
.nav__links > li > a.active,
.dropdown-toggle:hover { background: var(--light-bg); color: var(--teal); }
.nav__links > li > a.active { color: var(--teal); }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }

/* The <ul class="dropdown"> sits directly under the nav button.
   We use visibility/opacity so the 0.2s delay on hide means a quick
   mouse movement to the panel doesn't close it instantly. */
.dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--orange);
  z-index: 200;
  /* delay hiding by 200ms — prevents accidental closes on fast mouse moves */
  transition: opacity .15s ease, visibility 0s linear .2s;
}
/* Invisible bridge above the panel so mouse can move from button → menu */
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .15s ease, visibility 0s linear 0s;
}
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 14px;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--light-blue-bg); color: var(--teal); }

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

.nav__cta { margin-left: 16px; padding: 10px 20px; font-size: 13px; }

/* ── BREADCRUMBS ────────────────────────────────────────────────── */
/* Hero inline breadcrumb (white on dark bg) */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.75); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,.5); }
.breadcrumb span[aria-current] { color: rgba(255,255,255,.9); }

.breadcrumbs { background: var(--light-bg); padding: 10px 0; border-bottom: 1px solid var(--border); }
.breadcrumbs__list { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.breadcrumbs__list li:not(:last-child)::after { content: '›'; color: var(--body-text); margin-left: 8px; font-size: 15px; }
.breadcrumbs__list a { color: var(--teal); }
.breadcrumbs__list a:hover { color: var(--orange); }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 56px 0 24px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo-img { height: 50px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.8);
  transition: color .15s;
}
.footer__contact a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 8px; margin-bottom: 16px; }
.footer__social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background .15s;
}
.footer__social a:hover { background: var(--orange); color: var(--navy); }
.footer__trust { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.footer__trust span { color: rgba(255,255,255,.7); }

.footer h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(255,255,255,.7); transition: color .15s; font-size: 14px; }
.footer ul a:hover { color: var(--orange); }
.footer__areas li { font-size: 13px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--orange); }

/* ── FLOATING CTA ───────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.float-cta__btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(255,165,0,.45);
  transition: background .2s, transform .2s;
}
.float-cta__btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.float-cta__icon { flex-shrink: 0; }
.float-cta__text { display: flex; flex-direction: column; line-height: 1.2; }
.float-cta__text small { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.float-cta__text strong { font-family: var(--font-head); font-size: 15px; font-weight: 800; }

/* ═══════════════════════════════════════════════════════════════
   PAGE COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1a22 0%, #145A77 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 60px 20px;
}
.hero__inner {
  max-width: 640px;
}
.hero__location {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}
.hero h1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero p { color: rgba(255,255,255,.88); font-size: 17px; margin-bottom: 28px; max-width: 540px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: var(--radius-sm);
}

/* ── TRUST STRIP ────────────────────────────────────────────────── */
.trust-strip { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--border);
}
.trust-card {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: border-color .2s;
}
.trust-card:hover { border-top-color: var(--orange); }
.trust-card h3 { font-size: 14px; color: var(--navy); }

/* ── SECTION HELPERS ────────────────────────────────────────────── */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--light-bg); }
.section--light-blue { background: var(--light-blue-bg); }
.section--teal { background: var(--teal); }
.section--navy { background: var(--navy); }

.section__head { margin-bottom: 40px; }
.section__head.center { text-align: center; }
.section__head.center .orange-line { margin-left: auto; margin-right: auto; }
.section__intro { max-width: 620px; margin-top: 16px; }
.section__intro.center { margin: 16px auto 0; }

/* ── TWO-COL GRID ───────────────────────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col--6040 { grid-template-columns: 6fr 4fr; }

/* ── CHECK LIST ─────────────────────────────────────────────────── */
.check-list { margin: 20px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}
.check-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner { padding: 48px 0; }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.82); margin-top: 8px; }

/* ── STATS ──────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,.8); font-weight: 600; }

/* ── SERVICE CARDS ──────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow .2s, border-bottom-color .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); border-bottom-color: var(--orange); }
.service-card h3 { font-size: 16px; color: var(--teal); margin-bottom: 10px; }
.service-card p { font-size: 14px; margin-bottom: 16px; }
.service-card__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.service-card__link:hover { color: var(--orange-dark); }

/* ── WHY CHOOSE ─────────────────────────────────────────────────── */
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.6;
}
.why-list li strong { color: var(--white); }
.why-list li::before {
  content: '✓';
  background: var(--orange);
  color: var(--navy);
  font-weight: 800;
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.why-box {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.why-box h3 { color: var(--white); margin-bottom: 14px; }
.why-box p { color: rgba(255,255,255,.82); font-size: 15px; margin-bottom: 14px; }

/* ── PROCESS ────────────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
}
.step-badge {
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 14px;
}
.process-card h3 { font-size: 15px; margin-bottom: 8px; }
.process-card p { font-size: 14px; }

/* ── EMERGENCY ──────────────────────────────────────────────────── */
.emergency-signs {
  background: #fff8ee;
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px;
  margin: 22px 0;
}
.emergency-signs h3 { font-size: 15px; margin-bottom: 10px; color: var(--navy); }
.emergency-signs li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}
.emergency-signs li::before { content: '⚠'; font-size: 13px; }
.emergency-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
}
.emergency-box h3 { color: var(--white); font-size: 20px; margin-bottom: 14px; }
.emergency-box p { color: rgba(255,255,255,.82); font-size: 15px; margin-bottom: 14px; }
.emergency-phone {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin: 14px 0;
  display: block;
}

/* ── PROBLEM CARDS ──────────────────────────────────────────────── */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border-top: 3px solid var(--orange);
}
.problem-card h3 { font-size: 15px; color: var(--teal); margin-bottom: 8px; }
.problem-card p { font-size: 14px; }

/* ── SERVE BOXES ────────────────────────────────────────────────── */
.serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.serve-box { background: var(--light-bg); border-radius: var(--radius-lg); padding: 30px; }
.serve-box h3 { font-size: 19px; color: var(--teal); margin-bottom: 12px; }
.serve-box p { font-size: 15px; }
.serve-box p + p { margin-top: 12px; }

/* ── REVIEWS ────────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.stars { color: var(--orange); font-size: 17px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; margin-bottom: 18px; font-style: italic; }
.reviewer-name { font-family: var(--font-head); font-weight: 700; font-size: 13px; color: var(--navy); }
.reviewer-city { font-size: 12px; color: var(--teal); margin-top: 2px; }

/* ── SERVICE AREAS ──────────────────────────────────────────────── */
.counties-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.county-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.county-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.city-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.city-tag {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 12px;
  color: var(--navy);
  font-weight: 500;
  transition: background .15s, color .15s, border-color .15s;
}
.city-tag:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 56px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  gap: 14px;
}
.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: transform .2s;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__answer { display: none; padding: 0 0 18px; font-size: 15px; }
.faq__item.open .faq__answer { display: block; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .counties-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    margin: 0;
  }
  .nav__links.open { display: flex; }
  .nav__links > li > a,
  .dropdown-toggle { padding: 13px 20px; border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border-radius: 0; border-top: none; background: var(--light-bg); }
  .has-dropdown:hover .dropdown { visibility: hidden; opacity: 0; pointer-events: none; }
  .has-dropdown.open .dropdown { visibility: visible; opacity: 1; pointer-events: auto; }
  .nav { position: relative; }
}

@media (max-width: 768px) {
  :root { --section-py: 52px; }

  .topbar__left { display: none; }

  .hero { min-height: 420px; }
  .hero__content { padding: 40px 20px; }

  .trust-grid { grid-template-columns: 1fr 1fr; }
  .two-col, .two-col--6040 { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .counties-grid { grid-template-columns: 1fr; }
}

/* ── SERVICE PAGE COMPONENTS ─────────────────────────────────── */

/* Why-grid (6-card icon grid used on service pages) */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.why-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-card h3 { font-size: 15px; color: var(--white); margin-bottom: 6px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,.78); }

/* Process steps (vertical numbered list on dark bg) */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-body h3 { font-size: 16px; color: var(--white); margin-bottom: 6px; }
.step-body p  { font-size: 14px; color: rgba(255,255,255,.78); }

/* Testimonials grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.testimonial-card {
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── FAQ for service pages (.faq-item / .faq-q / .faq-a) ──────── */
/* Mirrors the homepage .faq__item / .faq__btn / .faq__answer style */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 40px 18px 0;
  text-align: left;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  line-height: 1.4;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--teal);
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-text);
}
.faq-a p { margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ── SERVICE AREAS PAGE ────────────────────────────────────────── */
.sa-intro-heading {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 14px;
}
.sa-intro-text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
}
.sa-counties { background: #fff; }
.sa-county {
  padding: 56px 0 40px;
}
.sa-county__name {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 24px;
}
.sa-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.sa-map iframe { display: block; }
.sa-city-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sa-city-btn {
  display: inline-block;
  padding: 12px 22px;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .15s ease, transform .1s ease;
  white-space: nowrap;
}
.sa-city-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  color: var(--navy);
}
.sa-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}
@media (max-width: 600px) {
  .sa-city-btn { padding: 10px 16px; font-size: 13px; }
  .sa-county { padding: 40px 0 28px; }
}

/* ── CITY PAGES (cp-*) ─────────────────────────────────────────── */
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* Intro quote block */
.cp-intro-quote {
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px;
  margin: 24px 0 28px;
  color: var(--body-text);
  line-height: 1.75;
  font-size: 15px;
}

/* Neighbourhood pills */
.cp-nbr-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.cp-nbr-pill {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.cp-nbr-pill a { color: inherit; text-decoration: none; }
.cp-nbr-pill a:hover { color: var(--teal); }

/* Service cards grid */
.cp-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.cp-svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.cp-svc-card--featured { border-top: 3px solid var(--orange); }
.cp-svc-card__icon {
  width: 50px; height: 50px;
  background: var(--light-bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.cp-svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.cp-svc-card p { font-size: 14px; color: var(--body-text); margin-bottom: 14px; line-height: 1.6; }
.cp-svc-card__price {
  display: inline-block;
  background: #e6f4ee;
  color: #1a6b47;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 640px) { .cp-svc-grid { grid-template-columns: 1fr; } }

/* Why list (on dark bg) */
.cp-why-list {
  list-style: none; padding: 0; margin: 0;
}
.cp-why-list li {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.7;
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cp-why-list li:last-child { border-bottom: none; }
.cp-why-list li::before {
  content: '•';
  position: absolute; left: 0;
  color: var(--orange);
  font-size: 18px; line-height: 1.4;
}
.cp-why-list li strong { color: #fff; }

/* Orange checkmark list */
.cp-check-list { list-style: none; padding: 0; margin: 16px 0 0; }
.cp-check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px; color: var(--body-text); line-height: 1.5;
}
.cp-check-list li:last-child { border-bottom: none; }
.cp-check-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  min-width: 26px; height: 26px;
  background: var(--orange); color: #fff;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

/* Orange bullets (inside callout box) */
.cp-orange-bullets { list-style: none; padding: 0; margin: 0; }
.cp-orange-bullets li {
  padding: 6px 0 6px 18px;
  position: relative;
  font-size: 15px; color: var(--body-text); line-height: 1.55;
}
.cp-orange-bullets li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--orange); font-size: 20px; line-height: 1.1; font-weight: 700;
}

/* Urgent callout box */
.cp-urgent-box {
  background: #fff8ee;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin-top: 24px;
}
.cp-urgent-box__title {
  font-weight: 700; font-size: 16px;
  color: var(--navy); margin-bottom: 12px;
}

/* Process step cards */
.cp-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.cp-step-card {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 22px 24px;
  position: relative;
}
.cp-step-badge {
  position: absolute;
  top: 0; right: 18px;
  background: var(--orange); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}
.cp-step-icon { font-size: 26px; display: block; margin-bottom: 12px; }
.cp-step-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cp-step-card p { font-size: 14px; color: var(--body-text); line-height: 1.6; }
@media (max-width: 768px) { .cp-steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cp-steps-grid { grid-template-columns: 1fr; } }

/* Orange-bar H3 */
.cp-section-h3 {
  display: flex; align-items: center; gap: 12px;
  font-size: 19px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
}
.cp-section-h3::before {
  content: '';
  display: block; width: 4px;
  height: 1.15em;
  background: var(--orange); border-radius: 2px; flex-shrink: 0;
}

/* Pricing table */
.cp-price-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 15px; }
.cp-price-table thead tr { background: var(--teal); color: #fff; }
.cp-price-table thead th {
  padding: 13px 18px; text-align: left;
  font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.cp-price-table tbody tr:nth-child(even) { background: var(--light-bg); }
.cp-price-table tbody td {
  padding: 13px 18px; color: var(--body-text);
  border-bottom: 1px solid var(--border);
}
.cp-price-table-wrap { overflow-x: auto; }

/* Signs/local list */
.cp-signs-list { margin-top: 20px; }
.cp-sign-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cp-sign-item:last-child { border-bottom: none; }
.cp-sign-item h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cp-sign-item p { font-size: 15px; color: var(--body-text); line-height: 1.7; margin: 0; }

/* City page local info grid */
.cp-local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 640px) {
  .cp-local-grid { grid-template-columns: 1fr; }
}

/* Pain points grid */
.cp-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.cp-pain-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  border-top: 4px solid var(--teal);
}
.cp-pain-card--urgent {
  border-top-color: var(--orange);
  background: #fff8f0;
}
[data-theme="dark"] .cp-pain-card--urgent {
  background: rgba(255,165,0,.08);
}
.cp-pain-card__icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.cp-pain-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.cp-pain-card p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 640px) {
  .cp-pain-grid { grid-template-columns: 1fr; }
}

/* Service area map 2-col */
.cp-map-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cp-map-wrap iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius-lg); display: block; }
.cp-map-content h2 { margin-bottom: 12px; }
.cp-map-content ul { padding-left: 20px; line-height: 2; margin-top: 8px; }
@media (max-width: 768px) {
  .cp-map-wrap { grid-template-columns: 1fr; gap: 28px; }
  .cp-map-wrap iframe { height: 280px; }
}
