/* =========================================================
   DePests - Modern & bold theme
   Brand: navy #12186b, green #3ad52c
   ========================================================= */

:root {
  --navy:        #12186b;
  --navy-dark:   #0a0e45;
  --navy-light:  #252ba0;
  --green:       #3ad52c;
  --green-dark:  #27a81a;
  --green-light: #5fec52;
  --bg:          #ffffff;
  --bg-soft:     #f5f7fb;
  --bg-dark:     #0a0e45;
  --text:        #1b1f3a;
  --text-muted:  #5a6180;
  --text-inverse:#ffffff;
  --border:      #e1e5f0;
  --shadow-sm:   0 1px 3px rgba(10,14,69,.08);
  --shadow-md:   0 6px 20px rgba(10,14,69,.10);
  --shadow-lg:   0 20px 40px rgba(10,14,69,.15);
  --radius:      8px;
  --radius-lg:   14px;
  --transition:  .2s ease;

  --container: 1200px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }

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

.icon { flex-shrink: 0; }

/* ========= Buttons ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-transform: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary { background: var(--green); color: #063a00; border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--secondary:hover { background: var(--navy-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: #fff; border-color: #fff; }
.btn--outline:hover { background: #fff; color: var(--navy); }
.btn--lg { padding: 18px 36px; font-size: 1.0625rem; }

/* ========= Top bar ========= */
.topbar {
  background: var(--navy-dark);
  color: #cbd1ff;
  font-size: .85rem;
  padding: 8px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar__address { display: flex; align-items: center; gap: .4rem; }
.topbar__phone { color: #fff; font-weight: 600; display: flex; align-items: center; gap: .4rem; }
.topbar__phone:hover { color: var(--green-light); }

@media (max-width: 640px) {
  .topbar__address { display: none; }
  .topbar__inner { justify-content: center; }
}

/* ========= Header / Nav ========= */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { max-height: 54px; width: auto; }

.main-nav > ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  padding: 10px 16px;
  color: var(--navy);
  font-weight: 600;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--green-dark); background: var(--bg-soft); }
