/* ============================================================
   Hotline Fumigators — Stylesheet
   Mobile-first. No gradients. Solid brand palette only.
   ============================================================ */

:root {
  --green: #0C2319;        /* Deep Forest Green - primary bg, headings */
  --green-dark: #0B3116;   /* Dark Green - borders, accents */
  --yellow: #F8DF32;       /* Brand Yellow - CTAs, highlights */
  --mint: #E3FFE8;         /* Light Mint - light bg, cards */
  --white: #FFFFFF;
  --text: #0C2319;
  --text-soft: #4a5a52;
  --line: #d6e6dc;
  --shadow-sm: 0 1px 2px rgba(12, 35, 25, 0.06);
  --shadow: 0 6px 18px rgba(12, 35, 25, 0.08);
  --shadow-lg: 0 18px 40px rgba(12, 35, 25, 0.14);
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --header-h: 68px;
  --font-head: "Poppins", "Segoe UI", Tahoma, sans-serif;
  --font-body: "Inter", "Segoe UI", Tahoma, Geneva, sans-serif;
}

/* ---------- 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(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
a, button, .btn, input, select, textarea { touch-action: manipulation; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; font-weight: 700; color: var(--green); letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { color: var(--text-soft); }
.lead { font-size: 1.12rem; color: var(--text-soft); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
.section { padding: 48px 0; }
.section-tight { padding: 44px 0; }
.section-green { background: var(--green); color: var(--white); }
.section-green h1, .section-green h2, .section-green h3 { color: var(--white); }
.section-green p { color: #cfe0d6; }
.section-mint { background: var(--mint); }
.section-dark { background: var(--green-dark); color: var(--white); }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--yellow);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-green .eyebrow, .section-dark .eyebrow { color: var(--green); }
.section-head { max-width: 680px; margin: 0 auto 28px; text-align: center; }
.section-head p { margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--yellow); color: var(--green); }
.btn-primary:hover { background: #f0d420; box-shadow: 0 8px 20px rgba(248, 223, 50, 0.35); }
.btn-secondary { background: var(--green); color: var(--white); }
.btn-secondary:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-ghost { background: var(--mint); color: var(--green-dark); }
.btn-ghost:hover { background: #d4f5dd; }
.btn-light { background: var(--white); color: var(--green); }
.btn-light:hover { box-shadow: var(--shadow); }
.btn-block { width: 100%; }
.btn-lg { padding: 17px 34px; font-size: 1.06rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 3px solid var(--yellow);
}
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 0; }
.nav > .brand { height: 100%; }
.brand-logo {
  max-height: 100%;
  max-width: calc(100vw - 110px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-logo-footer {
  max-height: 70px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: #d4e3da;
  font-weight: 500;
  font-size: 0.96rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); background: rgba(255,255,255,0.06); }
.nav-cta { display: none; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px 22px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: #d4e3da;
  font-weight: 500;
  padding: 15px 12px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--yellow); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu .btn-primary { color: var(--green); }

/* ---------- Hero ---------- */
.hero {
  background: var(--green);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 360px; height: 360px;
  background: var(--green-dark);
  border-radius: 50%;
  opacity: 0.5;
}
.hero::before {
  content: "";
  position: absolute;
  left: -80px; bottom: -140px;
  width: 280px; height: 280px;
  background: var(--green-dark);
  border-radius: 50%;
  opacity: 0.4;
}
.hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; }
.hero h1 { color: var(--white); }
.hero h1 .hl { color: var(--yellow); }
.hero p { color: #cfe0d6; font-size: 1.12rem; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-badge { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; color: #d4e3da; }
.hero-badge svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }

/* Quick quote card */
.quote-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--yellow);
}
.quote-card h3 { color: var(--green); margin-bottom: 4px; }
.quote-card .sub { font-size: 0.92rem; color: var(--text-soft); margin-bottom: 18px; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 14px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--green-dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(11, 49, 22, 0.12);
}
.field .hint { font-size: 0.8rem; color: var(--text-soft); margin-top: 5px; }
.field.error input, .field.error select, .field.error textarea { border-color: #c0392b; }
.field .err-msg { color: #c0392b; font-size: 0.8rem; margin-top: 5px; display: none; }
.field.error .err-msg { display: block; }
.form-note { font-size: 0.82rem; color: var(--text-soft); margin-top: 12px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--green-dark); color: #cfe0d6; padding: 16px 0; }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.9rem; font-weight: 500; }
.trust-item svg { width: 19px; height: 19px; color: var(--yellow); flex-shrink: 0; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
}
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--yellow); line-height: 1; }
.stat .lbl { color: #cfe0d6; font-size: 0.9rem; margin-top: 8px; }
.stat .ico { width: 30px; height: 30px; color: var(--yellow); margin: 0 auto 10px; }
.stat .ico svg { width: 30px; height: 30px; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green-dark); }
.card .ico {
  width: 52px; height: 52px;
  background: var(--mint);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.card .ico svg { width: 30px; height: 30px; color: var(--green-dark); }
.card h3 { margin-bottom: 8px; }
.card h3 svg { width: 22px; height: 22px; color: var(--green-dark); flex-shrink: 0; }
.card p { font-size: 0.96rem; }
.card .card-foot { margin-top: auto; padding-top: 18px; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--green-dark); font-family: var(--font-head); }
.card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card-link:hover svg { transform: translateX(4px); }
.card .price { font-family: var(--font-head); font-weight: 700; color: var(--green); font-size: 1.15rem; }
.card .price small { font-weight: 500; color: var(--text-soft); font-size: 0.78rem; display: block; }
.card .tag {
  display: inline-block; background: var(--yellow); color: var(--green);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}

