/* ========== 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); }
nav .header-menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
nav .header-menu li { margin: 0; padding: 0; }
nav .header-menu li a { font-size: 14px; font-weight: 500; color: var(--dark); transition: color .2s; }
nav .header-menu li a:hover,
nav .header-menu li.current-menu-item > a { 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 1fr;
  grid-template-rows: auto auto;
  gap: 40px 32px;
  padding-bottom: 40px;
}
.footer-brand      { grid-column: 1; grid-row: 1 / 3; }
.footer-col--areas    { grid-column: 2 / 5; grid-row: 1; }
.footer-col--services { grid-column: 2;     grid-row: 2; }
.footer-col--company  { grid-column: 3;     grid-row: 2; }
.footer-col--franchise { grid-column: 4 / 6; grid-row: 2; }
.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-col ul.footer-areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.footer-col ul.footer-areas-list--3col { grid-template-columns: 1fr 1fr 1fr; }
.footer-areas-list .footer-areas-all { grid-column: 1 / -1; margin-top: 4px; }

/* ── Footer Franchise CTA ─────────────────────────────────────────────────── */
.footer-franchise-cta {
  background: linear-gradient(135deg, rgba(255,111,0,.12) 0%, rgba(255,111,0,.05) 100%);
  border: 1.5px solid rgba(255,111,0,.35);
  border-radius: 12px;
  padding: 20px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-franchise-cta::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(255,111,0,.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-franchise-cta__icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.footer-franchise-cta__tagline {
  font-size: 14px;
  color: #fff;
  margin-bottom: 6px;
}
.footer-franchise-cta__tagline strong {
  color: var(--orange);
}
.footer-franchise-cta__desc {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-franchise-cta__btn {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(255,111,0,.35);
  width: 100%;
  text-align: center;
}
.footer-franchise-cta__btn:hover {
  background: #e55e00;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,111,0,.5);
}
.footer-franchise-cta__note {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  margin-bottom: 0;
}
.footer-col--franchise h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.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-legal { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal a { color: rgba(255,255,255,.4); text-decoration: none; }
.footer-legal a:hover { color: #fff; }

/* ========== 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-whatsapp  { background: #25d366; }
.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 .drawer-menu { list-style: none; margin: 0; padding: 0; }
.drawer-nav .drawer-menu li { margin: 0; padding: 0; }
.drawer-nav a,
.drawer-nav .drawer-menu li 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,
.drawer-nav .drawer-menu li.current-menu-item > a { 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; }
  .footer-brand      { grid-column: 1 / 3; grid-row: auto; }
  .footer-col--areas    { grid-column: 1 / 3; grid-row: auto; }
  .footer-col--services { grid-column: 1;     grid-row: auto; }
  .footer-col--company  { grid-column: 2;     grid-row: auto; }
  .footer-col--franchise { grid-column: 1 / 3; grid-row: auto; }
  .footer-col ul.footer-areas-list--3col { grid-template-columns: 1fr 1fr 1fr; }
  .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-brand, .footer-col--areas, .footer-col--services, .footer-col--company, .footer-col--franchise { grid-column: 1; grid-row: auto; }
  .footer-col ul.footer-areas-list--3col { grid-template-columns: 1fr 1fr; }
  .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; }
}


/* ========== BOOKING FORM ========== */
.fmtn-booking-section { background: #f8f9fa; padding: 64px 0; }
.booking-inner { max-width: 640px; margin: 0 auto; padding: 0 24px; }
.booking-header { text-align: center; margin-bottom: 32px; }
.booking-header h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.booking-header p { color: #555; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.booking-form .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.booking-form label { font-size: 14px; font-weight: 600; color: #333; }
.booking-form .req { color: var(--orange); }
.booking-form input { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 12px 14px; font-size: 15px; transition: border-color .2s; width: 100%; }
.booking-form input:focus { border-color: var(--orange); }
.card-element { border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 14px; background: #fff; }
.card-errors { color: #ef4444; font-size: 13px; margin-top: 6px; min-height: 18px; }
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.booking-legal { font-size: 12px; color: #888; text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.booking-msg { padding: 14px 18px; border-radius: 8px; margin-top: 16px; font-weight: 500; display: none; }
.booking-msg--success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; }
.booking-msg--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ========== SERVICE / LOCATION / BOROUGH PAGES ========== */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.fmtn-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  color: #fff;
  padding: 120px 0 64px;
  position: relative;
  overflow: hidden;
}
.fmtn-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,.18) 0%, transparent 65%);
  pointer-events: none;
}
.fmtn-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ff9a44 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero-subtitle {
  font-size: 18px;
  opacity: .8;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.fmtn-hero .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.5);
  background: transparent;
}
.fmtn-hero .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  box-shadow: none;
}
.hero-trust {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 8px;
  flex-shrink: 0;
}
.trust-item {
  text-align: center;
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-size: 24px; font-weight: 800; color: var(--orange); line-height: 1.1; }
.trust-item span { font-size: 11px; opacity: .6; text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; display: block; }

/* Service meta bar */
.service-meta-bar {
  display: flex;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 36px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.meta-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1.5px solid var(--border);
  position: relative;
}
.meta-item:last-child { border-right: none; }
.meta-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 6px;
}
.meta-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -.5px;
}

/* service-card / services-grid defined in location page section above */

/* ── Location page ─────────────────────────────────────────────────────────── */

/* Intro block */
.location-intro {
  margin: 40px 0 0;
}
.location-intro p {
  font-size: 17px;
  line-height: 1.85;
  color: #333;
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--orange);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  max-width: 860px;
}

/* Services section */
.location-services {
  margin: 48px 0 0;
}
.location-services > h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.location-services > h2::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 0;
}
.service-card {
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 22px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.service-card::after {
  content: '→';
  position: absolute;
  top: 22px;
  right: 20px;
  font-size: 18px;
  color: var(--border);
  transition: color .2s, transform .2s;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(255,106,0,.13);
  transform: translateY(-3px);
}
.service-card:hover::after {
  color: var(--orange);
  transform: translateX(3px);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  padding-right: 28px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.service-card .price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 100px;
  padding: 5px 14px;
  align-self: flex-start;
  margin-top: auto;
}

/* Postcodes section */
.location-postcodes {
  margin: 40px 0 0;
  padding: 24px 28px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.location-postcodes h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  flex-shrink: 0;
  margin: 0;
}
.postcode-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.postcode-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .3px;
  transition: border-color .15s, background .15s;
}
.postcode-chip:hover {
  border-color: var(--orange);
  background: #fff7ed;
}

/* borough-intro stays as-is but inherits location-intro improvements */
.borough-intro {
  padding: 40px 0 0;
}
.borough-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  max-width: 720px;
}

