/* Baptist Heating & Air — Custom Styles */
:root {
  --navy: #1a3255;
  --navy-dark: #0f1f36;
  --orange: #e07a10;
  --orange-dark: #c46a09;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

img, video, iframe { max-width: 100%; height: auto; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 14px;
}
.top-bar a { color: #93c5fd; text-decoration: none; }
.top-bar a:hover { color: var(--white); }

/* ===== HEADER / NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "hamburger logo cta-spacer"
    "nav       nav  nav";
  align-items: center;
  gap: 10px 16px;
}
.hamburger { grid-area: hamburger; justify-self: start; }
.logo      { grid-area: logo; justify-self: center; }
nav        { grid-area: nav; justify-self: center; }
.cta-spacer{ grid-area: cta-spacer; width: 44px; }
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.logo-text { line-height: 1.2; }
.logo-img {
  height: 52px;
  width: auto;
  max-width: 100%;
  display: block;
}
@media (max-width: 600px) {
  .logo-img { height: 30px; }
  .header-inner { padding: 8px 12px; }
}
nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 4px;
}
nav a {
  color: rgba(255,255,255,.88);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background .15s;
}
nav a:hover { background: rgba(255,255,255,.12); color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 11px; opacity: .7; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  color: var(--gray-700);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 0;
}
.dropdown-menu a:hover { background: var(--gray-50); color: var(--navy); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 12px; min-width: 44px; min-height: 44px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: .3s;
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 15px;
}
.emergency-banner a { color: var(--white); text-decoration: underline; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 72px 20px 80px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 span { color: #fbbf24; }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .88;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== HERO — SPLIT (image + text) ===== */
.hero-split {
  padding: 56px 20px 64px;
  text-align: left;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-split .hero-text { max-width: 540px; }
.hero-eyebrow {
  font-size: .85rem !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .75;
  margin: 0 0 14px !important;
  max-width: none !important;
}
.hero-split h1 {
  margin: 0 0 16px !important;
  max-width: none !important;
  text-align: left;
}
.hero-split .hero-lede {
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  opacity: .9;
  margin: 0 0 28px !important;
  max-width: 520px !important;
  text-align: left;
}
.hero-split .hero-btns { justify-content: flex-start; }
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  display: block;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-split { text-align: center; padding: 40px 16px 48px; }
  .hero-split .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-eyebrow { text-align: center; }
  .hero-split h1 { text-align: center; }
  .hero-split .hero-lede { margin-left: auto !important; margin-right: auto !important; text-align: center; }
  .hero-split .hero-btns { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 420px; }
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: border-color .15s, background .15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-secondary {
  background: var(--navy);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--navy-dark); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 12px;
  overflow-x: auto;        /* on narrow phones the row can scroll horizontally instead of wrapping */
  -webkit-overflow-scrolling: touch;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;       /* force single row — never stack */
  white-space: nowrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
  flex-shrink: 0;          /* items keep their natural width — overflow scrolls */
}
.trust-item .icon { font-size: 16px; }

/* ===== SECTIONS ===== */
section { padding: 64px 20px; }
.section-alt { background: var(--gray-50); }
.section-dark { background: var(--navy); color: var(--white); }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-dark .section-header p { color: rgba(255,255,255,.8); }

/* ===== PROMISES ===== */
.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.promise-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border-top: 4px solid var(--orange);
}
.promise-icon { font-size: 32px; margin-bottom: 16px; }
.promise-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.promise-card p { color: var(--gray-600); font-size: .95rem; line-height: 1.6; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
  display: block;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { color: var(--gray-600); font-size: .9rem; line-height: 1.5; margin-bottom: 16px; }
.service-card .learn-more {
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.stars { color: #f59e0b; font-size: 18px; margin-bottom: 12px; }
.testimonial blockquote {
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}
.testimonial cite { font-size: .85rem; color: var(--gray-600); font-style: normal; font-weight: 600; }

/* ===== 3D CAROUSEL — service CTAs ===== */
/* Coverflow-style stack: center card front-facing, two adjacent cards rotated
   around Y axis and pushed back in Z. Click an adjacent card to bring it
   forward; auto-rotates on a timer. */
.card-slider {
  position: relative;
  max-width: 760px;
  margin: 0 auto 80px;       /* clear the absolutely-positioned dots + breathing room */
  perspective: 1400px;
  perspective-origin: 50% 50%;
  min-height: 400px;
}
.card-slider .card-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateZ(-600px) rotateY(0deg) scale(.7);
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.22,.61,.36,1),
              opacity   .65s ease,
              filter    .65s ease;
  filter: brightness(.65) saturate(.85);
  will-change: transform, opacity;
}
.card-slider .card-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
  filter: brightness(1) saturate(1);
  z-index: 5;
  box-shadow: none;
}
.card-slider .card-slide.is-left {
  opacity: .85;
  pointer-events: auto;
  transform: translateX(-58%) translateZ(-220px) rotateY(38deg) scale(.86);
  filter: brightness(.75) saturate(.9);
  z-index: 3;
  cursor: pointer;
}
.card-slider .card-slide.is-right {
  opacity: .85;
  pointer-events: auto;
  transform: translateX(58%) translateZ(-220px) rotateY(-38deg) scale(.86);
  filter: brightness(.75) saturate(.9);
  z-index: 3;
  cursor: pointer;
}
.card-slider .card-slide.is-far-left {
  opacity: 0;
  transform: translateX(-110%) translateZ(-500px) rotateY(50deg) scale(.7);
}
.card-slider .card-slide.is-far-right {
  opacity: 0;
  transform: translateX(110%) translateZ(-500px) rotateY(-50deg) scale(.7);
}
@media (max-width: 720px) {
  /* On phones, the 3D spread crowds out the active card — fall back to
     a tighter tilt with smaller adjacent cards. */
  .card-slider { perspective: 1000px; min-height: 440px; }
  .card-slider .card-slide.is-left  { transform: translateX(-72%) translateZ(-260px) rotateY(45deg) scale(.78); }
  .card-slider .card-slide.is-right { transform: translateX( 72%) translateZ(-260px) rotateY(-45deg) scale(.78); }
}
.card-slider .service-card {
  text-align: center;
  padding: 36px 32px;
}
.card-slider .service-icon { font-size: 48px; margin-bottom: 12px; }
.card-slider .service-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card-slider .service-card p { font-size: 1rem; margin-bottom: 20px; }
.card-slider .service-card .learn-more { font-size: 1rem; }
.card-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}
/* When the card-slider runs in 3D mode, every slide is position:absolute and
   the slides stack above the normal-flow dots. Pin the dots below the carousel
   with a high z-index so they're always visible. */