.main-nav .nav-cta {
  background: var(--green); color: #063a00;
  margin-left: 8px; padding: 10px 22px;
}
.main-nav .nav-cta:hover { background: var(--green-dark); color: #fff; }

/* ===== Click-based submenu (no hover) ===== */
.has-submenu { position: relative; }

/* The Services link uses the same .main-nav a styles as every other nav item.
   We just add a chevron that animates when the dropdown is open. */
.has-submenu__toggle .chevron {
  display: inline-block;
  font-size: .85em;
  margin-left: 2px;
  transition: transform .2s ease;
}
.has-submenu.open .has-submenu__toggle .chevron { transform: rotate(180deg); }

/* Submenu — hidden by default, shown only when parent <li> has .open */
.submenu {
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  z-index: 50;
}
.has-submenu.open > .submenu { display: flex; }

.submenu li { margin: 0; }
.submenu li a {
  padding: 9px 14px;
  border-radius: 4px;
  font-size: .95rem;
  display: block;
}
.submenu li a:hover { background: var(--bg-soft); }
.submenu__overview {
  font-weight: 700 !important;
  color: var(--green-dark) !important;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  padding-bottom: 10px !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open { max-height: 85vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; padding: 10px 20px 20px; gap: 2px; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  /* Mobile submenu collapses inline (still click-toggle) */
  .submenu {
    position: static;
    box-shadow: none;
    padding: 4px 0 4px 14px;
    border-left: 2px solid var(--border);
    margin-left: 16px;
    min-width: 0;
  }
  .submenu-trigger { width: 100%; justify-content: space-between; }
}

/* ========= Hero (SVG-based, no images required) ========= */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a0e45 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: #fff;
  padding: 90px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(58,213,44,.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(95,236,82,.14) 0%, transparent 40%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 1; opacity: .07; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.hero__copy h1 { color: #fff; max-width: 680px; line-height: 1.05; }
.hero__copy h1 .accent { color: var(--green-light); position: relative; display: inline-block; }
.hero__copy h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--green); border-radius: 2px;
}
.hero-sub {
  font-size: 1.18rem; color: #d7dcff;
  max-width: 600px; margin: 1.4rem 0 2rem; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 1.6rem; flex-wrap: wrap;
  margin-top: 2.5rem; color: #cdd2ff; font-size: .95rem;
}
.hero-badge { display: flex; align-items: center; gap: .5rem; }
.hero-badge svg { color: var(--green-light); flex-shrink: 0; }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__house-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  padding: 36px;
  width: 100%; max-width: 380px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.hero__house-svg { width: 100%; height: auto; margin-bottom: 20px; }
.hero__owner-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  margin-bottom: 20px;
  display: block;
}
.hero__stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; text-align: center; }
.hero__stat-num { font-size: 1.7rem; font-weight: 900; color: var(--green-light); line-height: 1; }
.hero__stat-lbl { font-size: .78rem; color: #cdd2ff; text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; }

@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero__content { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ========= Stat band ========= */
.stat-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 50px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.stat-band::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(58,213,44,.2), transparent);
  border-radius: 50%;
}
.stat-band__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; text-align: center; position: relative; z-index: 1;
}
.stat__num { font-size: 2.6rem; font-weight: 900; color: var(--green-light); line-height: 1; }
.stat__lbl { font-size: .9rem; color: #cdd2ff; text-transform: uppercase; letter-spacing: .06em; margin-top: 6px; }

/* ========= Sections ========= */
.section { padding: 70px 0; }
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--navy); color: #fff; }
.section--dark h2 { color: #fff; }
.section__head { text-align: center; max-width: 740px; margin: 0 auto 3rem; }
.section__eyebrow {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .85rem;
  margin-bottom: .5rem;
}
.section__sub { color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section__sub { color: #cdd2ff; }
.section--dark .section__eyebrow { color: var(--green-light); }

/* ========= Grid of service cards ========= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,14,69,.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #e8ffec 0%, #c8f5cc 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 18px;
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.05) rotate(-3deg); }
.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); flex-grow: 1; font-size: .95rem; }
.service-card__link {
  color: var(--navy);
  font-weight: 700;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card__link::after { content: '→'; transition: transform var(--transition); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }

/* ========= Why-us / feature list ========= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature { text-align: left; }
.feature { text-align: center; }
.feature__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(58,213,44,.3);
}
.feature h3 { font-size: 1.15rem; margin-bottom: 6px; }
.feature p { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ========= Pests list pill cloud ========= */
.pest-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 1rem 0 2rem; }
.pest-pill {
  background: #fff;
  border: 2px solid var(--border);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  transition: all var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.pest-pill:hover {
  border-color: var(--green);
  background: #f3fff5;
  color: var(--green-dark);
  transform: translateY(-2px);
}
.pest-pill svg { width: 16px; height: 16px; color: var(--green-dark); }

/* ========= CTA band ========= */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  padding: 64px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.15) 0%, transparent 40%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: .4em; }
.cta-band p { margin-bottom: 1.6rem; font-size: 1.12rem; }
.cta-band .btn--primary {
  background: var(--navy); color: #fff; border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(10,14,69,.4);
}
.cta-band .btn--primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); }

/* ========= Testimonials ========= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.testimonial__stars { color: #f5b400; font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.testimonial__quote { flex-grow: 1; font-style: italic; color: var(--text); }
.testimonial__author { margin-top: 16px; display: flex; align-items: center; gap: 10px; }
.testimonial__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial__name { font-weight: 700; color: var(--navy); }
.testimonial__date { font-size: .85rem; color: var(--text-muted); }
.google-badge {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; font-size: .8rem; color: var(--text-muted);
}

/* ========= Articles ========= */
.articles-list { display: flex; flex-direction: column; gap: 32px; }
.article-card {
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}
.article-card:last-child { border-bottom: none; }
.article-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.article-card__category {
  background: var(--green);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.article-card__date { font-size: .85rem; color: var(--text-muted); }
.article-card__title { font-size: 1.3rem; margin: 0 0 10px; }
.article-card__title a { color: var(--navy); text-decoration: none; }
.article-card__title a:hover { color: var(--green-dark); }
.article-card__excerpt { color: var(--text); margin: 0 0 12px; }
.article-card__link { color: var(--green-dark); font-weight: 600; text-decoration: none; }
.article-card__link:hover { text-decoration: underline; }

/* Single article layout */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article-body { min-width: 0; }
.article-body h3 { color: var(--navy); margin-top: 2rem; }
.article-body p { line-height: 1.8; color: var(--text); }
.article-body a { color: var(--green-dark); }
.article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
  font-size: .9rem;
  color: var(--text-muted);
}
.article-hero__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

