/* ===========================================================================
   JET CITY HAULING — brand stylesheet
   Brand green pulled from the logo: #90C038
   ========================================================================= */

:root {
  /* Brand */
  --green:      #90C038;
  --green-600:  #7BAA2C;
  --green-700:  #628A20;
  --green-soft: #EAF4D8;
  --green-glow: rgba(144, 192, 56, .35);

  /* Ink / neutrals */
  --ink:    #13171B;
  --ink-2:  #1B2127;
  --ink-3:  #2A323B;
  --paper:  #FFFFFF;
  --mist:   #F4F7EF;
  --line:   #E4E8DE;
  --text:   #1A1F25;
  --muted:  #5C6670;
  --muted-2:#8A929B;

  --radius:   16px;
  --radius-sm:10px;
  --shadow:   0 18px 50px -22px rgba(19, 23, 27, .45);
  --shadow-sm:0 6px 20px -10px rgba(19, 23, 27, .35);
  --maxw: 1180px;

  --ff-display: 'Anton', 'Arial Narrow', sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 .5em; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--mist { background: var(--mist); }
.section--ink { background: var(--ink); color: #EAEEF2; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-700); background: var(--green-soft);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
.section--ink .eyebrow { color: var(--green); background: rgba(144,192,56,.12); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; letter-spacing: -.02em; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }
.section--ink .section-head p { color: #AEB7C0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-body); font-weight: 700; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--green); color: #13251f; box-shadow: 0 12px 26px -10px var(--green-glow); }
.btn--primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 18px 34px -12px var(--green-glow); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19,23,27,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }
.brand-name { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: #D7DCE2; font-weight: 600; font-size: .98rem; transition: color .15s; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { color: #fff; font-weight: 800; font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 18px; height: 18px; color: var(--green); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: 6px; }
.nav-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 540px at 78% -10%, rgba(144,192,56,.22), transparent 60%),
    linear-gradient(180deg, #161B20 0%, #0F1316 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px; mask-image: radial-gradient(800px 500px at 70% 0%, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; padding: 76px 0 84px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; color: #EAF4D8;
  background: rgba(144,192,56,.14); border: 1px solid rgba(144,192,56,.4);
  padding: 8px 15px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-glow); }
.hero h1 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.8rem, 6.4vw, 5rem); letter-spacing: .01em; text-transform: uppercase;
  line-height: .96; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--green); display: inline-block; }
