/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: #111111;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }
input, select, textarea { font-family: inherit; outline: none; }

/* ========== CSS VARIABLES ========== */
:root {
  --orange: #FF6A00;
  --dark: #111111;
  --muted: #6B6B6B;
  --border: #E3E3E0;
  --bg-alt: #F7F7F5;
  --white: #ffffff;
  --radius-pill: 100px;
  --radius-card: 16px;
  --max-w: 1100px;
  --header-h: 62px;
  --ticker-h: 36px;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  border-radius: var(--radius-pill); padding: 14px 26px;
  font-weight: 700; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 2px solid var(--orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,106,0,.35); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--dark);
  border-radius: var(--radius-pill); padding: 14px 26px;
  font-weight: 700; font-size: 15px;
  border: 2px solid var(--dark);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,.12); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: #fff;
  border-radius: var(--radius-pill); padding: 14px 26px;
  font-weight: 700; font-size: 15px;
  border: 2px solid rgba(255,255,255,.6);
  transition: transform .2s ease, background .2s ease;
}
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,.25); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark);
  border-radius: var(--radius-pill); padding: 14px 26px;
  font-weight: 700; font-size: 15px;
  border: 2px solid #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

.btn-full { border-radius: 12px; width: 100%; justify-content: center; }

/* ========== SCROLL REVEAL ========== */
.sr { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.sr.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

/* ========== WRAPPER ========== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }

/* ========== FIXED HEADER ========== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--header-h); background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-icon {
  width: 32px; height: 32px; background: var(--orange); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 18px; height: 18px; fill: #fff; }
.logo span { color: var(--orange); }

nav { display: flex; align-items: center; gap: 28px; }
nav a { font-size: 14px; font-weight: 500; color: var(--dark); transition: color .2s; }
nav a:hover { color: var(--orange); }

.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.phone-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--dark);
  transition: border-color .2s;
}
.phone-pill:hover { border-color: var(--orange); }
.phone-pill svg { width: 14px; height: 14px; fill: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== TICKER ========== */
#ticker {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 890;
  height: var(--ticker-h); background: var(--orange); overflow: hidden;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  padding: 0 32px; font-size: 12px; font-weight: 700;
  color: #fff; text-transform: uppercase; letter-spacing: .5px;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== HERO ========== */
#hero {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 0;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.hero-left { padding-bottom: 56px; }
.live-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  font-size: 13px; font-weight: 600; color: #16a34a;
  margin-bottom: 20px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
h1.hero-h1 {
  font-size: 62px; font-weight: 800; letter-spacing: -2px;
  line-height: 1.08; color: var(--dark); margin-bottom: 20px;
}
h1.hero-h1 em { color: var(--orange); font-style: italic; }
.hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.65;
  margin-bottom: 28px; max-width: 440px;
}
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 12px; font-weight: 600; color: var(--dark);
}
.hero-pill span { font-size: 14px; }

.hero-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  overflow: hidden; border: 1px solid var(--border);
}
.hero-img-wrap {
  height: 260px; position: relative; overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.emergency-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: #fff;
  padding: 6px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px;
}
.hero-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.hero-stat {
  padding: 18px 16px; text-align: center;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 4px; font-weight: 500; }

/* ========== BOOKING STRIP ========== */
#booking-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
  padding: 32px 0;
}
.strip-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.strip-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; flex-wrap: wrap; gap: 12px;
}
.strip-header-left h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.strip-header-left p { font-size: 14px; color: var(--muted); margin-top: 2px; }
.slots-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 100px;
  background: #fff7ed; border: 1.5px solid #fed7aa;
  font-size: 12px; font-weight: 700; color: var(--orange);
}
.strip-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px; align-items: stretch;
}
.strip-form input, .strip-form select {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-weight: 500;
  background: #fff; color: var(--dark);
  transition: border-color .2s;
}
.strip-form input:focus, .strip-form select:focus { border-color: var(--orange); }
.strip-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.strip-btn { white-space: nowrap; padding: 13px 22px; border-radius: 10px; }

/* ========== SECTION EYEBROW ========== */
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-size: 40px; font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--dark);
}
.section-sub { font-size: 16px; color: var(--muted); margin-top: 10px; line-height: 1.65; }