/* borough-postcodes — already styled as pill in borough section */
.breadcrumb { padding: 24px 0 40px; font-size: 14px; color: #888; }
.breadcrumb a { color: var(--orange); }

/* Breadcrumb */
.fmtn-breadcrumb {
  padding: 14px 0 28px;
  font-size: 13px;
  color: #888;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.fmtn-breadcrumb a { color: var(--orange); text-decoration: none; }
.fmtn-breadcrumb a:hover { text-decoration: underline; }
.fmtn-breadcrumb .bc-sep { margin: 0 6px; color: #bbb; }
.fmtn-breadcrumb span[aria-current] { color: #444; font-weight: 600; }

/* Borough page wrapper */
.fmtn-service-page,
.fmtn-location-page,
.fmtn-borough-page,
.fmtn-booking-page { padding: 0 0 48px; }
.service-body, .borough-body { max-width: 720px; }

/* Borough section headings */
.fmtn-location-page h2,
.fmtn-borough-page h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 20px;
  color: var(--dark);
}

/* Borough intro */
.borough-intro {
  padding: 40px 0 32px;
  font-size: 17px;
  line-height: 1.85;
  color: #333;
}

/* Borough content sections — alternating card style */
.fmtn-borough-page section {
  margin-bottom: 8px;
}
.borough-benefits,
.borough-why-us,
.borough-process,
.borough-trust {
  padding: 36px 40px;
  border-radius: 16px;
  margin-bottom: 12px;
}
.borough-benefits {
  background: #fff;
  border: 1.5px solid var(--border);
}
.borough-why-us {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
}
.borough-process {
  background: var(--dark);
  color: #fff;
}
.borough-process h2 { color: #fff; }
.borough-trust {
  background: #fff;
  border: 1.5px solid var(--border);
}

/* Benefits list */
.borough-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.borough-benefits ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #333;
  padding: 12px 14px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1.5px solid transparent;
  transition: border-color .2s;
}
.borough-benefits ul li::before {
  content: '✓';
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.borough-benefits ul li:hover { border-color: var(--orange); }

/* Why us paragraph */
.borough-why-us p,
.borough-why-us > *:not(h2) {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  max-width: 720px;
}

/* Process list */
.borough-process ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.borough-process ol li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
  padding: 16px;
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  counter-increment: step-counter;
  transition: background .2s;
}
.borough-process ol { counter-reset: step-counter; }
.borough-process ol li::before {
  content: counter(step-counter);
  min-width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.borough-process ol li:hover { background: rgba(255,255,255,.12); }

/* Trust / postcodes */
.borough-trust p,
.borough-trust > *:not(h2) {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
}
.borough-postcodes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #9a3412;
}
.borough-postcodes::before { content: '📍'; }

/* Borough FAQ */
.borough-faq {
  padding: 36px 0 0;
}
.borough-faq h2 { margin-bottom: 24px; }
.borough-faq .faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.borough-faq .faq-item[open] { border-color: var(--orange); }
.borough-faq summary {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .15s;
}
.borough-faq summary:hover { background: var(--bg-alt); }
.borough-faq summary::-webkit-details-marker { display: none; }
.borough-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s ease, color .2s;
}
.borough-faq .faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--orange);
}
.borough-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* Borough CTA */
.borough-cta {
  text-align: center;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  border-radius: 20px;
  margin: 32px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.borough-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  pointer-events: none;
}
.borough-cta .cta-headline {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 24px;
  position: relative;
}
.borough-cta .btn-primary {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.borough-cta .btn-primary:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  transform: translateY(-2px);
}
.borough-cta .btn-secondary {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  padding: 14px 26px;
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.borough-cta .btn-secondary:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 30px; }
  .hero-trust { flex-wrap: wrap; gap: 0; width: 100%; }
  .trust-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-meta-bar { flex-wrap: wrap; }
  .meta-item { min-width: 50%; }
  .mega-panel { min-width: unset; max-width: calc(100vw - 32px); overflow-x: auto; }
  .location-postcodes { flex-direction: column; align-items: flex-start; gap: 10px; }
  .location-intro p { padding: 18px 20px; }
  .borough-benefits ul { grid-template-columns: 1fr; }
  .borough-benefits,
  .borough-why-us,
  .borough-process,
  .borough-trust { padding: 28px 20px; }
  .borough-cta { padding: 36px 20px; }
  .borough-cta .btn-secondary { margin-left: 0; margin-top: 10px; }
  .borough-cta .cta-headline { font-size: 20px; }
}

/* ========== HOMEPAGE BOOKING WRAPPER ========== */
.fmtn-homepage-book { background: var(--dark); padding: 80px 0; }
.fmtn-homepage-book .fmtn-booking-section { background: transparent; padding: 0; }
.fmtn-homepage-book .booking-inner { max-width: 100%; padding: 20px; }
.fmtn-homepage-book .booking-header { display: none; }

