/* ============================================================
   TABLET — ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-actions .nav-phone { display: none; }
  .hamburger { display: flex; }

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

/* ============================================================
   MOBILE — ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 26px; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; }

  /* Utility bar */
  .utility-bar { flex-direction: column; gap: 4px; padding: 8px 16px; text-align: center; }
  .utility-left { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .utility-right { display: none; }

  /* Nav */
  .nav-inner { padding: 0 16px; }
  .nav-cta   { display: none; }

  /* Section padding */
  .section-pad { padding: 40px 20px; }

  /* Hero */
  .hero {
    min-height: 480px;
    padding: 60px 20px;
    background:
      linear-gradient(rgba(8, 94, 74, 0.55), rgba(115, 145, 138, 0.55)),
      url('../assets/fowlers-kleen-rite-mobile-hero-image.png') center/cover no-repeat;
  }
  .hero-title { font-size: 34px; }
  .hero-tagline { font-size: 15px; }
  .hero-emergency-badge { top: 12px; right: 12px; font-size: 8px; }

  /* Trust strip */
  .trust-strip { flex-wrap: wrap; }
  .trust-item  { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  /* Services */
  .services-primary   { grid-template-columns: 1fr; }
  .services-secondary { grid-template-columns: 1fr; }
  .services-cta-row   { flex-direction: column; align-items: flex-start; }

  /* Steps */
  .steps-grid  { flex-direction: column; }
  .step-arrow  { transform: rotate(90deg); align-self: center; }

  /* Before/after */
  .ba-grid { grid-template-columns: 1fr; }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-frame { max-height: 280px; aspect-ratio: unset; }

  /* Testimonials */
  .testimonials-header { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* Service area */
  .area-inner { grid-template-columns: 1fr; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-inner { grid-template-columns: 1fr; }
  .cta-copy h2 { font-size: 28px; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; padding: 36px 20px 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 14px 20px; }

  /* Mobile sticky CTA — show on mobile */
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 56px; }
}

/* ============================================================
   SMALL MOBILE — ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .utility-bar { display: none; }
  .hero-title  { font-size: 28px; }
  .btn-lg { font-size: 14px; padding: 12px 18px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .cta-inner { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