/* ========== TRUST PILLARS ========== */
#trust { padding: 72px 0; background: #fff; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px;
}
.trust-card {
  padding: 28px 24px; border-radius: 16px;
  border: 1.5px solid var(--border); background: #fff;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.trust-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.trust-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.trust-card:hover::after { transform: scaleX(1); }
.trust-emoji { font-size: 28px; margin-bottom: 12px; }
.trust-val { font-size: 36px; font-weight: 800; letter-spacing: -1px; color: var(--dark); line-height: 1; }
.trust-title { font-size: 16px; font-weight: 700; margin-top: 6px; color: var(--dark); }
.trust-desc { font-size: 14px; color: var(--muted); margin-top: 6px; line-height: 1.55; }

/* ========== SERVICES ========== */
#services { padding: 72px 0; background: var(--bg-alt); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
.svc-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--orange); }
.svc-arrow {
  position: absolute; top: 20px; right: 20px;
  opacity: 0; transition: opacity .2s ease;
  font-size: 18px; color: var(--orange);
}
.svc-card:hover .svc-arrow { opacity: 1; }
.svc-icon { font-size: 32px; margin-bottom: 12px; }
.svc-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.svc-price { font-size: 14px; font-weight: 700; color: var(--orange); }

.svc-featured {
  grid-column: span 2;
  background: var(--dark); border-color: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.svc-featured:hover { border-color: var(--orange); }
.svc-featured .svc-title { color: #fff; font-size: 22px; }
.svc-featured .svc-desc { color: rgba(255,255,255,.55); }
.svc-featured .svc-price { font-size: 16px; }
.svc-featured .svc-badge {
  display: inline-block; background: rgba(255,106,0,.2); color: var(--orange);
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.svc-big-emoji { font-size: 72px; line-height: 1; flex-shrink: 0; }

/* ========== HOW IT WORKS ========== */
#how { padding: 72px 0; background: var(--dark); }
#how .eyebrow { color: rgba(255,255,255,.5); }
#how .section-title { color: #fff; }
#how .section-sub { color: rgba(255,255,255,.45); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 48px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px; background: rgba(255,255,255,.12); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--dark);
  box-shadow: 0 0 0 2px rgba(255,106,0,.4);
  margin-bottom: 18px;
}
.step-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 12px; }
.step-tag {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  background: rgba(255,106,0,.15); color: var(--orange);
  font-size: 12px; font-weight: 700;
}

.payment-strip {
  margin-top: 40px; background: rgba(255,255,255,.06);
  border-radius: 16px; padding: 24px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.1);
}
.payment-amount { font-size: 32px; font-weight: 800; color: var(--orange); }
.payment-label { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 2px; }
.payment-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.pay-method {
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
}

/* ========== REVIEWS ========== */
#reviews { padding: 72px 0; background: #fff; }
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.rating-block { display: flex; align-items: center; gap: 12px; }
.rating-num { font-size: 40px; font-weight: 800; color: var(--dark); letter-spacing: -1px; }
.rating-stars { display: flex; gap: 2px; }
.rating-stars svg { width: 18px; height: 18px; fill: #f59e0b; }
.rating-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  padding: 24px; border-radius: 16px; border: 1.5px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: var(--orange); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 15px; }
.reviewer-loc { font-size: 13px; color: var(--muted); }
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars svg { width: 14px; height: 14px; fill: #f59e0b; }
.review-text { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 10px; }
.review-date { font-size: 12px; color: var(--muted); }
.google-icon { width: 18px; height: 18px; margin-left: auto; }

/* ========== COVERAGE ========== */
#coverage { padding: 72px 0; background: var(--bg-alt); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zone-card {
  background: #fff; border-radius: 14px; padding: 18px;
  border: 1.5px solid var(--border);
}
.zone-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--dark); margin-bottom: 10px;
}
.zone-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.zone-boroughs { list-style: none; }
.zone-boroughs li { font-size: 13px; color: var(--muted); padding: 2px 0; }
.zone-boroughs li::before { content: '› '; color: var(--orange); font-weight: 700; }

.coverage-right { padding-top: 4px; }
.coverage-right .section-title { margin-bottom: 14px; }
.coverage-right .section-sub { margin-bottom: 24px; }
.coverage-note {
  margin-top: 14px; padding: 14px 18px; border-radius: 10px;
  background: #fff7ed; border: 1.5px solid #fed7aa;
  font-size: 14px; color: #9a3412; font-weight: 500;
}