/* ── Urgency strip ────────────────────────────────────────────────────────── */
.booking-urgency-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #166534;
}
.bus-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}
.bus-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .6; }
}
.bus-sep { color: #86efac; }

/* ── Mode toggle ──────────────────────────────────────────────────────────── */
.booking-mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.bmt-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  color: var(--muted);
  transition: border-color .2s, background .2s, color .2s;
  text-align: left;
}
.bmt-btn strong { display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.bmt-icon { font-size: 18px; flex-shrink: 0; }
.bmt-emergency.active {
  border-color: #dc2626;
  background: #fef2f2;
  color: #dc2626;
}
.bmt-scheduled.active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}
.bmt-btn:not(.active):hover { border-color: #aaa; }

/* ── Mode field blocks ────────────────────────────────────────────────────── */
.bf-hidden { display: none !important; }

/* ── Large phone input ────────────────────────────────────────────────────── */
.input-lg {
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: .5px;
  padding: 14px 16px !important;
  height: auto !important;
}
.bf-phone-group { position: relative; }
.bf-phone-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

/* ── Postcode + detect button ─────────────────────────────────────────────── */
.postcode-row {
  display: flex;
  gap: 8px;
}
.postcode-row input { flex: 1; }
.btn-detect {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 0 16px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.btn-detect:hover { background: #2d2d4e; }
.btn-detect:disabled { opacity: .5; cursor: not-allowed; }
.detect-status {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
}
.detect-ok      { color: #16a34a; }
.detect-error   { color: #dc2626; }
.detect-pending { color: var(--muted); }

/* ── Service radio cards ──────────────────────────────────────────────────── */
.service-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.radio-card {
  display: flex;
  cursor: pointer;
}
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.rc-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 14px 10px;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, background .2s;
  text-align: center;
}
.rc-icon  { font-size: 22px; line-height: 1; }
.rc-label { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.radio-card--active .rc-inner {
  border-color: #dc2626;
  background: #fef2f2;
}
.radio-card--active .rc-label { color: #dc2626; }
.radio-card:hover .rc-inner { border-color: #dc2626; }

/* ── Emergency submit button ──────────────────────────────────────────────── */
.btn-emergency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  background: #dc2626;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: -.2px;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(220,38,38,.35);
}
.btn-emergency:hover {
  background: #b91c1c;
  box-shadow: 0 8px 32px rgba(220,38,38,.45);
  transform: translateY(-2px);
}
.btn-emergency:active { transform: translateY(0); }
.btn-emergency:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── Deposit bar ──────────────────────────────────────────────────────────── */
.booking-deposit-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.deposit-breakdown { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.deposit-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.deposit-row-label { font-size: 13px; color: #666; }
.deposit-row-label small { font-size: 11px; color: #aaa; }
.deposit-row-value { font-size: 13px; font-weight: 700; color: #1a1a2e; white-space: nowrap; }
.deposit-amount { font-size: 28px !important; font-weight: 800 !important; color: #1a1a2e !important; letter-spacing: -1px; line-height: 1; }
.deposit-total-row .deposit-row-value { color: #374151; font-weight: 600; }
.deposit-balance-row .deposit-row-label { font-size: 12px; color: #888; }
.deposit-balance-row .deposit-balance-val { font-size: 14px; font-weight: 700; color: var(--orange); }
.deposit-secure { font-size: 13px; font-weight: 700; color: #1a1a2e; white-space: nowrap; align-self: center; }

/* ── Form selects / textareas ─────────────────────────────────────────────── */
.booking-form select {
  border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 12px 14px;
  font-size: 15px; width: 100%; background: #fff;
}
.booking-form select:focus { border-color: var(--orange); outline: none; }
.booking-form textarea {
  border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 12px 14px;
  font-size: 15px; width: 100%; resize: vertical; min-height: 80px;
}
.booking-form textarea:focus { border-color: var(--orange); outline: none; }

/* ── Post-booking confirmation ────────────────────────────────────────────── */
.booking-confirmation {
  text-align: center;
  padding: 48px 32px;
}
.bc-icon  { font-size: 56px; margin-bottom: 16px; }
.bc-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.bc-eta {
  font-size: 16px;
  color: #555;
  margin-bottom: 28px;
}
.bc-eta strong { color: var(--dark); }
.bc-details {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 auto 28px;
  max-width: 420px;
  text-align: left;
}
.bc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.bc-row:last-child { border-bottom: none; }
.bc-row span  { color: var(--muted); }
.bc-row strong { color: var(--dark); }
.bc-call { font-size: 15px; color: #555; margin-top: 20px; }
.bc-call a { color: var(--orange); font-weight: 700; text-decoration: none; }

/* Revolut pay block */
.bc-pay {
  margin: 0 auto 24px;
  max-width: 420px;
  text-align: center;
}
.btn-revolut {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: #191c1f;
  color: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.2px;
  transition: background .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-revolut:hover {
  background: #2d3135;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
}
.bc-pay-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── Book Now standalone page ─────────────────────────────────────────────── */
.fmtn-booknow-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px 80px;
}
.booknow-hero {
  text-align: center;
  padding: 56px 0 32px;
}
.booknow-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px;
}
.booknow-hero p {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* ── Revolut in-page payment ──────────────────────────────────────────────── */
#revolut-payment-section {
  margin-top: 20px;
  animation: fadeUp .3s ease;
}
.revolut-pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.revolut-pay-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.revolut-pay-note {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.revolut-pay-intro {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}
.btn-revolut-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: #191c1f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.btn-revolut-pay:hover  { background: #2d3135; }
.btn-revolut-pay:active { transform: scale(.98); }
.btn-revolut-pay:disabled { opacity: .6; cursor: not-allowed; }

/* ── Confirmation paid badge ──────────────────────────────────────────────── */
.bc-paid {
  font-size: 13px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 6px;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 12px;
}

/* ── Mobile responsive ────────────────────────────────────────────────────── */
@media (max-width: 540px) {
  .booking-mode-toggle { grid-template-columns: 1fr; }
  .service-radios      { grid-template-columns: 1fr 1fr; }
  .postcode-row        { flex-direction: column; }
  .btn-detect          { width: 100%; justify-content: center; padding: 12px; }
  .btn-emergency       { font-size: 16px; padding: 16px; }
  .input-lg            { font-size: 18px !important; }
  .bmt-btn strong      { font-size: 13px; }
}


/* ========== ARTICLE HERO ========== */
.article-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  margin-top: calc(var(--header-h) + var(--ticker-h));
  display: flex;
  align-items: flex-end;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}
.article-hero-text {
  position: relative;
  z-index: 1;
  padding: 36px 24px;
  width: 100%;
  color: #fff;
}
.article-hero-text h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 10px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.article-hero-text p {
  font-size: 16px;
  line-height: 1.6;
  opacity: .88;
  margin: 0;
  max-width: 640px;
}
@media (max-width: 768px) {
  .article-hero { height: 300px; }
  .article-hero-text h1 { font-size: 26px; }
}

/* ========== ARCHIVE ========== */
.fmtn-archive { padding: 120px 0 80px; }

/* Page header */
.archive-header {
  margin-bottom: 32px;
  max-width: 680px;
}
.archive-header h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  line-height: 1.1;
  margin: 0 0 18px;
}
.archive-header h1 em {
  font-style: normal;
  color: var(--orange);
}
.archive-intro {
  font-size: 17px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* Borough grid */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Borough card */
.borough-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 18px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.borough-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background .2s;
}
.borough-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(255,106,0,.12);
  transform: translateY(-3px);
}
.borough-card:hover::before { background: var(--orange); }

/* Zone accent colours on top bar */
.zone-central::before  { background: #6366f1; }
.zone-north::before    { background: #22c55e; }
.zone-south::before    { background: #f59e0b; }
.zone-east-west::before { background: #ec4899; }

.borough-card:hover.zone-central::before  { background: #6366f1; }
.borough-card:hover.zone-north::before    { background: #22c55e; }
.borough-card:hover.zone-south::before    { background: #f59e0b; }
.borough-card:hover.zone-east-west::before { background: #ec4899; }

/* Zone badge */
.bc-zone {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1;
}
.zone-central  .bc-zone { color: #6366f1; }
.zone-north    .bc-zone { color: #16a34a; }
.zone-south    .bc-zone { color: #d97706; }
.zone-east-west .bc-zone { color: #db2777; }

/* Borough name */
.borough-card h2 {
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 14px;
  flex: 1;
}

/* Postcode chips */
.bc-postcodes {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
}
.bc-postcodes span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #666;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 7px;
  line-height: 1.4;
  transition: background .15s, border-color .15s, color .15s;
}
.borough-card:hover .bc-postcodes span {
  background: #fff7ed;
  border-color: #fed7aa;
  color: #9a3412;
}

/* Arrow */
.bc-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--border);
  transition: color .2s, transform .2s;
  align-self: flex-end;
  margin-top: auto;
}
.borough-card:hover .bc-arrow {
  color: var(--orange);
  transform: translateX(4px);
}

/* Service archive cards keep .service-card styles; just fix h2 */
.archive-grid .service-card h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  padding-right: 28px;
}

/* Generic archive-item fallback */
.archive-item {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 22px;
  background: #fff;
}
.archive-item h2 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.archive-item h2 a { color: var(--dark); text-decoration: none; }
.archive-item h2 a:hover { color: var(--orange); }

@media (max-width: 1100px) {
  .archive-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .fmtn-archive { padding: 80px 0 48px; }
  .archive-header h1 { font-size: 30px; letter-spacing: -.5px; }
  .archive-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .borough-card { padding: 18px 16px 14px; }
}
@media (max-width: 480px) {
  .archive-grid { grid-template-columns: 1fr; }
}

/* Trust strip */
.archive-trust-strip {
  display: flex;
  gap: 0;
  background: var(--dark);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 44px;
}
.ats-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.ats-item:last-child { border-right: none; }
.ats-item strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.1;
}
.ats-item span {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

/* FAQ section */
.archive-faq {
  margin: 64px 0 0;
  max-width: 820px;
}
.archive-faq h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
.archive-faq .faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.archive-faq .faq-item[open] { border-color: var(--orange); }
.archive-faq summary {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .15s;
}
.archive-faq summary:hover { background: var(--bg-alt); }
.archive-faq summary::-webkit-details-marker { display: none; }
.archive-faq summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s ease, color .2s;
}
.archive-faq .faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--orange);
}
.archive-faq details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* CTA section */
.archive-cta {
  margin: 48px 0 0;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c00 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.archive-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 360px; height: 360px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.archive-cta-headline {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 10px;
  position: relative;
}
.archive-cta-sub {
  font-size: 16px;
  opacity: .88;
  margin: 0 0 28px;
  position: relative;
}
.archive-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.archive-cta-btns .btn-primary {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.archive-cta-btns .btn-primary:hover { box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.archive-cta-btns .btn-secondary {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: var(--radius-pill);
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background .2s;
}
.archive-cta-btns .btn-secondary:hover { background: rgba(255,255,255,.25); }

@media (max-width: 768px) {
  .archive-trust-strip { flex-wrap: wrap; }
  .ats-item { flex: 1 1 33%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .archive-faq { margin-top: 48px; }
  .archive-cta { padding: 36px 20px; }
  .archive-cta-headline { font-size: 22px; }
}

/* ── Mega Menu ─────────────────────────────────────────────────────────────── */
.has-mega { position: relative; }

.mega-toggle { cursor: pointer; }

.mega-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 200;
  padding: 16px;
  min-width: 220px;
}

.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel { display: block; }

.mega-panel ul { list-style: none; margin: 0; padding: 0; }
.mega-panel li { margin: 0; }
.mega-panel a {
  display: block;
  padding: 6px 8px;
  color: #111;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.mega-panel a:hover { background: #f3f4f6; }

/* Services dropdown */
.mega-services { min-width: 240px; }

/* Emergency badge */
.nav-emergency > a {
  color: #dc2626;
  font-weight: 700;
}
.nav-emergency > a::after {
  content: ' 🚨';
  font-size: 12px;
}

/* Areas mega panel — grouped columns */
.mega-areas { min-width: 600px; }
.mega-columns { display: flex; gap: 24px; }
.mega-column { flex: 1; }
.mega-column h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6b7280;
  margin: 0 0 8px;
}

/* Flat fallback */
.mega-flat {
  column-count: 3;
  column-gap: 16px;
}

/* Footer link row */
.mega-footer {
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
  padding-top: 10px;
}
.mega-footer a {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
}

/* Borough / service internal link sections */
.borough-internal-links {
  margin: 32px 0 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.nearby-areas,
.other-services {
  padding: 28px 24px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
}
.nearby-areas { border-top: 4px solid #3b82f6; }
.other-services { border-top: 4px solid var(--orange); }
.borough-internal-links h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted);
  margin-bottom: 14px;
}
.borough-internal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.borough-internal-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.nearby-areas a::before { content: '📍'; font-size: 13px; }
.other-services a::before { content: '🔧'; font-size: 13px; }
.borough-internal-links a:hover {
  border-color: var(--orange);
  background: #fff7ed;
  color: var(--orange);
}
.service-locations {
  margin: 40px 0;
  padding: 28px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  border-top: 4px solid var(--orange);
}
.service-locations h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.service-locations ul,
.location-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-locations a {
  display: inline-block;
  padding: 7px 14px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: border-color .2s, background .2s, color .2s;
}
.service-locations a:hover {
  border-color: var(--orange);
  background: #fff7ed;
  color: var(--orange);
}

@media (max-width: 768px) {
  .borough-internal-links { grid-template-columns: 1fr; }
}

/* old borough-faq / borough-cta rules removed — superseded above */

/* ============================================================
   REVIEWS PAGE
   ============================================================ */

/* Page wrapper */
.rv-page {
  background: var(--bg-alt);
  padding-bottom: 0;
}

/* ── Hero ──────────────────────────────────────────────────── */
.rv-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2233 100%);
  color: #fff;
  padding: calc(var(--header-h) + 64px) 0 56px;
}
.rv-hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.rv-hero-left { flex-shrink: 0; }
.rv-hero-h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin: 0 0 8px;
  line-height: 1.15;
}
.rv-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin: 0 0 20px;
}
.rv-hero-score {
  text-align: center;
  flex-shrink: 0;
}
.rv-big-rating {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -2px;
}
.rv-hero-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 8px 0 6px;
  font-size: 26px;
}
.rv-hero-stars .rv-star { color: rgba(255,255,255,.3); }
.rv-hero-stars .rv-star--on { color: #fbbf24; }
.rv-hero-count {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.rv-sources {
  display: flex;
  justify-content: center;
}
.rv-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* Rating bars */
.rv-hero-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rv-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.rv-bar-label {
  width: 24px;
  text-align: right;
  font-weight: 700;
  flex-shrink: 0;
}
.rv-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  overflow: hidden;
}
.rv-bar-fill {
  height: 100%;
  background: #fbbf24;
  border-radius: 100px;
  transition: width .6s ease;
}
.rv-bar-pct {
  width: 34px;
  text-align: right;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

/* ── Filters ───────────────────────────────────────────────── */
.rv-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0 20px;
}
.rv-filter {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all .2s;
}
.rv-filter:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.rv-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ── Review Grid ───────────────────────────────────────────── */
.rv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}

/* Review card */
.rv-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.rv-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  border-color: #e2e8f0;
}
.rv-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rv-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.rv-meta {
  flex: 1;
  min-width: 0;
}
.rv-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rv-loc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.rv-google-icon {
  flex-shrink: 0;
  opacity: .85;
}
.rv-stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rv-star { color: #d1d5db; font-size: 16px; }
.rv-star--on { color: #fbbf24; }
.rv-date {
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}
.rv-text {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
  flex: 1;
}

/* Service badge */
.rv-service-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  align-self: flex-start;
  background: #f1f5f9;
  color: #475569;
}
.rv-badge--emergency-callout   { background: #fff7ed; color: #c2410c; }
.rv-badge--puncture-repair     { background: #f0fdf4; color: #15803d; }
.rv-badge--tyre-fitting        { background: #eff6ff; color: #1d4ed8; }
.rv-badge--wheel-balancing     { background: #faf5ff; color: #7e22ce; }
.rv-badge--run-flat-replacement { background: #fef2f2; color: #b91c1c; }

/* ── CTA Section ───────────────────────────────────────────── */
.rv-cta {
  background: var(--orange);
  padding: 56px 0;
  text-align: center;
}
.rv-cta-inner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.rv-cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.rv-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rv-cta-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
}
.rv-cta .btn-primary {
  background: #fff;
  color: var(--orange);
  border: 2px solid #fff;
}
.rv-cta .btn-primary:hover {
  background: #fff7ed;
}
.rv-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.rv-cta .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .rv-hero-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .rv-hero-bars { width: 100%; }
  .rv-grid { grid-template-columns: 1fr; }
  .rv-big-rating { font-size: 56px; }
  .rv-cta-inner h2 { font-size: 24px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── Hero ──────────────────────────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2233 100%);
  padding: calc(var(--header-h) + 64px) 0 56px;
  color: #fff;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-hero-text h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.contact-hero-text p {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 480px;
}
.contact-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-hero-actions .btn-secondary {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.contact-hero-actions .btn-secondary:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
}

/* Info cards in hero */
.contact-hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-info-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: background .2s;
}
.contact-info-card:hover { background: rgba(255,255,255,.12); }
.cic-icon { font-size: 22px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.cic-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cic-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.45); }
.cic-value { font-size: 14px; font-weight: 700; color: #fff; text-decoration: none; word-break: break-all; }
a.cic-value:hover { color: var(--orange); }
.cic-note { font-size: 12px; color: rgba(255,255,255,.5); }
a.cic-link { color: var(--orange); text-decoration: none; font-weight: 600; }
a.cic-link:hover { text-decoration: underline; }

/* ── Body layout ───────────────────────────────────────────── */
.contact-body { padding: 60px 0 80px; background: var(--bg-alt); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Form wrap ─────────────────────────────────────────────── */
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.contact-form-wrap h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Form fields */
.cf-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.cf-row--2 { flex-direction: row; }
.cf-row--2 .cf-field { flex: 1; }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-field:last-child { margin-bottom: 0; }
.cf-field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.cf-req { color: var(--orange); }
.cf-field input,
.cf-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
}
.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,.1);
  outline: none;
}
.cf-field textarea { resize: vertical; min-height: 130px; }
.cf-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 16px; }

/* Success / error */
.contact-success {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.contact-success-icon { font-size: 24px; flex-shrink: 0; }
.contact-success strong { display: block; font-size: 16px; color: #15803d; margin-bottom: 4px; }
.contact-success p { font-size: 14px; color: #166534; margin: 0; }
.contact-error {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #b91c1c;
  margin-bottom: 20px;
}
.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.contact-wa-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

/* ── Sidebar ───────────────────────────────────────────────── */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.contact-sidebar-block {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.contact-sidebar-block h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 10px;
}
.contact-sidebar-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.contact-sidebar-block .btn-full { display: block; text-align: center; }

/* FAQ list */
.contact-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-faq-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-faq-list li:last-child { border-bottom: none; padding-bottom: 0; }
.contact-faq-list strong { font-size: 13px; color: var(--dark); }
.contact-faq-list span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-hero-text h1 { font-size: 34px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { grid-row: 1; }
}
@media (max-width: 640px) {
  .contact-hero-cards { grid-template-columns: 1fr; }
  .cf-row--2 { flex-direction: column; }
  .contact-form-wrap { padding: 24px; }
}

/* ============================================================
   GENERIC PAGE (page.php)
   ============================================================ */

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2233 100%);
  padding: calc(var(--header-h) + 40px) 0 36px;
}
.page-hero .fmtn-breadcrumb {
  padding: 0 0 16px;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  color: rgba(255,255,255,.45);
}
.page-hero .fmtn-breadcrumb a { color: rgba(255,255,255,.65); }
.page-hero .fmtn-breadcrumb a:hover { color: #fff; }
.page-hero .fmtn-breadcrumb .bc-sep { color: rgba(255,255,255,.25); }
.page-hero .fmtn-breadcrumb span[aria-current] { color: rgba(255,255,255,.9); }
.page-hero-title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0;
}

.page-main {
  background: var(--bg-alt);
  padding: 56px 0 80px;
}
.page-wrap {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
}
.page-article {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 44px 48px;
}

/* Rich text content inside page */
.page-content { font-size: 16px; line-height: 1.8; color: #374151; }
.page-content h2 {
  font-size: 24px; font-weight: 800; color: var(--dark);
  margin: 36px 0 14px; letter-spacing: -.4px;
}
.page-content h3 {
  font-size: 19px; font-weight: 700; color: var(--dark);
  margin: 28px 0 10px;
}
.page-content h4 {
  font-size: 16px; font-weight: 700; color: var(--dark);
  margin: 22px 0 8px;
}
.page-content p { margin: 0 0 18px; }
.page-content p:last-child { margin-bottom: 0; }
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content a:hover { text-decoration: none; }
.page-content ul,
.page-content ol {
  margin: 0 0 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { line-height: 1.7; }
.page-content strong { font-weight: 700; color: var(--dark); }
.page-content em { font-style: italic; }
.page-content blockquote {
  border-left: 4px solid var(--orange);
  margin: 24px 0;
  padding: 14px 20px;
  background: #fff7ed;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #92400e;
}
.page-content hr {
  border: none;
  border-top: 1.5px solid var(--border);
  margin: 32px 0;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.page-content th,
.page-content td {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  text-align: left;
}
.page-content th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--dark);
}
.page-content img {
  border-radius: 12px;
  margin: 20px 0;
  max-width: 100%;
}

@media (max-width: 860px) {
  .page-wrap { max-width: 100%; }
  .page-article { padding: 28px 24px; }
  .page-hero-title { font-size: 28px; }
}


/* ============================================================
   FRANCHISE REGISTRATION PAGE
   ============================================================ */
.franchise-reg-page { padding: 0; }

/* ── Hero ───────────────────────────────────────────────── */
.freg-hero {
  background: var(--dark);
  padding: 80px 40px 72px;
  position: relative;
  overflow: hidden;
}
.freg-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.12) 0%, transparent 70%);
  pointer-events: none;
}
.freg-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
  position: relative; z-index: 1;
}
.freg-hero__left .eyebrow { color: rgba(255,255,255,.4); }
.freg-hero__h1 {
  font-size: 50px; font-weight: 800;
  letter-spacing: -2px; line-height: 1.06;
  color: #fff; margin: 12px 0 18px;
}
.freg-hero__sub {
  font-size: 16px; color: rgba(255,255,255,.55);
  line-height: 1.7; max-width: 430px; margin-bottom: 24px;
}
.freg-bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 32px;
}
.freg-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
}
.freg-bullets li span {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.freg-hero__ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.freg-approved-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65); border-radius: 100px;
  padding: 8px 16px; font-size: 13px; font-weight: 600;
}

/* Stat card */
.freg-stat-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.freg-stat-card__row {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
}
.freg-stat-card__item {
  padding: 20px 18px;
  border-right: 1px solid var(--border);
}
.freg-stat-card__item:last-child { border-right: none; }
.freg-stat-card__val {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.5px; color: var(--orange); line-height: 1;
}
.freg-stat-card__lbl {
  font-size: 11px; color: var(--muted);
  margin-top: 5px; font-weight: 500; line-height: 1.3;
}
.freg-stat-card__footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.freg-stat-card__who-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 10px;
}
.freg-stat-card__who {
  list-style: none;
  display: flex; flex-direction: column; gap: 6px;
}
.freg-stat-card__who li {
  font-size: 13px; font-weight: 500; color: var(--dark);
  padding-left: 14px; position: relative;
}
.freg-stat-card__who li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

/* ── Form section ───────────────────────────────────────── */
.freg-form-section {
  background: var(--bg-alt);
  padding: 72px 40px 80px;
  border-top: 1px solid var(--border);
}
.freg-form-inner {
  max-width: 680px;
  margin: 0 auto;
}
.freg-form-hd { margin-bottom: 32px; }
.freg-form-hd h2 {
  font-size: 30px; font-weight: 800;
  letter-spacing: -0.8px; color: var(--dark);
  margin: 8px 0 10px;
}
.freg-form-hd p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Cards — same pattern as .review-card */
.freg-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  padding: 28px;
  margin-bottom: 14px;
  transition: box-shadow .25s ease;
}
.freg-card:focus-within {
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-color: #d0ceca;
}
.freg-card__hd {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.freg-card__num {
  width: 30px; height: 30px; min-width: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; flex-shrink: 0;
}
.freg-card__hd h3 {
  font-size: 17px; font-weight: 800; color: var(--dark); margin: 0 0 3px;
}
.freg-card__hd p {
  font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5;
}
.freg-card__hd p code {
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 1px 5px; border-radius: 4px; font-size: 12px; color: var(--dark);
}
.freg-card__hd p kbd {
  background: var(--bg-alt); border: 1px solid var(--border);
  padding: 1px 5px; border-radius: 4px;
  font-size: 11px; font-family: inherit; color: var(--dark);
}
.freg-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 12px; }

/* Form grid */
.freg-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.freg-field { display: flex; flex-direction: column; gap: 5px; }
.freg-field--full { grid-column: 1 / -1; }
.freg-field label { font-size: 13px; font-weight: 600; color: var(--dark); }
.freg-field small { color: var(--muted); font-weight: 400; }
.req { color: var(--orange); }
.freg-field input,
.freg-field textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 13px;
  font-size: 14px; width: 100%;
  background: var(--bg-alt); color: var(--dark);
  transition: border-color .18s, background .18s;
}
.freg-field input:focus,
.freg-field textarea:focus {
  border-color: var(--orange); background: #fff; outline: none;
}
.freg-field input::placeholder,
.freg-field textarea::placeholder { color: #c2c0bc; }

/* Service toggles */
.freg-services {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
}
.freg-svc { cursor: pointer; }
.freg-svc input { display: none; }
.freg-svc__inner {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 14px 8px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg-alt); transition: border-color .18s, background .18s;
  text-align: center; position: relative;
}
.freg-svc__icon { font-size: 20px; }
.freg-svc__lbl { font-size: 12px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.freg-svc__check {
  position: absolute; top: 6px; right: 6px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--border); color: transparent;
  font-size: 8px; display: flex; align-items: center; justify-content: center;
  transition: background .18s, color .18s;
}
.freg-svc input:checked + .freg-svc__inner { border-color: var(--orange); background: #fff7f2; }
.freg-svc input:checked + .freg-svc__inner .freg-svc__check { background: var(--orange); color: #fff; }
.freg-svc:hover .freg-svc__inner { border-color: var(--orange); }

/* Tag input */
.freg-tag-input {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  min-height: 50px; padding: 8px 12px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--bg-alt); cursor: text;
  transition: border-color .18s, background .18s;
}
.freg-tag-input:focus-within { border-color: var(--orange); background: #fff; }
.freg-tag-input input {
  border: none; outline: none; font-size: 14px;
  flex: 1; min-width: 160px;
  background: transparent; padding: 4px 0;
}
.freg-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--orange); color: #fff;
  border-radius: 100px; padding: 4px 10px 4px 12px;
  font-size: 13px; font-weight: 700;
}
.freg-tag-rate {
  font-style: normal; font-weight: 500; opacity: .85;
  font-size: 12px; margin-left: 2px;
}
.freg-tag button {
  background: rgba(255,255,255,.28); border: none; color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer; padding: 0; line-height: 1;
  transition: background .15s; margin-left: 2px;
}
.freg-tag button:hover { background: rgba(255,255,255,.5); }

/* Fee preview */
.freg-fee-preview {
  margin-top: 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.freg-fee-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.freg-fee-table thead th {
  padding: 9px 16px; background: var(--bg-alt);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--muted); border-bottom: 1px solid var(--border);
}
.freg-fee-table thead th:last-child { text-align: right; }
.freg-fee-table tbody td {
  padding: 9px 16px; border-bottom: 1px solid var(--border);
  font-weight: 600; color: var(--dark);
}
.freg-fee-table tbody td:last-child { text-align: right; color: var(--orange); }
.freg-fee-total td {
  padding: 13px 16px; background: var(--bg-alt);
  font-weight: 700; font-size: 15px;
  border-top: 1.5px solid var(--border);
}
.freg-fee-total td:last-child { text-align: right; }
.freg-fee-total strong { color: var(--orange); font-size: 22px; margin-right: 2px; }
.freg-fee-total span { color: var(--muted); font-size: 13px; font-weight: 500; }

/* Error */
.freg-error {
  background: #FFF0F0; border: 1.5px solid #F5C6C6;
  border-radius: 10px; padding: 12px 16px;
  color: #C0392B; font-size: 14px; margin: 12px 0;
}

/* Submit */
.freg-submit-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding-top: 6px; flex-wrap: wrap;
}
.freg-submit-note {
  font-size: 13px; color: var(--muted);
  margin: 0; flex: 1; min-width: 200px;
}
#freg-submit { padding: 15px 36px; font-size: 16px; }
#freg-submit:disabled { opacity: .55; cursor: not-allowed; }

/* Success */
.freg-success {
  background: #fff; border: 1.5px solid #A3E4B5;
  border-radius: var(--radius-card); padding: 48px 28px;
  text-align: center;
}
.freg-success__icon { font-size: 44px; margin-bottom: 14px; }
.freg-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; color: #1A7A3A; }
.freg-success p { color: var(--muted); font-size: 15px; max-width: 380px; margin: 0 auto; line-height: 1.6; }

/* ── Content section ─────────────────────────────────────── */
.freg-content-section {
  padding: 80px 40px 88px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.freg-content-inner { max-width: 800px; margin: 0 auto; }
.freg-prose { font-size: 15.5px; color: var(--dark); line-height: 1.78; }
.freg-prose h2 {
  font-size: 28px; font-weight: 800; letter-spacing: -.6px;
  color: var(--dark); margin: 60px 0 14px;
  padding-top: 60px; border-top: 1px solid var(--border);
}
.freg-prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.freg-prose h3 {
  font-size: 18px; font-weight: 700;
  color: var(--dark); margin: 32px 0 10px;
}
.freg-prose p { color: var(--muted); margin-bottom: 16px; }
.freg-prose ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 9px; margin-bottom: 22px;
}
.freg-prose ul li {
  font-size: 15px; color: var(--muted);
  padding-left: 22px; position: relative; line-height: 1.6;
}
.freg-prose ul li::before {
  content: '›'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700; font-size: 17px;
}
.freg-prose ul li strong { color: var(--dark); }

/* Numbered steps */
.freg-prose ol {
  list-style: none; display: flex; flex-direction: column;
  gap: 14px; margin-bottom: 24px;
  counter-reset: freg-step;
}
.freg-prose ol li {
  font-size: 15px; color: var(--muted);
  padding-left: 48px; position: relative; line-height: 1.6;
  counter-increment: freg-step;
}
.freg-prose ol li::before {
  content: counter(freg-step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Earnings highlight block */
.freg-earnings-block {
  background: linear-gradient(135deg, #fff7f2 0%, #fff3eb 100%);
  border: 2px solid rgba(255,106,0,.18);
  border-radius: var(--radius-card);
  padding: 28px 32px 22px;
  margin: 16px 0 28px;
}
.freg-earnings-block p {
  color: var(--dark) !important; font-weight: 500; margin-bottom: 14px;
}
.freg-earnings-block ul { margin-bottom: 0; gap: 10px; }
.freg-earnings-block ul li {
  font-size: 17px; font-weight: 700; color: var(--dark);
  padding-left: 0; line-height: 1.4;
}
.freg-earnings-block ul li::before { display: none; }
.freg-earnings-block ul li strong { color: var(--orange); font-size: 20px; }
.freg-earnings-block small {
  display: block; margin-top: 18px;
  color: var(--muted) !important; font-size: 13px; line-height: 1.5;
}

/* Testimonials */
blockquote.freg-testimonial {
  margin: 0 0 18px;
  background: var(--bg-alt);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 24px 28px 20px;
  position: relative; overflow: hidden;
}
blockquote.freg-testimonial::before {
  content: '\201C';
  position: absolute; top: -8px; right: 18px;
  font-size: 80px; color: var(--orange); opacity: .08;
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none; user-select: none;
}
blockquote.freg-testimonial p {
  font-size: 15.5px; color: var(--dark) !important; font-style: italic;
  margin: 0 0 12px; line-height: 1.7;
}
blockquote.freg-testimonial cite {
  font-size: 13px; font-weight: 700;
  color: var(--orange); font-style: normal;
}

/* Comparison / pricing table in prose */
.freg-prose table.freg-pricing-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin: 12px 0 28px;
  border-radius: var(--radius-card); overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.freg-prose table.freg-pricing-table thead tr {
  background: var(--dark);
}
.freg-prose table.freg-pricing-table thead th {
  padding: 14px 20px; font-weight: 700; font-size: 13px;
  color: #fff; text-align: left; letter-spacing: .02em;
}
.freg-prose table.freg-pricing-table tbody tr:nth-child(odd) { background: #fff; }
.freg-prose table.freg-pricing-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.freg-prose table.freg-pricing-table tbody tr:hover { background: #fff7f2; }
.freg-prose table.freg-pricing-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border);
  color: var(--muted); line-height: 1.5;
}
.freg-prose table.freg-pricing-table td:first-child {
  font-weight: 700; color: var(--dark);
}

/* Prose HR */
.freg-prose hr {
  border: none; border-top: 1px solid var(--border);
  margin: 56px 0;
}

/* ── Final CTA section ───────────────────────────────────── */
.freg-final-cta-section {
  background: var(--dark);
  padding: 80px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.freg-final-cta-section::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,106,0,.15) 0%, transparent 70%);
  pointer-events: none;
}
.freg-final-cta-inner {
  max-width: 600px; margin: 0 auto; position: relative; z-index: 1;
}
.freg-final-cta-section h2 {
  font-size: 38px; font-weight: 800; color: #fff;
  letter-spacing: -1.2px; margin: 0 0 16px; line-height: 1.1;
}
.freg-final-cta-section p {
  font-size: 16px; color: rgba(255,255,255,.55);
  line-height: 1.7; margin: 0 0 32px;
}
.freg-final-cta-note {
  font-size: 13px; color: rgba(255,255,255,.35) !important;
  margin-top: 18px !important;
}
.btn-lg { padding: 18px 48px; font-size: 17px; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .freg-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .freg-hero__h1 { font-size: 38px; }
  .freg-stat-card { max-width: 520px; }
}
@media (max-width: 640px) {
  .freg-hero { padding: 52px 20px 48px; }
  .freg-hero__h1 { font-size: 30px; letter-spacing: -1px; }
  .freg-form-section { padding: 48px 20px 60px; }
  .freg-content-section { padding: 52px 20px 64px; }
  .freg-card { padding: 20px 18px; }
  .freg-grid { grid-template-columns: 1fr; }
  .freg-services { grid-template-columns: repeat(3, 1fr); }
  .freg-submit-row { flex-direction: column; align-items: stretch; }
  #freg-submit { width: 100%; justify-content: center; }
  .freg-stat-card__row { grid-template-columns: 1fr 1fr 1fr; }
  .freg-prose h2 { font-size: 22px; margin: 44px 0 12px; padding-top: 44px; }
  .freg-prose h3 { font-size: 16px; }
  .freg-earnings-block { padding: 20px 20px 18px; }
  .freg-earnings-block ul li { font-size: 15px; }
  .freg-earnings-block ul li strong { font-size: 17px; }
  blockquote.freg-testimonial { padding: 18px 20px 16px; }
  .freg-prose table.freg-pricing-table thead th,
  .freg-prose table.freg-pricing-table td { padding: 10px 12px; font-size: 13px; }
  .freg-final-cta-section { padding: 56px 20px; }
  .freg-final-cta-section h2 { font-size: 28px; }
  .btn-lg { padding: 16px 32px; font-size: 15px; }
}
@media (max-width: 400px) {
  .freg-services { grid-template-columns: repeat(2, 1fr); }
  .freg-prose table.freg-pricing-table { font-size: 12px; }
  .freg-prose table.freg-pricing-table thead th,
  .freg-prose table.freg-pricing-table td { padding: 8px 10px; }
}

/* ========== LOCATION PAGE: NEW SECTIONS ========== */

/* Common Tyre Emergencies */
.location-emergencies {
  margin: 40px 0 0;
}
.location-emergencies > h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
.emergency-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: box-shadow .2s;
}
.emergency-item:hover {
  box-shadow: 0 4px 20px rgba(255,106,0,.10);
}
.emergency-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.emergency-item p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

/* Trust & Review section */
.location-trust {
  margin: 40px 0 0;
  background: var(--dark);
  border-radius: 18px;
  padding: 36px 40px;
  color: #fff;
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
}
.trust-stat strong {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.trust-stat span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  letter-spacing: .3px;
}
.location-review {
  border-left: 3px solid var(--orange);
  padding: 0 0 0 20px;
  margin: 0;
}
.location-review p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  font-style: italic;
  margin-bottom: 8px;
}
.location-review cite {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  font-style: normal;
  letter-spacing: .2px;
}

/* location-faq — mirrors borough-faq style */
.location-faq {
  margin: 40px 0 0;
}
.location-faq > h2 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
.location-faq .faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.location-faq .faq-item[open] {
  border-color: var(--orange);
}
.location-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--dark);
  transition: background .15s;
}
.location-faq summary:hover { background: var(--bg-alt); }
.location-faq summary::-webkit-details-marker { display: none; }
.location-faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform .2s;
}
.location-faq .faq-item[open] summary::after {
  transform: rotate(45deg);
}
.location-faq details p {
  padding: 0 22px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* Responsive */
@media (max-width: 640px) {
  .location-trust { padding: 28px 20px; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .location-emergencies > h2,
  .location-faq > h2 { font-size: 22px; }
  .emergency-item { padding: 18px 18px; }
}

/* ============================================================
   REDESIGNED (2026-04): location-trust — Google Rating + Review Card
   ============================================================ */

.trust-google-widget {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 24px;
}
.tgw-glogo {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.30);
  display: block;
}
.tgw-center { flex: 1; }
.tgw-score-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  margin-bottom: 6px;
}
.tgw-score {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.tgw-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 3px;
}
.tgw-label {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .3px;
}
.tgw-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid rgba(255,140,0,.5);
  border-radius: 9px;
  padding: 9px 16px;
  transition: background .15s, color .15s, border-color .15s;
  flex-shrink: 0;
}
.tgw-cta:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* Enhanced review card */
.location-review {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12) !important;
  border-left: none !important;
  border-radius: 14px;
  padding: 22px 24px;
  margin: 0;
}
.lr-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.location-review p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,.93);
  font-style: italic;
  margin-bottom: 16px;
}
.lr-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lr-avatar {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .5px;
}
.lr-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.location-review cite {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
  font-style: normal;
  display: block;
}
.lr-source {
  font-size: 11px;
  color: rgba(255,255,255,.42);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ============================================================
   REDESIGNED (2026-04): location-faq — Numbered accordion
   ============================================================ */
.location-faq {
  margin: 48px 0 0;
  background: var(--bg-alt);
  border-radius: 20px;
  padding: 36px 40px;
  counter-reset: faq-num;
}
.location-faq > h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.3;
}
.location-faq .faq-item {
  counter-increment: faq-num;
  background: #fff;
  border: 1.5px solid #e8e8e8 !important;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.location-faq .faq-item:hover {
  border-color: #ccc !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.location-faq .faq-item[open] {
  border-color: var(--orange) !important;
  box-shadow: 0 4px 20px rgba(255,140,0,.10);
}
.location-faq summary {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  align-items: center;
  padding: 18px 22px;
  gap: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  color: var(--dark);
  transition: background .15s;
}
.location-faq summary:hover { background: #fafafa; }
.location-faq summary::-webkit-details-marker { display: none; }
.location-faq summary::before {
  content: counter(faq-num);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  transition: background .2s;
  justify-self: center;
}
.location-faq .faq-item[open] summary::before {
  background: var(--dark);
}
.location-faq summary::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s;
  justify-self: center;
}
.location-faq .faq-item[open] summary::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.location-faq details p {
  padding: 2px 22px 20px 64px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 640px) {
  .trust-google-widget { flex-wrap: wrap; }
  .tgw-cta { flex: 1 0 100%; text-align: center; padding: 10px; }
  .location-faq { padding: 24px 18px; border-radius: 16px; }
  .location-faq > h2 { font-size: 21px; }
  .location-faq summary { grid-template-columns: 24px 1fr 18px; gap: 10px; font-size: 14px; padding: 16px 16px; }
  .location-faq summary::before { width: 24px; height: 24px; font-size: 11px; }
  .location-faq details p { padding: 0 16px 16px; }
}