.card-slider .card-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  margin-top: 0;
  z-index: 20;
  flex-wrap: wrap;
  padding: 0 12px;
}
.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--navy);
  opacity: .35;
  padding: 0;
  cursor: pointer;
  transition: background .25s, opacity .25s, transform .25s;
}
.card-dot:hover { opacity: .7; }
.card-dot.is-active { background: var(--orange); opacity: 1; transform: scale(1.25); }

/* ===== QUICK DESTINATIONS GRID ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.dest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  transition: border-color .15s, transform .15s, box-shadow .15s;
  min-height: 110px;
}
.dest-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.dest-card .dest-icon { font-size: 32px; margin-bottom: 8px; }
.dest-card .dest-label { font-size: 1rem; line-height: 1.2; }
.dest-card .dest-sub { font-size: .8rem; font-weight: 500; color: var(--gray-600); margin-top: 4px; }

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
}
.testimonial-slider .testimonial-slide {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.testimonial-slider .testimonial-slide:not(:first-of-type) {
  position: absolute;
  inset: 0;
}
.testimonial-slider .testimonial-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: var(--gray-200);
  padding: 0;
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.testimonial-dot:hover { background: var(--gray-600); }
.testimonial-dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

/* ===== ABOUT SNAPSHOT ===== */
.about-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .about-snapshot { grid-template-columns: 1fr; } }
.about-snapshot h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.about-snapshot p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.7; }
.about-badge {
  background: var(--orange);
  color: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.stat { text-align: center; background: var(--gray-50); padding: 20px; border-radius: 10px; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-label { font-size: .85rem; color: var(--gray-600); margin-top: 4px; }

/* ===== SERVICE AREA ===== */
.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .service-area-content { grid-template-columns: 1fr; } }
.communities {
  columns: 2;
  column-gap: 20px;
}
.communities li { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 6px; list-style: none; padding-left: 16px; position: relative; }
.communities li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-size: .8rem; }

/* ===== OFFERS STRIP ===== */
.offers-strip {
  background: #fff8f0;
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.offer-card {
  background: var(--white);
  border: 2px dashed var(--orange);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}
.offer-amount { font-size: 2rem; font-weight: 800; color: var(--orange); }
.offer-desc { font-size: .9rem; color: var(--gray-700); margin-top: 6px; }
.offer-fine { font-size: .75rem; color: var(--gray-600); margin-top: 8px; }

/* ===== CTA BLOCK ===== */
.cta-block {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 56px 20px;
}
.cta-block h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 12px; }
.cta-block p { font-size: 1.1rem; opacity: .9; margin-bottom: 28px; }
.cta-phone { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; display: block; margin-bottom: 20px; text-decoration: none; color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-block;
}
.btn-white:hover { opacity: .9; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 48px 20px 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
.footer-brand .logo-name { color: var(--white); font-size: 20px; }
.footer-brand p { font-size: .9rem; margin-top: 12px; opacity: .75; line-height: 1.6; }
.footer-links h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .5px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: .9rem; margin-bottom: 8px; opacity: .8; }
.footer-contact a { color: rgba(255,255,255,.8); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
  opacity: .6;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 48px 20px;
}
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 1.05rem; opacity: .85; max-width: 600px; }
.breadcrumb { font-size: .85rem; opacity: .7; margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: white; }

