/* ============================================================
   service-page.css — Midwest Lot Care service & landing pages
   Matches home.css design tokens. Replaces main.css +
   parking-lot-sweeping-columbus.css on all service pages.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #033D60;
  --navy-dark:  #022D47;
  --blue:       #5597C5;
  --blue-light: #ddeef9;
  --off-white:  #FEFBF4;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --muted:      rgba(0,0,0,0.55);
  --border:     rgba(0,0,0,0.08);
  --radius:     0.9rem;
  --max-w:      980px;
  --font-body:  'Source Sans Pro', system-ui, sans-serif;
  --font-head:  'Raleway', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 106%; scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); }

body.service-page {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  padding-bottom: 110px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.button {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border-radius: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}
.button.primary {
  background: var(--navy);
  color: var(--white);
}
.button.primary:hover { background: var(--navy-dark); }
.button.secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.button.secondary:hover { background: var(--navy); color: var(--white); }
.button.light {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(255,255,255,0.4);
}
.button.light:hover { background: var(--blue-light); }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-nav.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo img { height: 36px; width: auto; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.4rem;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--navy); background: var(--blue-light); }
.nav-links li:last-child a { padding: 0; }
/* Restore button styling when placed inside nav */
.nav-links .button.primary {
  background: var(--navy);
  color: var(--white);
  padding: 0.65rem 1.4rem;
}
.nav-links .button.primary:hover {
  background: var(--navy-dark);
  color: var(--white);
}
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 0.4rem;
  transition: opacity 0.15s;
}
.google-review-link:hover { opacity: 0.7; }
.google-review-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Hero ────────────────────────────────────────────────────── */
.sp-hero {
  background: var(--blue-light);
  border-bottom: 1px solid rgba(85,151,197,0.18);
  padding: 3rem 1.5rem 3.25rem;
  text-align: center;
}
.sp-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.sp-breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}
.sp-breadcrumb a {
  color: var(--navy);
  text-decoration: none;
}
.sp-breadcrumb a:hover { color: var(--navy-dark); text-decoration: underline; }
.sp-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
.hero-line {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
  max-width: 68ch;
  margin: 0 auto 1.1rem;
}
/* Hero pills — non-interactive labels, not buttons */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0;
  margin-bottom: 1.5rem;
}
.hero-pill {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.9rem;
  background: none;
  border: none;
}
.hero-pill::before {
  content: "✓";
  color: var(--blue);
  font-size: 0.85rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ── Page body container ─────────────────────────────────────── */
.sp-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: left;
}

/* ── AI accordion ────────────────────────────────────────────── */
.ai-accordion {
  margin: 2rem auto 0;
  max-width: var(--max-w);
  padding: 0;
  text-align: left;
}
.ai-details {
  border: 1px solid rgba(85,151,197,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  background: var(--white);
}
.ai-details summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  list-style: none;
}
.ai-details summary::-webkit-details-marker { display: none; }
.ai-details summary::before {
  content: "+ ";
  color: var(--blue);
  font-size: 1rem;
}
details[open] .ai-details summary::before { content: "− "; }
.ai-details__body { margin-top: 0.9rem; text-align: left; }

/* ── Sections ────────────────────────────────────────────────── */
.block {
  padding: 2.5rem 0 0;
}
.block-last { padding-bottom: 2rem; }
.block-heading {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 0.6rem;
}
.block-lead {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 68ch;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}
.mini-title {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1rem 0 0.4rem;
}
.lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1rem;
}
.lead.tight {
  font-size: 0.96rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}
.fine {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}
.footnote {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 1.5rem 0 0.5rem;
}
.footnote a { color: var(--muted); }

/* ── Compact list ────────────────────────────────────────────── */
.compact-list {
  padding-left: 1.25rem;
  color: var(--text);
  line-height: 1.6;
}
.compact-list li { margin: 0.35rem 0; font-size: 0.95rem; }

/* ── Card grid ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.card.highlight {
  background: var(--blue-light);
  border-color: rgba(85,151,197,0.2);
}
.card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.card h3 a {
  color: var(--navy);
  text-decoration: none;
}
.card h3 a:hover { text-decoration: underline; }
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}
.card article { /* used in columbus page related section */
  display: contents;
}

/* ── CAM summary ─────────────────────────────────────────────── */
.cam-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}
.cam-summary h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  text-align: center;
}

/* ── Areas ───────────────────────────────────────────────────── */
.areas-paragraph {
  text-align: center;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 72ch;
  margin: 0 auto 1rem;
}

/* ── Pills ───────────────────────────────────────────────────── */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}
/* Non-clickable span: plain text label, no button appearance */
span.pill {
  display: inline-block;
  font-size: 0.86rem;
  color: var(--muted);
}
/* Clickable link: pill button shape to signal interactivity */
a.pill {
  display: inline-block;
  font-size: 0.86rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--blue-light);
  border: 1px solid rgba(85,151,197,0.35);
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}
a.pill:hover {
  background: rgba(85,151,197,0.28);
  text-decoration: none;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq { margin-top: 0.75rem; }
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  background: var(--off-white);
  margin-bottom: 0.6rem;
}
.faq details[open] { background: var(--white); }
.faq summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq p {
  margin-top: 0.7rem;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.55;
}
.faq p a { color: var(--navy); }

/* ── Contact grid ────────────────────────────────────────────── */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ── Sticky CTA ──────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9998;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
.sticky-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.88rem;
  color: var(--text);
}
.sticky-cta__text strong {
  font-family: var(--font-head);
  color: var(--navy);
}
.sticky-cta__actions { display: flex; gap: 0.6rem; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding: 2.5rem 1.5rem 2rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo img { height: 32px; width: auto; opacity: 0.9; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-head);
}

/* ── Responsive — tablet ─────────────────────────────────────── */
@media (max-width: 768px) {
  .sp-hero { padding: 2.25rem 1.25rem 2.5rem; }
  .ai-accordion { padding: 0 1.25rem; }
  .sp-body { padding: 0 1.25rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Responsive — mobile ─────────────────────────────────────── */
@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }

  .sticky-cta__inner { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .sticky-cta__actions { justify-content: stretch; }
  .sticky-cta__actions .button { width: 100%; text-align: center; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-top: 0.75rem; }
  .nav-links a { display: block; padding: 0.85rem 0; }
  .nav-links .button { display: block; text-align: center; }
  .nav-links .google-review-link { display: none; }
}
