/* ============================================================
   DeLand Pest Pros — Design System
   Palette: deep navy + warm amber, cool paper background
   Type: Space Grotesk (display) + Inter (body)
   Motif: property-line / inspection-map — dashed boundary
   rules, corner-bracket cards, pin-style neighborhood tags.
   ============================================================ */

:root {
  --navy-900: #0a1b30;
  --navy-800: #0f2540;
  --navy-700: #1b3a5c;
  --amber-500: #e8a33d;
  --amber-600: #c98826;
  --paper: #f5f6f4;
  --paper-dim: #eceee9;
  --ink: #1c2027;
  --ink-soft: #4a5160;
  --line: #dbdfd9;
  --green: #4b7f52;
  --white: #ffffff;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(10, 27, 48, 0.06), 0 8px 24px rgba(10, 27, 48, 0.06);
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}
h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.1rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; max-width: 68ch; }
a { color: var(--navy-700); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.2em; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap;
}
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-call {
  background: var(--amber-500);
  color: var(--navy-900);
}
.btn-call:hover { background: var(--amber-600); }
.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy-700);
  color: var(--navy-700);
}
.btn-outline-navy:hover { background: var(--navy-800); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  background: var(--navy-900);
  border-bottom: 3px dashed var(--amber-500);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  white-space: nowrap;
}
.brand-mark {
  width: 34px; height: 34px; flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #d9e0ea;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: var(--white); }
.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-call .phone-text {
  color: var(--white);
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  text-decoration: none;
  font-size: 1.05rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #3a4d66;
  border-radius: var(--radius);
  color: var(--white);
  padding: 8px 10px;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 22px;
    border-bottom: 3px dashed var(--amber-500);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 { color: var(--white); }
.hero .lede {
  color: #c7d1e0;
  font-size: 1.15rem;
  max-width: 52ch;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px dashed #33486b;
  color: #aebada;
  font-size: 0.92rem;
}
.trust-row strong { color: var(--white); display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; }

.hero-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--amber-500);
}
.hero-panel h3 { margin-bottom: 12px; }
.hero-panel ul { list-style: none; padding: 0; margin: 0 0 18px; }
.hero-panel li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.hero-panel li:last-child { border-bottom: none; }
.hero-panel .btn { width: 100%; justify-content: center; }

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-head { max-width: 62ch; margin-bottom: 34px; }
.section-head p { color: var(--ink-soft); }

/* corner-bracket card, used for services / process / trust */
.grid {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.card::before, .card::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--amber-500);
  border-style: solid;
}
.card::before { top: -1px; left: -1px; border-width: 3px 0 0 3px; }
.card::after { bottom: -1px; right: -1px; border-width: 0 3px 3px 0; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; }
.card .card-link { font-weight: 600; font-size: 0.92rem; text-decoration: none; }

/* process steps — a real sequence, numbering is warranted */
.steps { counter-reset: step; }
.steps .step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px dashed var(--line);
}
.steps .step:first-child { border-top: none; }
.step-num {
  counter-increment: step;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--amber-600);
  min-width: 2.2ch;
}
.step-num::before { content: counter(step); }

/* neighborhood pins */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--navy-800);
  font-weight: 500;
}
.area-tag:hover { border-color: var(--amber-500); }
.area-tag .pin { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); flex-shrink: 0; }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--amber-600); font-size: 1.3rem; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 12px; color: var(--ink-soft); }

/* CTA band */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  padding: 54px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c7d1e0; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* Reviews */
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.review-stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 8px; }
.review-name { font-weight: 600; margin-top: 10px; font-size: 0.9rem; color: var(--ink-soft); }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding: 16px 0 0;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: #aebada;
  padding: 48px 0 24px;
  border-top: 3px dashed var(--amber-500);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-grid h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #aebada; text-decoration: none; font-size: 0.92rem; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #22344f;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Sticky mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--amber-500);
  z-index: 200;
  padding: env(safe-area-inset-bottom, 0px) 0 0;
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
}
@media (max-width: 760px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 58px; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 40px 0 44px;
  border-bottom: 3px dashed var(--amber-500);
}
.page-hero h1 { color: var(--white); margin-bottom: 6px; }
.page-hero p { color: #c7d1e0; }

/* Two-column content + sidebar (service/location pages) */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .content-layout { grid-template-columns: 1fr; }
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.sidebar-card h4 { margin-bottom: 10px; }
.pest-not-covered-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

/* v3 trust + deep-content additions */
.trust-strip{background:#071d36;color:#fff;padding:14px 0;border-top:1px solid rgba(255,255,255,.08)}.trust-mini{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;text-align:center;font-size:.88rem}.trust-mini strong{color:#E8A33D}.deep-note{border-left:4px solid #E8A33D;background:#f8fafc;padding:18px 20px;margin:24px 0}.entity-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin:20px 0}.entity-list>div{border:1px solid #dfe5ec;border-radius:10px;padding:16px;background:#fff}@media(max-width:760px){.trust-mini,.entity-list{grid-template-columns:1fr}.trust-mini{text-align:left}}

/* Campaign disclaimer image */
.campaign-disclaimer-wrap{margin:34px 0 20px;padding-top:28px;border-top:1px solid #263a5a}.campaign-disclaimer{display:block;width:100%;height:auto;border-radius:8px}.blog-meta{display:flex;flex-wrap:wrap;gap:12px;color:var(--ink-soft);font-size:.9rem;margin:10px 0 22px}.article-note{background:#fff7e8;border-left:4px solid var(--amber-500);padding:18px 20px;border-radius:0 10px 10px 0;margin:22px 0}.topic-map{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}.topic-map a{display:inline-block;padding:8px 12px;border:1px solid var(--line);border-radius:999px;text-decoration:none;background:#fff;color:var(--navy-900);font-weight:600}.resource-list li{margin-bottom:9px}.blog-card .kicker{margin-bottom:10px}.blog-card p{color:var(--ink-soft)}

@media(max-width:700px){.campaign-disclaimer-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}.campaign-disclaimer{min-width:760px;max-width:none}}
