/* =========================================================================
 * Noon Designs Media LLC — landing page styles.
 * Mobile-first; most ad traffic is mobile. Larger screens get progressive
 * enhancements via min-width media queries at the bottom.
 * ========================================================================= */

:root {
  --navy: #0b1f3a;
  --navy-2: #12294b;
  --accent: #ff7a00;       /* high-contrast CTA orange */
  --accent-dark: #e96b00;
  --green: #1f9d57;
  --ink: #1a222e;
  --muted: #5b6675;
  --line: #e3e8ef;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --gold: #ffb400;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(11, 31, 58, 0.10);
  --maxw: 1120px;
  --header-h: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  /* room for the sticky bottom call bar on mobile */
  padding-bottom: 64px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.center { text-align: center; }

h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; }
h2 { font-size: 1.6rem; }
p { margin: 0 0 1em; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------------------- Buttons / Call CTAs ---------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 800; border: none; cursor: pointer;
  border-radius: 999px; padding: 14px 22px;
  text-decoration: none; line-height: 1.1;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-call {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 16px rgba(255, 122, 0, .35);
}
.btn-call:hover { background: var(--accent-dark); color: #fff; }
.btn-hero { font-size: 1.2rem; padding: 18px 30px; }
.call-icon { font-size: 1.1em; }
.call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.call-label { font-size: .68rem; font-weight: 700; opacity: .9; text-transform: uppercase; letter-spacing: .03em; }
.call-number { font-size: 1rem; }

/* ---------------------- Sticky header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: var(--header-h); }

.logo { display: flex; flex-direction: column; line-height: 1.05; text-decoration: none; }
.logo:hover { text-decoration: none; }
.logo-mark { font-weight: 900; font-size: 1.18rem; color: #fff; letter-spacing: -.01em; white-space: nowrap; }
/* Plain-language service descriptor under the legal name (not a brand). */
.logo-tag { font-size: .64rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

.main-nav { display: none; gap: 22px; }
.main-nav a { color: #d7deea; font-weight: 600; font-size: .95rem; }
.main-nav a:hover { color: #fff; text-decoration: none; }

.header-call { padding: 9px 14px; }
.header-call .call-number { font-size: .95rem; }

/* ---------------------- Hero ------------------------------------------- */
.hero {
  background:
    linear-gradient(180deg, rgba(11,31,58,.86), rgba(11,31,58,.94)),
    radial-gradient(1200px 400px at 80% -10%, #1c3b6b 0, transparent 60%),
    var(--navy);
  color: #eef3fa;
  padding: 44px 0 52px;
}
.eyebrow {
  display: inline-block; color: var(--gold); font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; font-size: .76rem;
  margin: 0 0 12px;
}
.hero h1 { color: #fff; font-size: 2rem; margin-bottom: .35em; }
.hero .hl { color: var(--gold); }
.hero .lede { font-size: 1.08rem; color: #d6e0ee; max-width: 620px; margin-bottom: 1.4em; }
.hero .lede strong { color: #fff; }

.trust-strip {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-wrap: wrap; gap: 10px 18px;
}
.trust-strip li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .92rem; color: #e7eefa;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 8px 13px; border-radius: 999px;
}

/* ---------------------- Sections --------------------------------------- */
.section { padding: 46px 0; }
.section.alt { background: var(--bg-alt); }
.section-lede { color: var(--muted); max-width: 640px; margin-bottom: 1.6em; font-size: 1.04rem; }
.section h2 { margin-bottom: .35em; }

/* About / disclaimer */
.disclaimer-box {
  background: #fff8ef; border: 1px solid #ffd9a8;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius); padding: 18px 20px; margin-top: 18px;
}
.disclaimer-box h3 { color: var(--accent-dark); font-size: 1.02rem; margin-bottom: .4em; }
.disclaimer-box p { margin: 0; color: #5a4a36; font-size: .92rem; }

/* ---------------------- Grids ------------------------------------------ */
.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; box-shadow: var(--shadow);
}
.card-ico, .feature-ico { font-size: 1.9rem; margin-bottom: 8px; }
.card h3, .feature h3 { font-size: 1.1rem; margin-bottom: .35em; }
.card p, .feature p { margin: 0; color: var(--muted); font-size: .95rem; }

.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-align: left;
}

.center .btn { margin-top: 22px; }

/* Vehicle types */
.vehicle-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.vehicle-list li {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px; font-weight: 600;
}
.vehicle-list span { font-size: 1.4rem; }

/* How it works */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 16px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px 22px 70px; position: relative; box-shadow: var(--shadow);
}
.step-num {
  position: absolute; left: 18px; top: 20px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 900;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.step h3 { margin-bottom: .3em; font-size: 1.08rem; }
.step p { margin: 0; color: var(--muted); }

/* Testimonials */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; margin: 0; box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 8px; }
.review blockquote { margin: 0 0 .8em; font-size: .98rem; color: var(--ink); }
.review figcaption { color: var(--muted); font-weight: 600; font-size: .9rem; }

/* FAQ */
.faq-list { display: grid; gap: 10px; max-width: 760px; }
.faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 18px;
}
.faq-list summary {
  cursor: pointer; font-weight: 700; color: var(--navy);
  padding: 14px 0; list-style: none; position: relative; padding-right: 28px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 2px; top: 12px;
  font-size: 1.4rem; color: var(--accent); font-weight: 700; line-height: 1;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0 0 14px; color: var(--muted); }

/* Coverage */
.coverage-badge {
  display: inline-block; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px; font-weight: 700; color: var(--navy);
}

/* Final CTA band */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff; padding: 50px 0;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #cdd8e8; margin-bottom: 1.4em; }

/* ---------------------- Footer ----------------------------------------- */
.site-footer { background: #07172b; color: #b9c5d6; padding: 40px 0 24px; font-size: .92rem; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.site-footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .8em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: #b9c5d6; }
.footer-col a:hover { color: #fff; }
.footer-logo .logo-mark { font-size: 1.25rem; }
.footer-tag { color: #8da0b8; font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; margin-top: 4px; }
.footer-contact { margin-top: 14px; line-height: 1.7; }
.footer-contact a { color: var(--accent); }
.footer-call { margin-top: 4px; }
.footer-hours { margin-top: 10px; color: #8da0b8; font-size: .85rem; }

.footer-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 30px; padding-top: 20px; }
.footer-disclaimer { color: #8093ab; font-size: .8rem; line-height: 1.6; max-width: 900px; }
.footer-copy { color: #6f829b; font-size: .82rem; margin: 8px 0 0; }

/* ---------------------- Sticky bottom call bar (mobile) ---------------- */
.sticky-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--green); color: #fff; font-weight: 800; font-size: 1.05rem;
  padding: 15px 16px; text-decoration: none;
  box-shadow: 0 -4px 16px rgba(0,0,0,.22);
}
.sticky-call-bar:hover { color: #fff; text-decoration: none; background: #1a8b4c; }

/* =========================================================================
 * Tablet / desktop enhancements
 * ========================================================================= */
@media (min-width: 720px) {
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.7rem; }
  .hero { padding: 64px 0 72px; }
  .logo-tag { font-size: .62rem; }
  .grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .vehicle-list { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
}

@media (min-width: 940px) {
  .main-nav { display: flex; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-list { grid-template-columns: repeat(6, 1fr); }
  /* Enough room in the header; the bottom bar is mainly a mobile aid. */
  .sticky-call-bar { display: none; }
  body { padding-bottom: 0; }
}

@media (min-width: 720px) and (max-width: 939px) {
  .logo-tag { display: block; }
}