/* ============================================================
   SERVICE PAGE CONTENT STYLES
   Applies to /services/*/index.html pages
   ============================================================ */

/* Centre the body column */
.fmtn-service-page .service-body {
  margin: 0 auto;
}

/* Section headings inside service content */
.service-content h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.4px;
  color: var(--dark);
  margin: 40px 0 14px;
  padding-left: 16px;
  border-left: 4px solid var(--orange);
  line-height: 1.3;
}
.service-content h2:first-child { margin-top: 8px; }

/* Body text */
.service-content p {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 18px;
}

/* Styled bullet lists */
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-content ul li {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  padding-left: 28px;
  position: relative;
}
.service-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-content ul li strong {
  color: var(--dark);
  font-weight: 700;
}

/* FAQ section heading */
.service-content h2:has(+ details),
.service-content > h2:last-of-type {
  margin-bottom: 18px;
}

/* FAQ accordion — details/summary */
.service-content details {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.service-content details:hover {
  border-color: #ccc;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.service-content details[open] {
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255,140,0,.10);
}
.service-content summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  position: relative;
  transition: background .15s;
  line-height: 1.4;
}
.service-content summary:hover { background: var(--bg-alt); }
.service-content summary::-webkit-details-marker { display: none; }
.service-content summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform .25s ease, color .2s;
  line-height: 1;
}
.service-content details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--orange);
}
.service-content details p {
  margin: 0;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* "Frequently Asked Questions" heading just above details */
.service-content h2 + details { margin-top: 4px; }

/* Wrap the FAQ block in visual container */
.service-content details:first-of-type {
  margin-top: 4px;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .service-content h2 { font-size: 19px; padding-left: 12px; }
  .service-content summary { font-size: 14px; padding: 16px 44px 16px 16px; }
  .service-content details p { padding: 0 16px 16px; padding-top: 14px; }
}