/* ========== EMERGENCY BAND ========== */
#emergency {
  padding: 64px 0; background: var(--orange);
  position: relative; overflow: hidden;
}
.sos-deco {
  position: absolute; top: 50%; left: -20px; transform: translateY(-50%);
  font-size: 220px; font-weight: 800; color: rgba(255,255,255,.06);
  pointer-events: none; white-space: nowrap; line-height: 1;
  letter-spacing: -8px;
}
.emergency-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.emergency-left h2 {
  font-size: 40px; font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 12px;
}
.emergency-left p { font-size: 16px; color: rgba(255,255,255,.8); max-width: 400px; }
.emergency-right { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ========== FAQ ========== */
#faq { padding: 72px 0; background: #fff; }
.faq-inner { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 16px; font-weight: 700; color: var(--dark);
  text-align: left; gap: 16px; background: none;
}
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 400; color: var(--muted);
  transition: transform .3s ease, background .2s, border-color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a p { padding: 0 0 18px; font-size: 15px; color: var(--muted); line-height: 1.65; }

.faq-cta-card {
  background: var(--dark); border-radius: 16px; padding: 28px;
  color: #fff; margin-bottom: 16px;
}
.faq-cta-card h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.faq-cta-card p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 20px; }

.hours-card { background: var(--bg-alt); border-radius: 16px; padding: 24px; border: 1.5px solid var(--border); }
.hours-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.hours-row:last-child { border-bottom: none; }
.hours-row span:last-child { font-weight: 600; color: var(--orange); }

/* ========== SEO CONTENT ========== */
#seo-content { padding: 72px 0; background: var(--bg-alt); }
.seo-inner { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.seo-text h2 { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.seo-text h3 { font-size: 20px; font-weight: 700; margin: 24px 0 10px; }
.seo-text p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.seo-card { background: #fff; border-radius: 14px; padding: 22px; border: 1.5px solid var(--border); margin-bottom: 14px; }
.seo-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; color: var(--dark); }
.seo-list li { font-size: 14px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.seo-list li:last-child { border-bottom: none; }
.seo-list li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: 13px; }

/* ========== BLOG ========== */
#blog { padding: 72px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; margin-top: 36px; }
.blog-card {
  border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); border-color: var(--orange); }
.blog-img {
  height: 180px; position: relative;
  display: flex; align-items: flex-end; padding: 16px;
}
.blog-card.featured .blog-img { height: 240px; }
.blog-category {
  padding: 4px 12px; border-radius: 100px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  font-size: 11px; font-weight: 700; text-transform: uppercase; color: #fff;
  letter-spacing: .5px;
}
.blog-body { padding: 18px 20px 20px; }
.blog-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.35; }
.blog-card.featured .blog-title { font-size: 20px; }
.blog-excerpt { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read { font-size: 13px; font-weight: 700; color: var(--orange); }

/* ========== FOOTER ========== */
#footer { background: var(--dark); border-top: 4px solid var(--orange); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand .logo-icon { background: var(--orange); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.65; margin-bottom: 18px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.footer-contact a { font-size: 14px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  padding: 5px 12px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6);
}
.badge.stripe { color: #a78bfa; border-color: rgba(167,139,250,.3); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-seo { font-size: 12px; color: rgba(255,255,255,.2); }

/* ========== FLOATING ACTIONS ========== */
.fab-group {
  position: fixed; bottom: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 10px; z-index: 800;
}
.fab {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 700; color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.25); }
.fab-call { background: #16a34a; }
.fab-book { background: var(--orange); }
.fab svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ========== MOBILE DRAWER ========== */
#drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 100%;
  background: #fff; z-index: 950;
  transform: translateX(102%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding-top: var(--header-h);
}
#drawer.open { transform: translateX(0); }
.drawer-nav { padding: 24px 24px; flex: 1; }
.drawer-nav a {
  display: block; font-size: 24px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--dark);
  padding: 16px 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.drawer-nav a:hover { color: var(--orange); }
.drawer-ctas { padding: 24px; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--border); }

/* ========== BOOKING MODAL ========== */
#modal-backdrop {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
#modal-backdrop.open { opacity: 1; pointer-events: all; }

#booking-modal {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1001;
  background: #fff;
  border-radius: 22px 22px 0 0;
  transform: translateY(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  max-height: 90vh; overflow-y: auto;
}
#booking-modal.open { transform: translateY(0); }