/* ---------- Process ---------- */
.process-grid { display: grid; gap: 22px; counter-reset: step; }
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: var(--green);
  display: grid; place-items: center; margin-bottom: 16px;
}
.process-step h3 { margin-bottom: 8px; }

/* ---------- Service detail ---------- */
.detail-hero { background: var(--green); color: var(--white); padding: 36px 0 32px; }
.detail-hero h1 { color: var(--white); }
.detail-hero .crumb { font-size: 0.88rem; color: #cfe0d6; margin-bottom: 14px; }
.detail-hero .crumb a { color: var(--yellow); }
.detail-meta { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 20px; }
.detail-meta div { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: #d4e3da; }
.detail-meta svg { width: 18px; height: 18px; color: var(--yellow); }
.detail-hero-icon { width: 64px; height: 64px; background: var(--yellow); border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; }
.detail-hero-icon svg { width: 38px; height: 38px; color: var(--green); }
.list-check { display: grid; gap: 11px; }
.list-check li { display: flex; gap: 11px; align-items: flex-start; color: var(--text-soft); }
.list-check li svg { width: 20px; height: 20px; color: var(--green-dark); flex-shrink: 0; margin-top: 3px; }
.list-check li strong { color: var(--green); font-weight: 600; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.panel h3 { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.panel h3 svg { width: 22px; height: 22px; color: var(--green-dark); }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: 12px; }
.acc-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--green);
  font-size: 1.02rem;
}
.acc-q .acc-icon { width: 22px; height: 22px; color: var(--green-dark); flex-shrink: 0; transition: transform 0.2s ease; }
.acc-q .acc-icon svg { width: 22px; height: 22px; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.acc-a-inner { padding: 0 20px 20px; color: var(--text-soft); }

/* ---------- Blog ---------- */
.post-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; height: 100%; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { height: 130px; background: var(--green-dark); display: grid; place-items: center; position: relative; }
.post-thumb .pest-ico { width: 56px; height: 56px; color: var(--yellow); opacity: 0.85; }
.post-thumb .cat { position: absolute; top: 12px; left: 12px; background: var(--yellow); color: var(--green); font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.post-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.post-body .meta { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 10px; }
.post-body h3 { margin-bottom: 8px; font-size: 1.18rem; }
.post-body p { font-size: 0.94rem; margin-bottom: 14px; }
.post-body .card-link { margin-top: auto; }
.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 18px; }
.article .meta span { color: var(--green-dark); font-weight: 600; }
.article-body p { margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }

/* ---------- Pricing ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--green); color: var(--white); font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; }
.price-table td { color: var(--text-soft); }
.price-table td.svc { color: var(--green); font-weight: 600; }
.price-table td.amt { font-family: var(--font-head); font-weight: 700; color: var(--green-dark); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--mint); }
.includes-list { display: grid; gap: 12px; }
.includes-list li { display: flex; gap: 11px; align-items: center; color: #cfe0d6; }
.includes-list li svg { width: 20px; height: 20px; color: var(--yellow); flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 30px; }
.contact-info { display: grid; gap: 18px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-item .ico { width: 46px; height: 46px; background: var(--mint); border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.contact-info-item .ico svg { width: 24px; height: 24px; color: var(--green-dark); }
.contact-info-item h4 { font-family: var(--font-head); font-size: 1rem; color: var(--green); margin-bottom: 2px; }
.contact-info-item p { font-size: 0.95rem; }
.contact-info-item a { color: var(--green-dark); font-weight: 600; }
.contact-info-item a:hover { color: var(--green); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- How to pay ---------- */
.pay-steps { display: grid; gap: 16px; counter-reset: pay; }
.pay-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.pay-step .n { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.pay-step h4 { font-family: var(--font-head); color: var(--green); margin-bottom: 4px; }
.pay-step p { font-size: 0.95rem; }
.pay-step code { background: var(--mint); color: var(--green-dark); padding: 2px 8px; border-radius: 6px; font-weight: 700; font-family: var(--font-head); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--yellow); color: var(--green); padding: 36px 0; text-align: center; }
.cta-band h2 { color: var(--green); }
.cta-band p { color: var(--green-dark); max-width: 560px; margin: 12px auto 24px; font-weight: 500; }
.cta-band .btn-secondary { background: var(--green); color: var(--white); }

/* ---------- Alerts ---------- */
.alert { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 18px; font-size: 0.95rem; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; }
.alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.alert-success svg { color: var(--green-dark); }
.alert-error svg { color: #a93226; }
.alert-success { background: var(--mint); color: var(--green-dark); border: 1px solid #b6e6c4; }
.alert-error { background: #fdecea; color: #a93226; border: 1px solid #f5c6c0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green); color: #cfe0d6; padding: 44px 0 0; }
.footer-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.footer-col h4 { color: var(--white); font-family: var(--font-head); margin-bottom: 16px; font-size: 1.05rem; }
.footer-col p, .footer-col a { color: #cfe0d6; font-size: 0.94rem; }
.footer-col a:hover { color: var(--yellow); }
.footer-links li { margin-bottom: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--yellow); flex-shrink: 0; margin-top: 3px; }
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background 0.15s ease; }
.social-row a:hover { background: var(--yellow); }
.social-row a:hover svg { color: var(--green); }
.social-row svg { width: 20px; height: 20px; color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 40px; padding: 20px 0 90px; text-align: center; font-size: 0.85rem; color: #9fb3a8; }
.footer-bottom a { color: var(--yellow); }

/* ---------- Floating widget ---------- */
.float-widget {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 27px; height: 27px; }
.float-call { background: var(--yellow); color: var(--green); }
.float-wa { background: #25D366; color: var(--white); }
.float-btn .label {
  position: absolute; right: 66px; background: var(--green); color: var(--white);
  font-size: 0.82rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.15s ease;
}
.float-btn { position: relative; }
.float-btn:hover .label { opacity: 1; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 0.85rem; color: var(--text-soft); padding: 16px 0 0; }
.breadcrumbs a { color: var(--green-dark); font-weight: 600; }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { margin: 0 8px; color: var(--line); }

/* ---------- Small inline icon utility ---------- */
.ic-sm { width: 16px; height: 16px; color: var(--green-dark); flex-shrink: 0; }

/* ---------- Content images ---------- */
.content-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.content-img-tall { aspect-ratio: 4 / 3; }
.img-caption { font-size: 0.82rem; color: var(--text-soft); margin-top: 8px; text-align: center; }

/* Hero with background image */
.hero.has-bg {
  background-image: linear-gradient(rgba(12, 35, 25, 0.82), rgba(12, 35, 25, 0.88)), url("/static/images/04-hotline-fumigators-technician-fumigation-smoke-closeup.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.has-bg::after, .hero.has-bg::before { display: none; }

/* Image-text row (image beside text) */
.img-text-row { display: grid; gap: 28px; align-items: center; }
@media (min-width: 768px) {
  .img-text-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .img-text-row.reverse { direction: rtl; }
  .img-text-row.reverse > * { direction: ltr; }
}

/* Service detail hero image */
.detail-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 24px;
  box-shadow: var(--shadow-lg);
}

/* Blog thumbnail with real image */
.post-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Skip link ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--yellow); color: var(--green); padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */

/* Small phones: compact buttons so pairs fit on one line */
@media (max-width: 520px) {
  .hero-ctas { gap: 8px; }
  .hero-ctas .btn,
  .hero-ctas .btn-lg { padding: 11px 16px; font-size: 0.88rem; }
  .hero-ctas .btn svg { width: 16px; height: 16px; }
}

/* Larger phones / small tablets: simple cards go 2-per-row */
@media (min-width: 520px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

/* Tablets: stats 4-col, forms 2-col, pay-steps 2-col */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .pay-steps { grid-template-columns: 1fr 1fr; }
}

/* Large tablets: grid-4 goes to 3 cols (not 4 — too cramped at this width) */
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  /* Restore comfortable desktop paddings/spacings */
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .card { padding: 26px; }
  .quote-card { padding: 26px; }
  .panel { padding: 26px; }
  .process-step { padding: 28px; }
  .cta-band { padding: 48px 0; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { gap: 36px; }
  .grid { gap: 22px; }
  .hero-badges { gap: 18px; }
  .trust-strip .container { gap: 18px 28px; }
  .footer-grid { gap: 34px; }
  .stat { padding: 26px 20px; }
  .stat .num { font-size: 2.3rem; }
  .post-body { padding: 22px; }
  .post-thumb { height: 150px; }
  .pay-step { padding: 22px 24px; }
  .price-table th, .price-table td { padding: 14px 18px; }
  .detail-hero { padding: 48px 0 40px; }
  .footer-bottom { padding-bottom: 20px; }
}

@media (min-width: 860px) {
  :root { --header-h: 76px; }
  .section { padding: 84px 0; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .hero { padding: 84px 0 92px; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .pay-steps { grid-template-columns: 1fr 1fr 1fr; }
  .float-widget { right: 24px; bottom: 24px; }
}

@media (min-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
