/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #0d2c6e;
  --blue2:   #1a4aad;
  --orange:  #ff5e00;
  --orange2: #ff7b2e;
  --green:   #1db954;
  --light:   #f4f7ff;
  --gray:    #6b7280;
  --border:  #e2e8f0;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(13,44,110,.13);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== STICKY CALL BAR ===== */
.call-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--orange);
  text-align: center;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.call-bar span { color: var(--white); font-weight: 700; font-size: .95rem; }
.call-bar a.call-now {
  background: var(--white);
  color: var(--orange);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: transform .15s;
}
.call-bar a.call-now:active { transform: scale(.97); }
.call-bar .pulse {
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(29,185,84,.6); }
  50%      { box-shadow: 0 0 0 7px rgba(29,185,84,0); }
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--blue);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.logo {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--orange2); }

nav { display: flex; gap: 6px; flex-wrap: wrap; }
nav a {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  transition: background .2s;
}
nav a:hover, nav a.active { background: rgba(255,255,255,.15); color: var(--white); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: var(--white);
  text-align: center;
  padding: 48px 20px 56px;
  position: relative;
  overflow: hidden;
}
.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.04'%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-block;
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.hero h1 {
  font-size: clamp(1.7rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.hero h1 em { color: var(--orange2); font-style: normal; }
.hero p { font-size: 1.05rem; opacity: .9; max-width: 520px; margin: 0 auto 28px; position: relative; }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 900;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 28px rgba(255,94,0,.5);
  transition: transform .15s, box-shadow .15s;
  position: relative;
  letter-spacing: .3px;
}
.btn-call:active { transform: scale(.97); box-shadow: 0 3px 14px rgba(255,94,0,.4); }
.btn-call svg { flex-shrink: 0; }

.btn-call-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(255,94,0,.45);
  transition: transform .15s;
}
.btn-call-sm:active { transform: scale(.97); }

.hero-sub {
  font-size: .82rem;
  opacity: .7;
  margin-top: 14px;
  position: relative;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ===== SECTIONS ===== */
.section { padding: 56px 20px; max-width: 900px; margin: 0 auto; }
.section-center { text-align: center; }
.section-title {
  font-size: clamp(1.3rem, 4vw, 1.9rem);
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}
.section-sub { color: var(--gray); font-size: .97rem; margin-bottom: 32px; }
.divider { width: 48px; height: 4px; background: var(--orange); border-radius: 4px; margin: 12px auto 28px; }

/* ===== DEAL CARDS ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.deal-card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(13,44,110,.18); }
.deal-card.featured { border-color: var(--orange); }
.deal-card-head {
  background: var(--blue);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deal-card.featured .deal-card-head { background: var(--orange); }
.deal-name { font-weight: 800; font-size: 1rem; }
.deal-badge {
  font-size: .72rem;
  font-weight: 700;
  background: rgba(255,255,255,.25);
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
}
.deal-card-body { padding: 20px; }
.deal-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.deal-card.featured .deal-price { color: var(--orange); }
.deal-price span { font-size: .95rem; font-weight: 500; color: var(--gray); }
.deal-features { margin: 14px 0; display: flex; flex-direction: column; gap: 8px; }
.deal-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
}
.feat-check { color: var(--green); flex-shrink: 0; }
.deal-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  padding: 13px;
  border-radius: 8px;
  margin-top: 16px;
  transition: background .2s;
}
.deal-card.featured .deal-cta { background: var(--orange); }
.deal-cta:active { opacity: .9; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--light);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.step p  { font-size: .88rem; color: var(--gray); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: .92rem; color: #444; margin-bottom: 14px; font-style: italic; line-height: 1.65; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: .88rem; }
.reviewer-loc  { font-size: .78rem; color: var(--gray); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 18px 20px;
  font-size: .97rem;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background .15s;
}
.faq-q:hover { background: var(--light); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; color: var(--orange); transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: var(--light);
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding: 16px 20px; font-size: .92rem; color: #444; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: var(--white);
  text-align: center;
  padding: 52px 24px;
}
.cta-banner h2 { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 900; margin-bottom: 10px; }
.cta-banner p  { opacity: .85; margin-bottom: 28px; font-size: 1rem; }
.cta-note { font-size: .8rem; opacity: .65; margin-top: 14px; }

/* ===== PROVIDERS ===== */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.provider-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  color: var(--white);
  text-align: center;
  padding: 40px 20px 48px;
}
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p  { opacity: .85; font-size: .98rem; max-width: 500px; margin: 0 auto 22px; }