.modal-header {
  position: sticky; top: 0; background: #fff; z-index: 10;
  padding: 20px 24px 0;
  border-bottom: 1px solid var(--border);
}
.modal-header-row {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding-bottom: 12px;
}
.modal-title { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.modal-subtitle { font-size: 13px; color: var(--muted); margin-top: 2px; }
.modal-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--border); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); cursor: pointer;
  transition: background .2s, border-color .2s;
}
.modal-close:hover { background: var(--bg-alt); border-color: var(--dark); }
.modal-dots { display: flex; gap: 8px; padding-bottom: 14px; }
.modal-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: background .3s;
}
.modal-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

.modal-body { padding: 24px; }
.modal-step { display: none; }
.modal-step.active { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-field input, .form-field select {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px; font-weight: 500;
  transition: border-color .2s;
}
.form-field input:focus, .form-field select:focus { border-color: var(--orange); }
.form-field-full { grid-column: span 2; }

.date-input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.time-slot {
  padding: 12px 8px; border-radius: 10px; border: 1.5px solid var(--border);
  font-size: 14px; font-weight: 600; text-align: center; cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.time-slot:hover { border-color: var(--orange); background: #fff7ed; }
.time-slot.selected { background: var(--orange); border-color: var(--orange); color: #fff; }
.time-slot.off { opacity: .3; pointer-events: none; }

.payment-summary {
  background: var(--orange); border-radius: 12px; padding: 20px;
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px;
}
.pay-sum-label { font-size: 14px; color: rgba(255,255,255,.8); }
.pay-sum-amount { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.pay-sum-note { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 4px; }

.stripe-box {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 20px;
}
.stripe-logo { font-size: 13px; font-weight: 700; color: #635bff; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.alt-pay { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.alt-pay-btn {
  padding: 12px; border-radius: 8px; border: 1.5px solid var(--border);
  font-size: 13px; font-weight: 700; text-align: center;
  cursor: pointer; transition: background .2s;
}
.alt-pay-btn:hover { background: var(--bg-alt); }
.divider { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.divider span { font-size: 12px; color: var(--muted); white-space: nowrap; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 10px; }

.confirm-content { text-align: center; padding: 20px 0; }
.confirm-emoji { font-size: 64px; margin-bottom: 16px; animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.confirm-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.confirm-sub { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.confirm-ref {
  background: #fff7ed; border: 1.5px solid #fed7aa;
  border-radius: 10px; padding: 16px; margin-bottom: 24px;
}
.confirm-ref-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.confirm-ref-num { font-size: 22px; font-weight: 800; color: var(--orange); margin-top: 4px; letter-spacing: 2px; }

.modal-footer {
  padding: 16px 24px 24px;
  display: flex; gap: 10px;
}
.modal-back {
  padding: 13px 20px; border-radius: 10px;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 700;
  color: var(--muted); cursor: pointer; transition: border-color .2s;
}
.modal-back:hover { border-color: var(--dark); color: var(--dark); }

/* ========== DESKTOP MODAL OVERRIDE ========== */
@media (min-width: 601px) {
  #booking-modal {
    bottom: auto; left: 50%; right: auto;
    top: 50%; transform: translate(-50%, calc(-50% + 40px));
    border-radius: 22px;
    width: 92%; max-width: 560px;
    max-height: 88vh;
    opacity: 0; transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  }
  #booking-modal.open { transform: translate(-50%, -50%); opacity: 1; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-featured { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; }
}

@media (max-width: 600px) {
  :root { --max-w: 100%; }
  .wrap, .header-inner, .strip-inner, .emergency-inner { padding: 0 20px; }
  nav, .phone-pill { display: none; }
  .hamburger { display: flex; }
  #header .btn-primary { display: none; }

  h1.hero-h1 { font-size: 36px; }
  .section-title { font-size: 26px; }

  .hero-inner { grid-template-columns: 1fr; padding: 0 20px 40px; }
  .hero-left { padding-bottom: 0; }

  .strip-form { grid-template-columns: 1fr; }
  .strip-btn { grid-column: span 1; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-featured { grid-column: span 1; flex-direction: column; }
  .svc-big-emoji { font-size: 48px; }

  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .coverage-inner { grid-template-columns: 1fr; }
  .zone-grid { grid-template-columns: 1fr 1fr; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-left h2 { font-size: 28px; }
  .emergency-right { justify-content: center; }
  .faq-inner { grid-template-columns: 1fr; }
  .seo-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fab { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .fab-label { display: none; }
  .fab-group { bottom: 20px; right: 20px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-field-full { grid-column: span 1; }
}
