/* 808 Pest Control - Global Styles */
:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --blue-mid: #1e4d9b;
  --accent: #e8f4ff;
  --sky: #3a8fcb;
  --teal: #00b4d8;
  --white: #ffffff;
  --off-white: #f8faff;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --text: #1e293b;
  --cta-orange: #f97316;
  --cta-orange-dark: #ea6c0a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo span.highlight { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.nav-cta {
  background: var(--cta-orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
}

.nav-cta:hover {
  background: var(--cta-orange-dark) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a5490 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 24px 80px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,0.2);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  position: relative;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.hero h1 .highlight {
  color: var(--teal);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-orange);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.btn-primary:hover {
  background: var(--cta-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
}

/* ── SECTION BASE ── */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 50px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}

.trust-item .icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--teal));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,61,107,0.12);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s;
}

.service-card a:hover { gap: 8px; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-item {
  text-align: center;
  padding: 32px 20px;
}

.why-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-loc {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-orange);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}

.btn-call:hover {
  background: var(--cta-orange-dark);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 8px;
  transition: all 0.2s;
}

.btn-text:hover {
  background: rgba(255,255,255,0.22);
}

/* ── NEIGHBORHOOD GRID ── */
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.neighborhood-link {
  display: block;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--blue);
  transition: all 0.18s;
  text-align: center;
}

.neighborhood-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* ── LOCAL PAGE SPECIFIC ── */
.local-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a5490 100%);
  padding: 70px 24px 60px;
  text-align: center;
}

.local-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.local-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 30px;
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); }

/* ── FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: 'Sora', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--off-white); }

.faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-phone-large {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  margin-top: 12px;
}

/* ── FLOATING CALL BAR (mobile) ── */
.float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 20px;
  flex-direction: row;
  gap: 10px;
}

.float-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.float-call { background: var(--cta-orange); color: white; }
.float-sms { background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.3); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .float-cta { display: flex; }

  body { padding-bottom: 80px; }

  .trust-bar-inner { gap: 20px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── PEST-SPECIFIC BADGES ── */
.pest-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  border: 1px solid rgba(26,61,107,0.15);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

.pests-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

/* Schema / hidden SEO content */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── ALTERNATING BG ── */
.bg-alt { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ── CONTENT IMAGES ── */
.img-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.content-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.content-img-wide {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .img-row-2 { grid-template-columns: 1fr; }
  .content-img, .content-img-wide { height: 200px; }
}

/* ── BLOG INDEX ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,61,107,0.12);
  border-color: var(--sky);
}

.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-body p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sky);
  font-weight: 600;
  font-size: 0.87rem;
  transition: gap 0.2s;
}
.blog-card-link:hover { gap: 8px; }

/* ── BLOG POST ── */
.blog-post-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, #1a5490 100%);
  padding: 70px 24px 60px;
  text-align: center;
}

.blog-post-hero .breadcrumb { margin-bottom: 20px; }

.blog-post-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 14px;
  line-height: 1.2;
}

.blog-post-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.blog-post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.blog-post-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin: 48px 0 14px;
}

.blog-post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
}

.blog-post-body p {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.82;
  margin-bottom: 18px;
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 22px;
  margin-bottom: 18px;
}

.blog-post-body li {
  font-size: 1.02rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 6px;
}

.blog-post-body strong { color: var(--navy); }

.blog-post-body a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.blog-post-body a:hover { color: var(--blue); }

.blog-inline-cta {
  background: var(--accent);
  border: 1.5px solid rgba(26,61,107,0.15);
  border-radius: 12px;
  padding: 22px 26px;
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-inline-cta p {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.97rem;
}

@media (max-width: 600px) {
  .blog-inline-cta { flex-direction: column; align-items: flex-start; }
}

/* ── NEIGHBORHOOD GUIDE ARTICLES ── */
.neighborhood-guide {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}

.nbhd-guide-intro {
  font-size: 1.03rem;
  color: var(--gray);
  line-height: 1.8;
  margin: 18px 0 32px;
  max-width: 860px;
}

.nbhd-pest-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}

.nbhd-pest-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.2s;
}

.nbhd-pest-badge:hover { border-color: var(--teal); }

.nbhd-guide-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.nbhd-guide-main h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 28px 0 12px;
}

.nbhd-guide-main h3:first-child { margin-top: 0; }

.nbhd-guide-main p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
}

.nbhd-guide-main p:last-child { margin-bottom: 0; }

.nbhd-guide-main strong { color: var(--navy); }

.nbhd-local-box {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 90px;
}

.nbhd-local-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gray-light);
}

.nbhd-local-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nbhd-local-box li {
  display: flex;
  gap: 11px;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.55;
}

.nbhd-local-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.nbhd-local-label {
  font-weight: 700;
  color: var(--navy);
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.nbhd-guide-closing {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1.5px solid var(--gray-light);
}

.nbhd-guide-closing h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.nbhd-guide-closing p {
  font-size: 0.96rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 14px;
  max-width: 860px;
}

.nbhd-guide-closing p:last-child { margin-bottom: 0; }

.nbhd-guide-closing strong { color: var(--navy); }

@media (max-width: 860px) {
  .nbhd-guide-body { grid-template-columns: 1fr; }
  .nbhd-local-box { position: static; }
}

/* ── HAWAII PEST CONTROL GUIDE ── */
.guide-section {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
}

.guide-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.guide-header {
  text-align: center;
  margin-bottom: 64px;
}

.guide-header .section-title { margin-bottom: 14px; }

.guide-header p {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.guide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}

.guide-split-reverse .guide-split-img { order: -1; }

.guide-split-text h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.guide-split-text p {
  font-size: 0.97rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 14px;
}

.guide-split-text p:last-child { margin-bottom: 0; }

.guide-split-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 48px rgba(10,22,40,0.14);
  display: block;
}

.guide-pests-label {
  text-align: center;
  margin-bottom: 28px;
}

.guide-pests-label h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.guide-pests-label p {
  font-size: 0.97rem;
  color: var(--gray);
}

.pest-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.pest-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
  border-radius: 14px;
  padding: 26px 22px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.pest-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--sky));
}

.pest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10,22,40,0.1);
  border-color: var(--sky);
}

.pest-card-emoji {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.pest-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pest-card p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.62;
}

.guide-wide-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  margin-bottom: 72px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
}

.guide-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}

.guide-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

.guide-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.guide-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 56px;
  border-top: 1.5px solid var(--gray-light);
}

.guide-two-col-item h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-two-col-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.78;
  margin-bottom: 12px;
}

.guide-two-col-item p:last-child { margin-bottom: 0; }

.guide-col-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .guide-split { grid-template-columns: 1fr; gap: 36px; }
  .guide-split-reverse .guide-split-img { order: 0; }
  .guide-split-img img { height: 260px; }
  .pest-card-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-two-col { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 500px) {
  .pest-card-grid { grid-template-columns: 1fr; }
  .guide-wide-img { height: 200px; }
}
