/* ============================================================
   ROOT TOKENS — Clean & Light Theme
   ============================================================ */
:root {
  --primary: #16a34a;
  --primary-dark: #14532d;
  --primary-light: #f0fdf4;
  --accent: #f59e0b;
  --dark: #1a2e1a;
  --surface: #ffffff;
  --light: #f7faf7;
  --border: #d1e7d1;
  --text: #1f3a1f;
  --text-muted: #4b6b4b;
  --radius: 10px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.72;
  font-size: 1rem;
}

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

a {
  color: var(--primary);
  transition: color 0.2s;
}
a:hover {
  color: var(--primary-dark);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAV  — dark green bar
   ============================================================ */
header.site-header {
  background: var(--primary-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Top accent stripe */
header.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--primary) 60%,
    transparent 100%
  );
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  max-width: 1200px;
  margin: 0 auto;
  height: 66px;
  gap: 16px;
}

/* Logo */
.logo {
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.88;
  color: #fff;
}

.logo::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 8px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='20' width='28' height='12' rx='2'/%3E%3Cpath d='M4 20 L9 10 h18 l5 10'/%3E%3Crect x='13' y='24' width='10' height='8' rx='1'/%3E%3C/svg%3E");
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.logo img {
  max-height: 44px;
}

/* Nav links */
nav.main-nav {
  flex: 1;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: center;
}

nav.main-nav > ul > li > a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    background 0.18s,
    color 0.18s;
  display: block;
  letter-spacing: 0.01em;
}

nav.main-nav > ul > li > a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Dropdown trigger arrow */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: " ▾";
  font-size: 0.72em;
  opacity: 0.7;
}

/* Dropdown panel */
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 12px;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 8px;
  list-style: none;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block !important;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background 0.15s,
    color 0.15s;
}

.dropdown-menu li a::before {
  content: "→";
  color: var(--primary);
  font-size: 0.8rem;
  opacity: 0;
  transition:
    opacity 0.15s,
    transform 0.15s;
  transform: translateX(-4px);
}

.dropdown-menu li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.dropdown-menu li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Phone number in nav — far right */
.header-inner::after {
  content: "📞 (601) XXX-XXXX";
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  letter-spacing: 0.01em;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  order: 3;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(640px, 78vh, 900px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay-box {
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(2px);
  color: #fff;
  text-align: center;
  padding: 48px 52px;
  max-width: 620px;
  margin: 40px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero-business-name {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-phone {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin: 20px 0 24px;
  letter-spacing: 0.01em;
}

.hero-phone:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-contact {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-contact:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  flex-wrap: wrap;
  letter-spacing: 0.01em;
}

.trust-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ============================================================
   HEADING STRIP
   ============================================================ */
.heading-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 28px 24px;
}

.heading-strip h1 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}

/* ============================================================
   MAIN BODY
   ============================================================ */
main .container {
  padding: 40px 24px 16px;
}

main h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 40px 0 14px;
  color: var(--dark);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 10px;
}

main h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--dark);
}

main p {
  margin: 0 0 18px;
  color: var(--text);
}

main ol:not(.process-steps) {
  margin: 0 0 18px 26px;
}
main ol:not(.process-steps) li {
  margin-bottom: 8px;
}

/* ============================================================
   SERVICE CARDS — 2×2 grid  (redesigned)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin: 28px 0 48px;
}

.service-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(22, 163, 74, 0.1);
  transition:
    box-shadow 0.28s,
    transform 0.28s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  position: relative;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(22, 163, 74, 0.18);
  transform: translateY(-6px);
}

/* Green gradient header zone */
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 34px 0 28px;
  background: linear-gradient(145deg, #14532d 0%, #16a34a 100%);
  color: #fff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Decorative circle behind icon */
.service-icon::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-icon::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--surface);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.service-icon svg {
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.18));
}