/* ===== PROSE CONTENT ===== */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.prose p { margin-bottom: 16px; line-height: 1.75; color: var(--gray-700); }
.prose ul { margin: 12px 0 20px 24px; }
.prose li { margin-bottom: 8px; line-height: 1.6; }
.prose strong { color: var(--gray-900); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 0; }
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-arrow { font-size: 20px; transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  color: var(--gray-700);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ===== CHECKLIST ===== */
.checklist { list-style: none; }
.checklist li {
  padding: 8px 0 8px 32px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

/* ===== FORM ===== */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.form-submit:hover { background: var(--orange-dark); }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .hamburger { display: block; }
  nav {
    display: none;
    width: 100%;
    background: var(--navy);
    padding: 12px 16px 16px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 4px; align-items: stretch; flex-wrap: nowrap; }
  nav ul li { width: 100%; }
  nav a { display: block; padding: 12px 14px; font-size: 16px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,.1);
    border-radius: 6px;
    margin-top: 4px;
    min-width: 0;
    width: 100%;
  }
  .dropdown-menu a { color: rgba(255,255,255,.85); padding: 10px 14px; }
  .dropdown-menu a:hover { background: rgba(255,255,255,.12); color: white; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-cta { display: inline-block !important; margin-top: 4px; text-align: center; }
}

/* ===== MOBILE LAYOUT TIGHTENING ===== */
@media (max-width: 600px) {
  section { padding: 48px 16px; }
  .hero { padding: 56px 16px 64px; }
  .header-inner { padding: 0 12px; }
  .top-bar, .emergency-banner { padding-left: 12px; padding-right: 12px; font-size: 13px; word-wrap: break-word; }
  .trust-bar-inner { gap: 18px; justify-content: flex-start; }
  .trust-item { font-size: 12px; }
  .trust-item .icon { font-size: 14px; }
  .footer-grid { gap: 28px; padding: 0 4px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promise-card, .service-card, .testimonial { padding: 24px 20px; }
  .offers-strip { padding: 20px 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .communities { columns: 1; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { text-align: center; }
}

/* ===== FLOATING EMERGENCY CALL ===== */
.floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(224,122,16,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s, background .15s;
  animation: floating-call-pulse 2.4s ease-in-out infinite;
}
.floating-call:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(224,122,16,.55), 0 4px 12px rgba(0,0,0,.25);
  animation: none;
}
.floating-call-icon { font-size: 22px; line-height: 1; }
.floating-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.floating-call-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; opacity: .9; }
.floating-call-number { font-size: 16px; font-weight: 800; }

@keyframes floating-call-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(224,122,16,.45), 0 2px 8px rgba(0,0,0,.2); }
  50%      { box-shadow: 0 6px 24px rgba(224,122,16,.45), 0 2px 8px rgba(0,0,0,.2), 0 0 0 14px rgba(224,122,16,0); }
}

@media (max-width: 600px) {
  .floating-call {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    gap: 10px;
  }
  .floating-call-icon { font-size: 20px; }
  .floating-call-number { font-size: 15px; }
  .floating-call-label { font-size: 10px; }
}

/* ===== FLOATING $50-OFF SA CTA — mirrors .floating-call on the opposite side ===== */
.floating-sa {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(26,50,85,.45), 0 2px 8px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.floating-sa:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,50,85,.55), 0 4px 12px rgba(0,0,0,.25);
}
.floating-sa-icon { font-size: 22px; line-height: 1; }
.floating-sa-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.floating-sa-label { font-size: 14px; font-weight: 800; color: #fbbf24; }
.floating-sa-sub   { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; opacity: .85; }

@media (max-width: 600px) {
  .floating-sa {
    bottom: 16px;
    left: 16px;
    padding: 12px 18px;
    gap: 10px;
  }
  .floating-sa-icon { font-size: 20px; }
  .floating-sa-label { font-size: 13px; }
  .floating-sa-sub   { font-size: 10px; }
}

@media print {
  .floating-call { display: none; }
}

/* ===== WAVING FLAG ===== */
@keyframes wave-flag {
  0%   { transform: rotate(0deg) scaleX(1); }
  15%  { transform: rotate(-8deg) scaleX(0.92); }
  30%  { transform: rotate(6deg) scaleX(1.04); }
  45%  { transform: rotate(-5deg) scaleX(0.94); }
  60%  { transform: rotate(4deg) scaleX(1.02); }
  75%  { transform: rotate(-3deg) scaleX(0.97); }
  100% { transform: rotate(0deg) scaleX(1); }
}
.flag-wave {
  display: inline-block;
  animation: wave-flag 2.4s ease-in-out infinite;
  transform-origin: left center;
  font-size: 20px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.phone-link { color: var(--orange); font-weight: 700; text-decoration: none; }
.phone-link:hover { text-decoration: underline; }
.badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}
.badge-navy {
  background: var(--navy);
}
.highlight-box {
  background: #fff8f0;
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;       /* columns top-align so a short sidebar doesn't stretch */
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* The right sidebar (blue box etc.) sticks under the header while the longer
   left column scrolls — keeps the pricing CTA on screen without leaving a tall
   blank area below it on tall pages. */
.two-col > div:last-child {
  position: sticky;
  top: 20px;
}
@media (max-width: 768px) {
  .two-col > div:last-child { position: static; }
}