.hero-sub { font-size: 1.18rem; color: #C2CAD2; max-width: 540px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px 26px; list-style: none; padding: 0; margin: 0; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: #DDE3E9; font-size: .98rem; }
.hero-points svg { width: 20px; height: 20px; color: var(--green); flex: none; }

.hero-card {
  background: linear-gradient(180deg, #1E252C, #171C21);
  border: 1px solid rgba(255,255,255,.09); border-radius: 22px; padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card img { margin: 0 auto 16px; max-height: 180px; width: auto; filter: drop-shadow(0 14px 26px rgba(0,0,0,.5)); }
.hero-card .quote-title { text-align: center; font-weight: 800; font-size: 1.25rem; color: #fff; margin-bottom: 4px; }
.hero-card .quote-note { text-align: center; color: #9AA3AC; font-size: .92rem; margin: 0 0 22px; }
.hero-card .form-row { margin-bottom: 12px; }
.hero-card label { display: block; font-size: .8rem; font-weight: 600; color: #AEB7C0; margin-bottom: 6px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 13px 14px; border-radius: 11px; border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04); color: #fff; font-family: inherit; font-size: .98rem;
}
.hero-card input::placeholder { color: #79828c; }
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus { outline: 2px solid var(--green); border-color: transparent; }
/* readable options when the dropdown is open (was white-on-white) */
.hero-card select { color: #fff; }
.hero-card select option { color: #14181C; background: #fff; }
.hero-card .form-fine { text-align: center; color: #8A929B; font-size: .8rem; margin: 12px 0 0; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.06); }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding-top: 22px; padding-bottom: 22px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: #D7DCE2; font-weight: 600; font-size: .96rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--green); flex: none; }

/* ---------- Services grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--green); }
.card-ico {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: var(--green-soft); color: var(--green-700); margin-bottom: 18px;
}
.card-ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.18rem; font-weight: 800; }
.card p { color: var(--muted); margin: 0 0 16px; font-size: .98rem; }
.card-link { font-weight: 700; color: var(--green-700); display: inline-flex; align-items: center; gap: 6px; font-size: .95rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .15s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; position: relative; display: flex; flex-direction: column;
}
.price-card.is-popular { border-color: var(--green); box-shadow: var(--shadow); }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #13251f; font-weight: 800; font-size: .72rem; letter-spacing: .06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.price-fill { font-family: var(--ff-display); text-transform: uppercase; color: var(--ink); font-size: 1.45rem; letter-spacing: .02em; margin-bottom: 6px; }
.price-amt { font-size: 2rem; font-weight: 800; color: var(--green-700); }
.price-amt small { font-size: .9rem; color: var(--muted); font-weight: 600; }
.price-desc { color: var(--muted); font-size: .9rem; margin-top: 10px; }
.price-note { text-align: center; color: var(--muted); margin-top: 26px; font-size: .96rem; }
.price-includes { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 30px; list-style: none; padding: 0; }
.price-includes li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.price-includes svg { width: 19px; height: 19px; color: var(--green); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step-num {
  font-family: var(--ff-display); font-size: 2.4rem; color: var(--green);
  line-height: 1; margin-bottom: 12px; display: block;
}
.step h3 { font-size: 1.2rem; font-weight: 800; color: #fff; }
.step p { color: #AEB7C0; margin: 0; }

/* ---------- Why us ---------- */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 54px; align-items: center; }
.why-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 20px; }
.why-list li { display: flex; gap: 15px; }
.why-ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--green-soft); color: var(--green-700); display: grid; place-items: center; }
.why-ico svg { width: 24px; height: 24px; }
.why-list h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 3px; }
.why-list p { margin: 0; color: var(--muted); font-size: .98rem; }
.why-media { border-radius: var(--radius); overflow: hidden; background: var(--ink); padding: 40px; display: grid; place-items: center; box-shadow: var(--shadow); }
.why-media img { max-height: 320px; width: auto; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; text-align: center; }
.stat b { display: block; font-family: var(--ff-display); font-size: 2rem; color: var(--green-700); line-height: 1; }
.stat span { font-size: .86rem; color: var(--muted); font-weight: 600; }

/* ---------- Service area ---------- */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-link {
  display: flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 600; transition: all .15s;
}
.area-link svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.area-link:hover { border-color: var(--green); background: var(--green-soft); transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.stars { color: #F5A623; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review p { margin: 0 0 18px; font-size: 1rem; }
.review-by { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #13251f; display: grid; place-items: center; font-weight: 800; }
.review-by b { display: block; font-size: .96rem; }
.review-by span { font-size: .84rem; color: var(--muted); }

/* ---------- Leave-a-review callout ---------- */
.review-cta {
  background: linear-gradient(180deg, #1E252C, #161B20); color: #fff;
  border-radius: var(--radius); padding: 48px 32px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.08);
}
.review-cta .stars { color: #F5A623; margin-bottom: 14px; }
.review-cta h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 800; letter-spacing: -.02em; }
.review-cta p { color: #C2CAD2; max-width: 540px; margin: 0 auto 26px; }
.review-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; background: var(--paper); overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 20px 22px; font-weight: 700; font-size: 1.05rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green-700); font-weight: 400; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { color: var(--green-700); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq .faq-body p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(110deg, var(--green-700), var(--green) 65%);
  color: #14251c; position: relative; overflow: hidden;
}
.cta-band .container { position: relative; z-index: 2; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px; padding-top: 56px; padding-bottom: 56px; }
.cta-band h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; max-width: 640px; letter-spacing: -.02em; }
.cta-band p { margin: 8px 0 0; font-weight: 600; opacity: .85; }
.cta-band .btn--dark { box-shadow: 0 16px 30px -12px rgba(0,0,0,.4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #AEB7C0; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-brand img { height: 64px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .96rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: #AEB7C0; font-size: .96rem; transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-contact a { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.footer-contact .hours { color: #AEB7C0; font-weight: 400; font-size: .9rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .86rem; color: var(--muted-2); }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--green); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: radial-gradient(900px 420px at 80% -20%, rgba(144,192,56,.18), transparent 60%), linear-gradient(180deg, #161B20, #0F1316); color: #fff; padding: 66px 0 60px; }
.page-hero .breadcrumb { font-size: .88rem; color: #9AA3AC; margin-bottom: 16px; }
.page-hero .breadcrumb a:hover { color: var(--green); }
.page-hero h1 { font-family: var(--ff-display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: .01em; margin-bottom: 14px; }
.page-hero h1 .accent { color: var(--green); }
.page-hero p { color: #C2CAD2; font-size: 1.12rem; max-width: 640px; margin: 0 0 26px; }
.page-hero .hero-actions { margin-bottom: 0; }

/* prose for city/service body copy */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; font-weight: 800; margin-top: 1.4em; }
.prose h3 { font-size: 1.25rem; font-weight: 800; margin-top: 1.2em; }
.prose p, .prose li { color: var(--text); }
.prose ul { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 18px 0; }
.prose ul li { display: flex; gap: 10px; }
.prose ul li::before { content: "✓"; color: var(--green-700); font-weight: 800; flex: none; }

.two-col { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.side-card { background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: sticky; top: 96px; }
.side-card h3 { font-size: 1.2rem; font-weight: 800; }
.side-card .phone-big { font-size: 1.6rem; font-weight: 800; color: var(--green-700); display: block; margin: 6px 0 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; font-size: .85rem; font-weight: 600; color: var(--muted); }

/* ---------- Mobile nav panel ---------- */
.mobile-menu { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 54px 0 64px; }
  .hero-card { max-width: 480px; }
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .why { grid-template-columns: 1fr; gap: 36px; }
  .area-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .two-col { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-phone span { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .cards, .reviews, .area-grid, .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trustbar .container { gap: 14px; }
  .trust-item { font-size: .9rem; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
}

/* Mobile menu open state (toggled by JS) */
body.menu-open .mobile-menu {
  display: block; position: fixed; inset: 76px 0 0; z-index: 49;
  background: var(--ink); padding: 26px 22px;
}
body.menu-open .mobile-menu ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
body.menu-open .mobile-menu a { display: block; color: #EAEEF2; font-weight: 600; font-size: 1.15rem; padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.07); }
body.menu-open { overflow: hidden; }
