/* ============================================================
   AM Pest Control Baltimore — Service-page additions
   Loaded AFTER blog.css. Add only what blog.css doesn't cover.
   ============================================================ */

/* Stat grid — same look as the index.html pest-modal stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0 36px;
}
.stat-grid .stat {
  background: linear-gradient(160deg, rgba(196,30,30,0.10), rgba(244,192,34,0.04));
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 20px 18px;
}
.stat-grid .stat strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.05;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-grid .stat span {
  display: block;
  font-size: 13px;
  line-height: 1.45;
  color: #d6b8b8;
}

/* Numbered process steps */
.process-steps {
  list-style: none;
  counter-reset: step;
  margin: 28px 0 36px;
  padding: 0;
}
.process-steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 22px 22px 78px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
}
.process-steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 14px rgba(196,30,30,0.3);
}
.process-steps h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.process-steps p {
  margin: 0;
  color: #ede0e0;
  font-size: 15.5px;
  line-height: 1.55;
}

/* Pricing summary panel (single card) */
.pricing-summary {
  background: linear-gradient(160deg, rgba(196,30,30,0.10), rgba(244,192,34,0.04));
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 32px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 32px;
  align-items: center;
}
.pricing-summary .price-headline {
  text-align: center;
  border-right: 1px solid var(--line-2);
  padding-right: 28px;
}
.pricing-summary .price-headline .from {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.pricing-summary .price-headline .num {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 28px rgba(244,192,34,0.35);
}
.pricing-summary .price-headline .unit {
  display: block;
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 6px;
}
.pricing-summary .price-detail h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px;
}
.pricing-summary .price-detail ul {
  margin: 0 0 0 18px;
  color: #ede0e0;
}
.pricing-summary .price-detail li { margin-bottom: 8px; font-size: 15px; }
.pricing-summary .price-detail li strong { color: var(--ink); }

/* Neighborhood chip cloud */
.neighborhood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 16px;
}
.neighborhood-chips span {
  display: inline-block;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  color: #ede0e0;
  letter-spacing: 0.02em;
}
.neighborhood-chips span:hover {
  border-color: var(--line-2);
  color: var(--ink);
}

/* Why-us mini-grid (4-up condensed version of index.html) */
.why-mini {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0 36px;
}
.why-mini .why-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.why-mini .why-item .icon {
  font-size: 22px;
  color: var(--muted-2);
  margin-bottom: 8px;
  display: block;
}
.why-mini .why-item .title {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.why-mini .why-item .text {
  font-size: 14px;
  line-height: 1.55;
  color: #d6b8b8;
}

/* Related services grid (3-card row below content) */
.related-services {
  margin: 60px 0 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.related-card {
  display: block;
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: 0 10px 30px rgba(196,30,30,0.18);
}
.related-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}
.related-card .name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.related-card .desc {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.related-card .arrow {
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
}
.related-card .price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(244,192,34,0.08);
  border: 1px solid var(--line-2);
  border-radius: 999px;
}

/* Responsive */
@media (max-width: 600px) {
  .pricing-summary {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }
  .pricing-summary .price-headline {
    border-right: none;
    border-bottom: 1px solid var(--line-2);
    padding-right: 0;
    padding-bottom: 22px;
  }
  .pricing-summary .price-headline .num { font-size: 46px; }
  .process-steps li {
    padding: 22px 18px 22px 70px;
  }
  .process-steps li::before {
    width: 38px; height: 38px; font-size: 17px; left: 16px;
  }
}