/* ===== COVERAGE ===== */
.coverage-form-wrap {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--blue); }
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--blue2); }
.btn-check {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-check:active { opacity: .9; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 40px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 32px;
}
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 14px; font-size: .95rem; }
.footer-col a, .footer-col p { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.8; display: block; }
.footer-col a:hover { color: var(--white); }
.footer-phone { color: var(--orange2) !important; font-weight: 800 !important; font-size: 1.05rem !important; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 24px 0; max-width: 900px; margin-left: auto; margin-right: auto; }
.footer-bottom { max-width: 900px; margin: 0 auto; }
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 8px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.55); }
.footer-links a:hover { color: var(--white); }

/* ===== DISCLAIMER BOX ===== */
.disclaimer-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}
.disclaimer-box p { font-size: .73rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 6px; }
.disclaimer-box p:last-child { margin-bottom: 0; }

/* ===== ICON HELPERS ===== */
.icon-phone::before { content: "📞"; }

/* ===== AVAILABILITY BADGE ===== */
.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(29,185,84,.15);
  border: 1px solid rgba(29,185,84,.3);
  color: var(--green);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===== CALL POPUP ===== */
.call-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 9999;
  align-items: flex-end;
  justify-content: center;
  animation: fadeOverlay .25s ease;
}
.call-popup-overlay.show { display: flex; }

@keyframes fadeOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.call-popup {
  background: var(--white);
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  position: relative;
  animation: slideUp .3s cubic-bezier(.22,.68,0,1.2);
  box-shadow: 0 -8px 40px rgba(0,0,0,.25);
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.call-popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: var(--light);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.call-popup-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(255,94,0,.4);
  animation: popBounce 1.2s ease infinite;
}
@keyframes popBounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}

.call-popup h3 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.3;
}
.call-popup p {
  font-size: .9rem;
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.6;
}

.call-popup .popup-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  padding: 18px 28px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(255,94,0,.45);
  margin-bottom: 14px;
  letter-spacing: .3px;
  text-decoration: none;
  transition: transform .15s;
}
.call-popup .popup-number:active { transform: scale(.97); }

.call-popup .popup-dismiss {
  background: none;
  border: none;
  color: var(--gray);
  font-size: .83rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.call-popup .popup-trust {
  font-size: .75rem;
  color: var(--gray);
  margin-top: 10px;
  opacity: .8;
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--blue);
  border-top: 2px solid rgba(255,255,255,.12);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.mobile-bottom-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.mobile-bottom-nav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,.65);
  font-size: .65rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color .15s;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.mobile-bottom-nav li a .nav-icon { font-size: 1.25rem; line-height: 1; }
.mobile-bottom-nav li a.call-tab {
  background: var(--orange);
  color: var(--white);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 2px;
}
.mobile-bottom-nav li a.active,
.mobile-bottom-nav li a:hover { color: var(--white); }

/* push page content above bottom nav on mobile */
@media (max-width: 600px) {
  body { padding-bottom: 72px; }
  .mobile-bottom-nav { display: block; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .call-bar { flex-direction: column; gap: 8px; padding: 10px 16px; }
  .call-bar span { font-size: .88rem; }
  .call-bar a.call-now { font-size: 1.2rem; padding: 10px 24px; }
  .btn-call { font-size: 1.15rem; padding: 16px 28px; }
  nav { display: none; }
  .hero { padding: 36px 16px 44px; }
  .section { padding: 40px 16px; }
  .cta-banner { padding: 40px 16px; }
  footer { padding: 32px 16px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (min-width: 601px) {
  .mobile-only { display: none !important; }
}