/* Sidebar */
.sidebar-card {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-card h3 { margin: 0 0 10px; font-size: 1rem; color: var(--navy); }
.sidebar-card p { font-size: .9rem; color: var(--text); margin: 0 0 16px; }
.sidebar-phone {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.05rem;
}
.sidebar-links { list-style: none; margin: 0; padding: 0; }
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
}
.sidebar-links a:hover { color: var(--green-dark); }

@media (max-width: 800px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { order: -1; }
}

/* ========= About page — owner photo ========= */
.about-owner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}
.about-owner__photo-wrap {
  flex: 0 0 260px;
  position: relative;
}
.about-owner__photo {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
}
.about-owner__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 8px 18px;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.about-owner__badge-name {
  display: block;
  font-weight: 800;
  font-size: .95rem;
}
.about-owner__badge-title {
  display: block;
  font-size: .75rem;
  color: var(--green-light);
  letter-spacing: .04em;
}
.about-owner__bio { flex: 1; padding-top: 4px; }
.about-owner__bio h2 { margin-top: 0; }
@media (max-width: 700px) {
  .about-owner { flex-direction: column; gap: 32px; }
  .about-owner__photo-wrap { flex: none; width: 100%; max-width: 300px; margin: 0 auto; }
}

/* ========= Hero quote form ========= */
.hero-quote-form {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px 22px;
  box-shadow: 0 8px 40px rgba(10,14,69,.18);
  width: 100%;
  max-width: 380px;
}
.hero-quote-form__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green-dark);
}
.hero-quote-form__header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.hero-form__row {
  margin-bottom: 12px;
}
.hero-form__row input,
.hero-form__row select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .97rem;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s;
}
.hero-form__row input:focus,
.hero-form__row select:focus {
  outline: none;
  border-color: var(--green);
}
.hero-form__btn {
  width: 100%;
  margin-top: 4px;
  font-size: 1rem;
}
.hero-form__privacy {
  margin: 12px 0 0;
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ========= Reviews marquee (auto-scrolling) ========= */
.reviews-marquee-section { background: var(--bg-soft); padding-bottom: 80px; }

.google-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.google-stars { color: #f5b400; letter-spacing: 1px; font-size: 1rem; }
.google-rating-text { font-size: .9rem; color: var(--text); }

.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 30px 0 10px;
  /* Soft fade on both edges so cards bleed in/out gracefully */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.reviews-marquee__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 120s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-marquee__track,
.reviews-marquee:focus-within .reviews-marquee__track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* Half because we render the cards twice */
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track { animation: none; }
  .reviews-marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
}

.review-card {
  flex: 0 0 360px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-card__stars {
  color: #f5b400;
  letter-spacing: 2px;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.review-card__quote {
  flex-grow: 1;
  font-style: italic;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.55;
  margin: 0 0 16px;
}
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.review-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 700; color: var(--navy); font-size: .95rem; line-height: 1.2; }
.review-card__sub  { font-size: .8rem; color: var(--text-muted); }

@media (max-width: 640px) {
  .review-card { flex-basis: 280px; padding: 20px; }
  .reviews-marquee__track { animation-duration: 90s; gap: 16px; }
}

/* ========= Service-detail split ========= */
.split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.split__img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

/* Inline illustrations used when there's no photo to show */
.service-illustration {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 30px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.service-illustration::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(58,213,44,.25), transparent 50%);
}
.service-illustration__icon {
  position: relative; z-index: 1;
  width: 140px; height: 140px;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: #063a00;
  box-shadow: 0 12px 30px rgba(58,213,44,.4);
}
.service-illustration__icon svg { width: 80px; height: 80px; }
.service-illustration__caption {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.service-illustration__caption strong { font-size: 1.15rem; }
.service-illustration__caption span { color: #cdd2ff; font-size: .9rem; }

.city-card-graphic {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.city-card-graphic__caption {
  text-align: center;
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.city-card-graphic__caption strong { color: var(--navy); }
.city-card-graphic__caption span { color: var(--text-muted); font-size: .9rem; }

.service-page-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  margin-bottom: 20px;
  display: block;
  box-shadow: var(--shadow-md);
}

/* ========= FAQ Section ========= */
.faq-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-question {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 .75rem;
  line-height: 1.4;
  cursor: default;
}
.faq-question::before {
  content: 'Q: ';
  color: var(--green-dark);
  font-weight: 800;
}
.faq-answer {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--green);
}

/* ========= Forms ========= */
.form-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row.full { grid-column: 1 / -1; }
label { font-weight: 600; color: var(--navy); font-size: .9rem; }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,213,44,.15);
}
textarea { min-height: 130px; resize: vertical; }
.form-notice { font-size: .85rem; color: var(--text-muted); margin-top: 10px; }
.form-response {
  margin-top: 16px; padding: 14px 16px;
  border-radius: 8px; font-weight: 600;
  display: none;
}
.form-response.success { display: block; background: #e8fff1; color: #047a2b; border: 1px solid #5ae09a; }
.form-response.error   { display: block; background: #fff0f0; color: #b30000; border: 1px solid #ffb3b3; }

/* honeypot */
.hp-field { position: absolute; left: -5000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ========= City pages ========= */
.city-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: #fff;
  padding: 60px 0;
}
.city-hero h1 { color: #fff; margin-bottom: .3em; }
.city-hero p { color: #d5daff; font-size: 1.1rem; max-width: 720px; }
.city-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-top: 1.2rem; font-size: .9rem; color: #cdd2ff;
}
.city-meta span { display: inline-flex; align-items: center; gap: .4rem; }

.cities-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 6px 18px;
  list-style: none; padding: 0; margin: 0;
}
.cities-list a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 0;
  color: var(--navy); font-weight: 600; font-size: .95rem;
}
.cities-list a::before {
  content: '›'; color: var(--green-dark); font-weight: 800;
  transition: transform var(--transition);
}
.cities-list a:hover { color: var(--green-dark); }
.cities-list a:hover::before { transform: translateX(3px); }

/* ========= Breadcrumbs ========= */
.breadcrumbs {
  padding: 16px 0; font-size: .9rem; color: var(--text-muted);
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; gap: 8px; padding: 0; margin: 0; }
.breadcrumbs li::after { content: '/'; margin-left: 8px; color: var(--border); }
.breadcrumbs li:last-child::after { content: ''; }

/* ========= Footer ========= */
.site-footer {
  background: var(--navy-dark);
  color: #cbd1ff;
  padding: 60px 0 20px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 40px;
}
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .04em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: #cbd1ff; font-size: .92rem; }
.footer-col a:hover { color: var(--green-light); }
.footer-tag { color: #aab1e6; font-size: .92rem; }
.footer-address { font-style: normal; line-height: 1.7; font-size: .92rem; }
.footer-logo { filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-license { margin-top: 1rem; font-size: .85rem; color: #aab1e6; }
.cities-grid { columns: 2; column-gap: 14px; }
.cities-grid li { break-inside: avoid; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem;
}

@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } .cities-grid { columns: 2; } }

/* ========= Mobile sticky call bar ========= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green);
  color: #063a00;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 -4px 14px rgba(0,0,0,.2);
  z-index: 99;
  align-items: center; justify-content: center; gap: .5rem;
}
@media (max-width: 640px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 55px; }
}

/* ========= Misc ========= */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