/* Card hover — icon zone brightens */
.service-card:hover .service-icon {
  background: linear-gradient(145deg, #166534 0%, #22c55e 100%);
}

.service-card-body {
  padding: 20px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.service-card h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.service-card h3 a:hover {
  color: var(--primary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

/* Arrow link — underline animation */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0 0 3px;
  border-bottom: 2px solid var(--primary);
  align-self: flex-start;
  transition:
    gap 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.card-link:hover {
  gap: 12px;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ============================================================
   PROCESS STEPS  — horizontal stepper
   ============================================================ */
.process-steps {
  list-style: none;
  margin: 36px 0 48px;
  padding: 0;
  counter-reset: steps;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

/* no old vertical spine */
.process-steps::before {
  display: none;
}

.process-steps li {
  counter-increment: steps;
  flex: 1;
  text-align: center;
  padding: 72px 14px 0;
  position: relative;
  margin: 0;
}

/* Numbered circle */
.process-steps li::before {
  content: counter(steps);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.15rem;
  z-index: 2;
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 7px var(--primary);
}

/* Connector line — right edge of circle to right edge of li */
.process-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(50% + 25px);
  right: -1px;
  height: 2px;
  background: linear-gradient(to right, var(--primary) 0%, var(--border) 100%);
  z-index: 1;
}

.process-steps li strong {
  display: block;
  color: var(--dark);
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.process-steps li:not([style]) {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.before-after {
  display: flex;
  gap: 18px;
  margin: 32px 0;
}

.before-after figure {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.before-after figcaption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  font-style: italic;
  color: var(--text-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  margin: 12px 0 34px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  background: var(--surface);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq details[open] {
  box-shadow: var(--shadow-md);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 18px;
  color: var(--dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  font-size: 0.97rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #14532d 0%, #16a34a 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  margin-top: 40px;
}

.cta-section h2 {
  color: #fff;
  margin-top: 0;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 0;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-section a.btn-contact {
  background: #fff;
  color: var(--primary);
  border: none;
  padding: 15px 36px;
  font-size: 0.95rem;
  border-radius: 8px;
  letter-spacing: 0.06em;
}

.cta-section a.btn-contact:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.cta-section a.cta-phone {
  color: #fff;
  font-weight: 800;
  font-size: 1.45rem;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.cta-section a.cta-phone:hover {
  text-decoration: underline;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Intro paragraphs above the grid */
.contact-grid ~ p,
.contact-grid + p {
  margin-top: 8px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 32px 0 0;
  align-items: flex-start;
}

/* ── Form column ── */
.contact-grid .contact-form-col {
  flex: 1 1 440px;
  background: var(--surface);
  border-radius: 18px;
  border-top: 5px solid var(--primary);
  box-shadow: 0 8px 40px rgba(22, 163, 74, 0.12);
  padding: 36px 32px 32px;
}

.contact-form-col h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.contact-form-col h2::after {
  display: none;
}

.contact-form-col > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

/* ── Map column ── */
.contact-grid .contact-map-col {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-map-col h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.contact-map-col h2::after {
  display: none;
}

/* ── Form inputs ── */
form.lead-form label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  margin: 16px 0 6px;
  font-size: 0.88rem;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

form.lead-form input,
form.lead-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: var(--light);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

form.lead-form input:focus,
form.lead-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

form.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

form.lead-form button {
  margin-top: 22px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.03em;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.28);
}

form.lead-form button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22, 163, 74, 0.35);
}

/* ── Map placeholder / iframe ── */
.map-placeholder {
  border: 2px dashed var(--border);
  background: var(--light);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  border-radius: 14px;
  font-size: 0.93rem;
}

.contact-map-col iframe {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

/* ── Info block below map (NAP + service area) ── */
.contact-map-col ~ p,
main .container > p:has(strong:first-child) {
  margin-top: 12px;
}

/* NAP card — the <p> directly after .contact-grid containing the address */
.contact-grid + p,
main > .container > p + p + p + p {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin-top: 28px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* Service area line */
main > .container > p:last-of-type {
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.92rem;
  margin-top: 14px;
}

main > .container > p:last-of-type strong {
  color: #86efac;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 48px 0 90px;
  font-size: 0.93rem;
  border-top: 4px solid var(--primary);
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

footer .footer-col {
  flex: 1 1 230px;
}

footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}
footer ul li {
  margin-bottom: 7px;
}

footer a {
  color: #86c98e;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-disclosure {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-style: italic;
  color: #64748b;
  font-size: 0.88rem;
}

.partner-links {
  max-width: 1100px;
  margin: 12px auto 0;
  padding: 0 24px;
  color: #475569;
  font-size: 0.82rem;
}

/* ============================================================
   STICKY MOBILE QUOTE BAR
   ============================================================ */
.sticky-quote {
  display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    padding: 12px 16px;
  }

  /* Hide phone pill on mobile */
  .header-inner::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  nav.main-nav {
    display: none;
    width: 100%;
    order: 4;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0 4px;
  }

  nav.main-nav.open {
    display: block;
  }

  nav.main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
  }

  nav.main-nav > ul > li > a {
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.9);
  }

  nav.main-nav > ul > li > a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding-left: 16px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 0;
    border-top: none;
    transform: none;
    left: auto;
  }

  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.75);
    border-radius: 4px;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero {
    min-height: clamp(480px, 70vh, 720px);
  }
  .hero-business-name {
    font-size: 1.45rem;
  }
  .hero-phone {
    font-size: 1.3rem;
  }
  .hero-overlay-box {
    padding: 30px 22px;
    border-radius: 12px;
  }

  .heading-strip h1 {
    font-size: 1.35rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-card-body {
    padding: 18px 20px 24px;
  }
  .service-icon {
    padding: 28px 0 22px;
  }
  .service-icon svg {
    width: 44px;
    height: 44px;
  }

  .trust-bar {
    gap: 14px;
    font-size: 0.85rem;
    padding: 12px 16px;
  }

  .before-after {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }
  .cta-section {
    padding: 44px 20px;
  }
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .process-steps {
    flex-direction: column;
    gap: 0;
  }

  .process-steps li {
    text-align: left;
    padding: 0 0 28px 64px;
    min-height: 56px;
  }

  /* Circle on the left */
  .process-steps li::before {
    left: 0;
    transform: none;
    top: 0;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    box-shadow:
      0 0 0 4px #fff,
      0 0 0 6px var(--primary);
  }

  /* Vertical connector — left edge, runs downward */
  .process-steps li:not(:last-child)::after {
    top: 44px;
    left: 21px;
    right: auto;
    width: 2px;
    height: calc(100% - 44px);
    background: linear-gradient(to bottom, var(--primary), var(--border));
  }

  .sticky-quote {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    color: #fff;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  }

  .sticky-quote-toggle {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
  }

  .sticky-quote-form {
    display: none;
    padding: 12px 14px 16px;
  }

  .sticky-quote.open .sticky-quote-form {
    display: block;
  }

  .sticky-quote-form input,
  .sticky-quote-form textarea {
    width: 100%;
    padding: 9px;
    margin-bottom: 8px;
    border: none;
    border-radius: 6px;
    font: inherit;
  }

  .sticky-quote-form textarea {
    min-height: 60px;
  }

  .sticky-quote-form button {
    width: 100%;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 11px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
  }

  footer.site-footer {
    padding-bottom: 120px;
  }
  footer .footer-grid {
    gap: 24px;
  }

  /* Contact page mobile */
  .contact-grid .contact-form-col {
    padding: 24px 18px 22px;
  }
  .contact-grid .contact-map-col {
    flex: 1 1 100%;
  }
}
