/* ============================================================
   Just Phantoms — Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --gold:   #C2A33B;
  --gold-2: #D0B24C;
  --dark:   #0a0a0a;
  --mid:    #151515;
  --text:   #f5f5f5;
  --muted:  #bdbdbd;
  --success: #2ecc71;
  --danger:  #ff5252;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
}

a { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--gold); }

/* ── Layout ── */
.container      { width: min(1200px, 92vw); margin: 0 auto; }
.container-full { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 min(2rem, 4vw); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: inherit;
  font-size: inherit;
  transition: .2s ease;
  text-decoration: none;
}
.btn.primary            { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111; }
.btn.primary:hover      { filter: brightness(1.08); }
.btn.ghost              { color: #111111; background: #ffffff; border: none; }
.btn.ghost:hover        { background: #f0f0f0; }
.btn.ghost.active       { color: var(--gold); text-decoration: underline; }
.btn-ghost-gold         { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-ghost-gold:hover   { background: var(--gold); color: #0a0a0a; }
.btn-gold-cta           { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111111; }
.btn-prom-quote         { background: #ffffff; color: #111111; border-radius: 999px; font-weight: 600; transition: .2s ease; border: none; cursor: pointer; }
.btn-prom-quote:hover   { background: #f0f0f0; color: #111111; }
.btn-hero-tel           { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-hero-tel:hover     { background: rgba(194,163,59,0.08); color: var(--gold-2); }

.btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .6rem 1rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
}
.btn-compact.primary          { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111; }
.btn-compact.primary:hover    { filter: brightness(1.1); }
.btn-compact.ghost            { color: #111111; background: #ffffff; border: none; }
.btn-compact.ghost:hover      { background: #f0f0f0; }
.btn-compact.btn-whatsapp     { background: #25D366; color: #ffffff; border: none; }
.btn-compact.btn-whatsapp:hover { background: #1ebe5d; color: #ffffff; }

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .8rem 0; }
.nav .right { display: flex; align-items: center; gap: .6rem; }
.nav .right .btn.ghost        { background: transparent; color: var(--text); font-size: .875rem; padding: .5rem 1rem; border: none; }
.nav .right .btn.ghost:hover  { background: transparent; color: var(--gold); }
.nav .right .btn.primary      { font-size: .875rem; padding: .5rem 1rem; }
.nav .right .btn-prom-quote   { font-size: .875rem; padding: .5rem 1rem; }

.logo     { display: flex; align-items: center; gap: .75rem; }
.logo img { height: 90px; width: auto; display: block; object-fit: contain; }
.logo span { font-weight: 700; letter-spacing: .5px; }

/* Fleet Nav Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: var(--text);
  padding: .5rem 1rem;
  font-weight: 600;
}
.nav-dropdown-toggle .chevron            { transition: transform .25s ease; }
.nav-dropdown-wrap:hover .chevron        { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 480px;
  background: rgba(8,8,8,.98);
  border: 1px solid rgba(194,163,59,.2);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 16px 16px;
  padding: 1.25rem 1.25rem .75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0,0,0,.7);
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dd-header {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.dd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .15rem; margin-bottom: .5rem; }
.dd-grid a {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .6rem .75rem;
  border-radius: 8px;
  color: var(--text);
  border-left: 2px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.dd-grid a:hover          { background: rgba(194,163,59,.07); border-left-color: var(--gold); color: var(--gold); }
.dd-grid a strong         { font-size: .82rem; font-weight: 600; color: inherit; line-height: 1.2; }
.dd-grid a small          { font-size: .7rem; color: var(--muted); font-weight: 400; }
.dd-grid a:hover small    { color: rgba(194,163,59,.65); }
.nav-dropdown .dd-view-all {
  display: block;
  text-align: center;
  padding: .65rem;
  margin-top: .25rem;
  border-top: 1px solid rgba(255,255,255,.07);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--gold);
  transition: color .15s ease;
}
.nav-dropdown .dd-view-all:hover { color: var(--gold-2); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: .5rem;
  z-index: 101;
}
.nav-close {
  display: none;
}
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav .right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    display: none;
    z-index: 100;
    overflow-y: auto;
    padding: 2rem 1rem;
  }
  .nav .right.nav-open { display: flex; }
  .nav .right .btn { font-size: 1.1rem; padding: .75rem 1.5rem; width: 80vw; max-width: 320px; justify-content: center; }
  .nav-close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: .5rem;
    z-index: 102;
  }
  .nav-dropdown { display: none; }
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  isolation: isolate;
  padding: 4rem 0 2rem;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/hero/hero-bg.jpg') center / cover no-repeat;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: -1;
}
.page-hero h1    { font-size: clamp(2rem, 5vw, 3.25rem); margin: 0 0 1rem; line-height: 1.1; }
.page-hero p     { font-size: 1.1rem; color: #e9e9e9; max-width: 70ch; margin: 0 auto; }
.page-hero .eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .85rem; margin-bottom: .5rem; }

/* ── Hero (Homepage) ── */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 62vh;
  display: flex;
  align-items: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
  padding: 5rem 0 3.5rem;
}
.eyebrow  { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; font-size: .85rem; }
.hero h1  { font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.1; margin: .3rem 0 1rem; }
.hero p   { font-size: 1.1rem; color: #e9e9e9; margin: 0 0 1.25rem; }
.tick     { display: flex; gap: .5rem; align-items: flex-start; margin: .35rem 0; color: #e8e8e8; }
.tick svg { flex: 0 0 18px; margin-top: .2rem; }

.form-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.1rem; }

/* ── Quote Card ── */
.quote-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 1.2rem;
}
.quote-card h3 { margin: .2rem 0 1rem; font-size: 1.1rem; }

/* ── Section Heading ── */
section { padding: 3.5rem 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.4rem, 3.3vw, 2rem); margin: 0; }
.lead { color: #e3e3e3; max-width: 70ch; }
.micro { font-size: .85rem; color: #aaaaaa; }
.tel  { font-weight: 700; color: var(--gold); }

/* ── Stats Row ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin: 2rem 0; }
.stat { text-align: center; padding: 1rem; background: rgba(255,255,255,.04); border-radius: 12px; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-label  { font-size: .9rem; color: #c0c0c0; margin-top: .25rem; }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* ── Pills ── */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.pill     { border: 1px solid rgba(255,255,255,.15); border-radius: 999px; padding: .4rem .8rem; font-size: .85rem; color: #d7d7d7; }

/* ── Grid Layouts ── */
.grid    { display: grid; gap: 1.5rem; }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.grid.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) {
  .grid.g3, .grid.g4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid.g3, .grid.g4 { grid-template-columns: 1fr; }
}

/* ── Cards ── */
.card { background: linear-gradient(180deg, #121212, #0b0b0b); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; transition: transform .3s ease; }
.card:hover { transform: translateY(-5px); }
.card .imgwrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card .imgwrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform .4s ease; }
.card:hover .imgwrap img { transform: scale(1.08); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
}
.card .body  { padding: 1.5rem; }
.card h3     { margin: .1rem 0 .5rem; font-size: 1.1rem; }
.card p      { margin: 0 0 1rem; color: #cfcfcf; font-size: .95rem; line-height: 1.5; }
.card .price { margin-bottom: 1rem; }

/* ── Service Cards ── */
.service-card { background: linear-gradient(180deg, #121212, #0b0b0b); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; overflow: hidden; transition: transform .3s ease; }
.service-card:hover { transform: translateY(-5px); }
.service-card .imgwrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .imgwrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform .4s ease; }
.service-card:hover .imgwrap img { transform: scale(1.08); }
.service-card .body { padding: 1.5rem; }
.service-card h3 { margin: .1rem 0 .5rem; font-size: 1.1rem; color: var(--gold); }
.service-card p  { margin: 0 0 1rem; color: #cfcfcf; font-size: .95rem; line-height: 1.5; }
.service-card .features { list-style: none; padding: 0; margin: 1rem 0; }
.service-card .features li { padding: .25rem 0; font-size: .9rem; color: #d0d0d0; }
.service-card .features li::before { content: "✓"; color: var(--gold); margin-right: .5rem; }

/* ── CTA Section ── */
.cta-section {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.cta-section h2,
.cta-section h3 { font-size: 1.8rem; margin: 0 0 1rem; color: var(--gold); }
.cta-section p  { font-size: 1.1rem; color: #e9e9e9; margin: 0 0 2rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-buttons    { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Reviews ── */
.reviews {
  background: linear-gradient(180deg, #0e0e0e, #0b0b0b);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.reviews .slider {
  display: flex;
  gap: 1rem;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.reviews .slider::-webkit-scrollbar { display: none; }
.reviews .slide {
  scroll-snap-align: start;
  min-width: 320px;
  background: #101010;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1rem;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .08em; }

/* Reviews Grid Page */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.review-card {
  background: linear-gradient(180deg, #181818, #111);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card .review-header { display: flex; align-items: center; gap: .75rem; }
.review-card .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #111; font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card .reviewer-info h4 { margin: 0; font-size: .95rem; color: var(--text); }
.review-card .reviewer-info p  { margin: .2rem 0 0; font-size: .8rem; color: var(--muted); }
.review-card .review-text { color: #e0e0e0; font-size: .95rem; line-height: 1.6; margin: 0; font-style: italic; }
.review-card .review-source { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .4rem; }
/* Review card meta row (template-reviews.php / template-about.php) */
.review-meta { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #111; font-size: 1.1rem;
}
.review-author { font-size: .95rem; font-weight: 600; color: var(--text); }
.review-service { margin-top: .15rem; font-size: .8rem; color: var(--muted); }

.review-stats { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0; }
.review-stat { text-align: center; }
.review-stat .number { font-size: 2.5rem; font-weight: 700; color: var(--gold); display: block; }
.review-stat .label  { font-size: .85rem; color: var(--muted); }

/* ── FAQ ── */
.faq .item { border: 1px solid rgba(255,255,255,.1); border-radius: 14px; margin: .6rem 0; overflow: hidden; }
.faq summary {
  list-style: none;
  padding: 1rem 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .2s ease;
}
.faq .item[open] > summary::after { content: '−'; }
.faq .content { padding: 0 1.1rem 1rem; color: #d9d9d9; }
.faq-filter-btns { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent;
  color: var(--text);
  font-size: .85rem;
  cursor: pointer;
  transition: .2s ease;
  font-family: inherit;
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.faq .item.hidden { display: none; }

/* ── Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .9rem .95rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0f0f0f;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.form-row input::placeholder { color: #9f9f9f; }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-row input.error { border-color: var(--danger); }
.form-label { font-size: .85rem; color: var(--muted); margin-bottom: .35rem; display: block; }

/* Quote form layout */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin: 3rem 0;
}
@media (max-width: 1000px) { .quote-layout { grid-template-columns: 1fr; } }

/* form-layout alias */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin: 3rem 0;
}
@media (max-width: 1000px) { .form-layout { grid-template-columns: 1fr; } }

/* Quote form container */
.quote-form-container {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 2rem 2.5rem;
}
.form-header { margin-bottom: 2rem; }
.form-header h2 { font-size: 1.6rem; margin: 0 0 .5rem; }
.form-header p { color: #c0c0c0; margin: 0; font-size: .95rem; }

.form-section { margin-bottom: 2rem; }
.form-section h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 1.25rem;
  padding-left: .75rem;
  border-left: 3px solid var(--gold);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .9rem; margin-bottom: .4rem; color: #d0d0d0; font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #777; }
.form-group select option { background: #1a1a1a; }

/* Sidebar info cards */
.info-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.info-card h3 { font-size: 1rem; margin: 0 0 1.25rem; font-weight: 700; }
.process-steps { display: flex; flex-direction: column; gap: .75rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step-number {
  width: 32px; height: 32px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #111; font-size: .9rem;
}
.step-content h4 { margin: 0 0 .25rem; font-size: .9rem; font-weight: 600; }
.step-content p  { margin: 0; font-size: .82rem; color: #a0a0a0; }

/* Contact options inside sidebar */
.contact-options { display: flex; flex-direction: column; gap: .6rem; margin-top: .75rem; }
.contact-btn {
  display: flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-size: .9rem;
  text-decoration: none; transition: .2s ease;
}
.contact-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Success modal */
.success-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
  align-items: center; justify-content: center;
}
.success-modal.show { display: flex; }
.modal-content {
  background: #161616;
  border: 1px solid rgba(194,163,59,.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 460px; width: 90%;
  animation: slideUp .4s ease;
}
.modal-header .success-icon { margin-bottom: 1rem; }
.modal-header h2 { color: var(--gold); margin: 0 0 .75rem; }
.modal-header p  { color: #d0d0d0; margin: 0 0 1.5rem; }
.modal-footer    { margin-top: 1.5rem; }

/* Time picker */
.time-picker-wrap { display: flex; align-items: center; gap: .5rem; }
.time-select { flex: 1; }
.time-colon  { font-size: 1.2rem; }
.ampm-toggle { display: flex; gap: .25rem; }
.ampm-radio  { display: none; }
.ampm-btn {
  padding: .5rem .75rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.15);
  cursor: pointer; font-size: .85rem; color: var(--text);
  transition: .2s ease; user-select: none;
}
.ampm-radio:checked + .ampm-btn { background: var(--gold); color: #111; border-color: var(--gold); }

/* Address lookup */
.lookup-container .input-wrapper { display: flex; gap: .5rem; }
.lookup-container .input-wrapper input { flex: 1; }
.btn-input-action {
  white-space: nowrap; padding: .5rem .9rem;
  border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: transparent; color: var(--text);
  font-size: .8rem; cursor: pointer; font-family: inherit; transition: .2s ease;
}
.btn-input-action:hover { border-color: var(--gold); color: var(--gold); }
.manual-grid { display: grid; gap: .5rem; margin-bottom: .5rem; }
.btn-text-action { background: none; border: none; color: var(--gold); font-size: .82rem; cursor: pointer; font-family: inherit; text-decoration: underline; }
.form-note { font-size: .82rem; color: #888; text-align: center; margin-top: .75rem; }
.booking-info { position: sticky; top: 100px; }


.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.step-num {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #111; font-size: .9rem;
  flex-shrink: 0;
}
.step-info h4 { margin: 0 0 .25rem; font-size: .9rem; color: var(--gold); }
.step-info p  { margin: 0; font-size: .8rem; color: var(--muted); }
.included-list { list-style: none; padding: 0; margin: .75rem 0; }
.included-list li { padding: .35rem 0; font-size: .9rem; color: #d0d0d0; display: flex; align-items: center; gap: .5rem; }
.included-list li::before { content: "✓"; color: var(--gold); }

.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1.25rem;
}
.contact-card h4 { margin: 0 0 .75rem; font-size: .9rem; color: var(--gold); }

/* Address autocomplete */
.address-lookup  { position: relative; }
.address-results {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
}
.result-item { padding: .75rem 1rem; cursor: pointer; font-size: .9rem; }
.result-item:hover { background: rgba(194,163,59,.1); color: var(--gold); }
.manual-entry { display: none; }
.manual-entry.active { display: block; }
.link-toggle { font-size: .82rem; color: var(--gold); cursor: pointer; display: inline-block; margin-top: .4rem; }

/* Success modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-card {
  background: #161616;
  border: 1px solid rgba(194,163,59,.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  max-width: 460px;
  width: 90%;
  animation: slideUp .4s ease;
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-card h2 { color: var(--gold); margin: 0 0 .75rem; }
.modal-card p  { color: #d0d0d0; margin: 0 0 1.5rem; }

/* ── Tables ── */
.specs-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.specs-table th, .specs-table td { padding: .8rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,.1); }
.specs-table th { color: var(--gold); font-weight: 600; font-size: .9rem; }
.specs-table td { color: #e0e0e0; }

/* ── Vehicle Pages ── */
.vehicle-hero {
  position: relative;
  isolation: isolate;
  padding: 2rem 0;
  text-align: center;
}
.vehicle-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545243424-0ce743321e11?q=80&w=1920&auto=format&fit=crop') center / cover no-repeat;
  opacity: .3;
  z-index: -2;
}
.vehicle-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.7), var(--dark) 70%);
  z-index: -1;
}
.breadcrumb   { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; text-align: left; }
.breadcrumb a { color: var(--gold); }
.vehicle-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.vehicle-title h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0; }
.badge-large { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: .4rem 1rem; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.vehicle-hero-desc { max-width: 62ch; margin: 0 auto; color: #e0e0e0; font-size: 1.05rem; text-align: center; line-height: 1.65; }
.seats { display: flex; align-items: center; gap: .4rem; font-size: .95rem; color: #c0c0c0; }
.services-section { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.services-section h3 { color: var(--gold); font-size: 1rem; margin: 0 0 1rem; }
.service-tags { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.service-tag { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: #e0e0e0; padding: .5rem .8rem; border-radius: 999px; text-align: center; font-size: .85rem; font-weight: 500; }
.specs-heading { color: var(--gold); font-size: 1.1rem; margin: 0 0 .5rem; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  margin: 3rem auto;
  max-width: 1400px;
}
@media (max-width: 1200px) { .content-grid { grid-template-columns: 2fr 1fr; } }
@media (max-width: 900px)  { .content-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* Gallery */
.gallery { margin-bottom: 2rem; }
.main-image { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 16px; cursor: pointer; transition: opacity .3s ease; }
.gallery-display { width: 100%; aspect-ratio: 16/10; overflow: hidden; border-radius: 16px; margin-bottom: 1rem; }
.gallery-display img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s ease; }
.gallery-thumbnails { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: .75rem; }
.gallery-thumbnail {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .3s ease;
}
.gallery-thumbnail:hover   { border-color: rgba(194,163,59,.5); transform: translateY(-2px); }
.gallery-thumbnail.active  { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.gallery-thumbnail img     { width: 100%; height: 100%; object-fit: cover; }

/* Feature cards */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin: 2rem 0; }
.feature-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 1rem; }
.feature-card h4 { margin: 0 0 .5rem; color: var(--gold); font-size: .9rem; text-transform: uppercase; letter-spacing: .05em; }
.feature-card p  { margin: 0; font-size: .95rem; color: #e0e0e0; }

/* Vehicle booking aside */
.services-section { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: .8rem; margin-top: 1rem; }
.service-tag {
  background: rgba(194,163,59,.15);
  border: 1px solid rgba(194,163,59,.3);
  color: var(--gold);
  padding: .5rem .8rem;
  border-radius: 999px;
  text-align: center;
  font-size: .85rem;
  font-weight: 500;
}
.booking-card {
  background: linear-gradient(135deg, rgba(194,163,59,.1), rgba(208,178,76,.05));
  border: 1px solid rgba(194,163,59,.2);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.price-display { font-size: 1.8rem; font-weight: 700; color: var(--gold); margin-bottom: .5rem; }
.price-note    { font-size: .85rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── Sticky CTA ── */
.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.08);
  z-index: 45;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4);
}
.sticky-cta .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  padding: .8rem 0;
  flex-wrap: wrap;
}
.tel { font-weight: 700; color: var(--gold); }

/* ── Fleet filter buttons ── */
.fleet-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ── Locations ── */
.loc-regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.loc-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.5rem; }
.loc-card h3 { margin: 0 0 1rem; color: var(--gold); font-size: 1.05rem; }
.loc-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.loc-tag  { font-size: .82rem; color: #d0d0d0; background: rgba(255,255,255,.06); border-radius: 999px; padding: .3rem .7rem; }
.also-serving { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.loc-cta  { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 2rem 0; }

/* ── Trust & Social Proof ── */
.trust-indicators { display: flex; align-items: center; gap: 2rem; margin: 1.5rem 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .5rem; color: #e9e9e9; font-size: .9rem; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.urgency-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  padding: .75rem 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
  font-size: .9rem;
}

.value-props { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 2rem 0; }
.value-prop { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 1.5rem; text-align: center; }
.value-prop-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: #111; font-size: 1.5rem;
}
.value-prop h4 { margin: 0 0 .75rem; color: var(--gold); font-size: 1.1rem; }
.value-prop p  { margin: 0; color: #d0d0d0; font-size: .95rem; line-height: 1.5; }

/* ── About Page ── */
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-story-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: .5rem 0 1.25rem; }
.about-story-text p  { color: #d9d9d9; line-height: 1.75; margin-bottom: 1rem; }
.about-story-text .lead { font-size: 1.05rem; color: #e8e8e8; }
.about-story-text .btn { display: inline-flex; margin-top: .75rem; }
.about-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-media { order: -1; }
  .about-hero-img { aspect-ratio: 16 / 9; }
}

/* ── Our Promise ── */
.promise-intro-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.promise-intro-inner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: .5rem 0 1.25rem; }
.promise-guarantee { background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.pull-quote { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--gold); text-align: center; line-height: 1.4; margin: 0; font-style: italic; border: none; padding: 3rem 1rem; }
.promise-quote { background: rgba(194,163,59,.05); border-top: 1px solid rgba(194,163,59,.15); border-bottom: 1px solid rgba(194,163,59,.15); }
.promise-areas { background: rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.07); }
.gold-divider { width: 60px; height: 2px; background: linear-gradient(135deg, var(--gold), var(--gold-2)); border-radius: 2px; }
/* ── Service coverage groups (Areas Covered section) ── */
.svc-coverage-list { display: flex; flex-direction: column; gap: 2rem; }
.svc-coverage-group { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; }
.svc-coverage-title { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--gold); margin: 0 0 .85rem; }
.svc-coverage-pills { display: flex; flex-wrap: wrap; gap: .35rem; }
.svc-pill { font-size: .8rem; color: #c8c8c8; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 999px; padding: .28rem .7rem; text-decoration: none; transition: background .18s, color .18s, border-color .18s; white-space: nowrap; }
.svc-pill:hover { background: rgba(194,163,59,.12); border-color: rgba(194,163,59,.4); color: var(--gold); }
.area-col h4 { color: var(--gold); font-size: .9rem; font-weight: 600; margin: 0 0 .75rem; text-transform: uppercase; letter-spacing: .06em; }
.area-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.area-col ul li { font-size: .85rem; color: #c0c0c0; padding-left: .9rem; position: relative; }
.area-col ul li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }
.area-col ul li a { color: #c0c0c0; text-decoration: none; }
.area-col ul li a:hover { color: var(--gold); }
@media (max-width: 1000px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .areas-grid { grid-template-columns: 1fr; } }

/* ── Locations page ── */
.loc-section { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.loc-section-head { text-align: center; margin-bottom: 2.5rem; }
.loc-section-head .eyebrow { margin-bottom: .35rem; }
.loc-section-head h2 { margin: 0 0 .75rem; }
.loc-section-head .gold-divider { margin: 0 auto; }
.loc-intro { max-width: 760px; margin: 0 auto 2rem; text-align: center; color: #d0d0d0; line-height: 1.75; }
.loc-intro a { color: var(--gold); }
.loc-regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.loc-region { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 1.5rem; }
.loc-region h3 { color: var(--gold); font-size: 1rem; font-weight: 600; margin: 0 0 1rem; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: .75rem; }
.loc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.loc-list li a { font-size: .85rem; color: #d0d0d0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; padding: .3rem .75rem; display: inline-block; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
.loc-list li a:hover { background: rgba(194,163,59,.12); border-color: var(--gold); color: var(--gold); }
.loc-tag-cloud { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.loc-tag-cloud p { color: #a0a0a0; font-size: .9rem; margin: 0 0 1rem; text-align: center; }
.loc-also-tags { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; }
.loc-also-tags a { font-size: .82rem; color: #c0c0c0; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 999px; padding: .3rem .75rem; text-decoration: none; transition: background .2s, color .2s, border-color .2s; }
.loc-also-tags a:hover { background: rgba(194,163,59,.12); border-color: var(--gold); color: var(--gold); }

/* ── Vehicle-by-location list ── */
.loc-vehicles-list { display: flex; flex-direction: column; gap: 1.5rem; }
.loc-vehicle-block { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: 18px; overflow: hidden; transition: border-color .2s; }
.loc-vehicle-block:hover { border-color: rgba(194,163,59,.2); }
.loc-vehicle-block-head { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 1.75rem; background: rgba(255,255,255,.03); border-bottom: 1px solid rgba(255,255,255,.07); flex-wrap: wrap; }
.loc-vehicle-info h3 { margin: 0 0 .35rem; font-size: 1.1rem; font-weight: 600; }
.loc-vehicle-info h3 a { color: var(--gold); text-decoration: none; }
.loc-vehicle-info h3 a:hover { text-decoration: underline; }
.loc-vehicle-info p { color: #b0b0b0; font-size: .88rem; line-height: 1.55; margin: 0; max-width: 65ch; }
.loc-vehicle-block-head .btn { flex-shrink: 0; }
.loc-vehicle-regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0; }
.loc-vehicle-region { padding: 1.1rem 1.4rem; border-right: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.loc-vehicle-region:last-child { border-right: none; }
.loc-vehicle-region h4 { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin: 0 0 .6rem; }
.loc-vehicle-region .loc-also-tags { justify-content: flex-start; gap: .3rem; }

/* ── promise-areas uniform heading ── */
.promise-areas .loc-section-head { padding-top: 3rem; }

/* ── Thank You Page ── */
.thankyou-section { padding: 5rem 0; }
.thankyou-card { max-width: 680px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 3rem 2.5rem; text-align: center; }
.thankyou-icon { margin-bottom: 1.5rem; }
.thankyou-card h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin: 0 0 1rem; }
.thankyou-lead { color: #d0d0d0; font-size: 1.05rem; line-height: 1.75; margin: 0 0 2.5rem; }
.thankyou-next { text-align: left; border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; margin-bottom: 2.5rem; }
.thankyou-next h2 { text-align: center; font-size: 1.2rem; margin: 0 0 1.5rem; color: var(--gold); }
.thankyou-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.25rem; counter-reset: none; }
.thankyou-steps li { display: flex; align-items: flex-start; gap: 1rem; }
.step-num { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: #111; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; margin-top: .1rem; }
.thankyou-steps li div strong { display: block; color: #fff; margin-bottom: .25rem; }
.thankyou-steps li div p { color: #a0a0a0; font-size: .9rem; margin: 0; line-height: 1.6; }
.thankyou-contact { border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem; }
.thankyou-contact > p { color: #a0a0a0; margin: 0 0 1rem; }
.thankyou-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Privacy Policy ── */
.privacy-content { max-width: 800px; margin: 0 auto; }
.privacy-block { margin-bottom: 2.5rem; }
.privacy-block h2 { font-size: 1.35rem; margin: 0 0 1rem; color: var(--gold); border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: .5rem; }
.privacy-block p { color: #d8d8d8; line-height: 1.75; margin-bottom: 1rem; font-size: .97rem; }
.privacy-block p:last-child { margin-bottom: 0; }
.privacy-block a { color: var(--gold); text-decoration: underline; }
.privacy-block a:hover { color: var(--gold-2); }
.privacy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6rem; }
.privacy-list li { position: relative; padding-left: 1.4rem; color: #d8d8d8; font-size: .97rem; line-height: 1.6; }
.privacy-list li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }
.gdpr-rights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 1.25rem 0; }
.gdpr-right { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-left: 3px solid var(--gold); border-radius: 10px; padding: 1rem 1.1rem; }
.gdpr-right h4 { margin: 0 0 .4rem; color: var(--gold); font-size: .9rem; }
.gdpr-right p { margin: 0; color: #c8c8c8; font-size: .88rem; line-height: 1.55; }
@media (max-width: 640px) { .gdpr-rights { grid-template-columns: 1fr; } }

/* ── Footer ── */
footer {
  padding: 2rem 0 0 0;
  background: var(--dark);
  color: #c9c9c9;
  margin-top: 60px;
}
.footer-compact {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  align-items: start;
}
.footer-brand .footer-tagline { color: #c0c0c0; margin: 0 0 1rem; font-size: .9rem; }
.footer-contact { display: flex; flex-direction: column; gap: .4rem; font-size: .85rem; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.link-group h4 { color: var(--gold); margin: 0 0 .75rem; font-size: .95rem; font-weight: 600; }
.links-compact { display: flex; flex-direction: column; gap: .4rem; }
.links-compact a { color: #c0c0c0; font-size: .85rem; transition: color .2s ease; }
.links-compact a:hover { color: var(--gold); }
.footer-cta { text-align: center; }
.cta-content { margin-bottom: 1rem; }
.cta-content strong { color: var(--text); font-size: 1rem; display: block; margin-bottom: .25rem; }
.cta-content p  { color: #a0a0a0; font-size: .8rem; margin: 0; }
.footer-cta .cta-buttons    { display: flex; flex-direction: column; gap: .5rem; }
.footer-bottom-compact { background: rgba(0,0,0,.4); border-top: 1px solid rgba(255,255,255,.05); padding: 1rem 0; }
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #a0a0a0;
}
.footer-badges { display: flex; align-items: center; gap: .5rem; }

/* ══════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════ */

/* ── Tablet  (max 1024px) ── */
@media (max-width: 1024px) {

  /* Hero quote card — shrink sidebar */
  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
  }

  /* Footer — collapse to 2 cols */
  .footer-compact {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .footer-cta {
    grid-column: 1 / -1;
    text-align: left;
  }
  .footer-cta .cta-buttons { flex-direction: row; flex-wrap: wrap; }

  /* CTA section */
  .cta-section { padding: 2.5rem 1.75rem; }

  /* Service tags 2-col fine, keep */
  /* Loc cols */
  .loc-regions { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
}

/* ── Mobile  (max 767px) ── */
@media (max-width: 767px) {

  /* ── Global spacing ── */
  section { padding: 2.5rem 0; }
  .container { width: 94vw; }

  /* ── Headings ── */
  h1, h2 { word-break: break-word; }
  .section-head { flex-direction: column; align-items: flex-start; }

  /* ── Hero ── */
  .hero { min-height: auto; }
  .hero-inner {
    display: flex;
    flex-direction: column;
    padding: 3rem 0 2rem;
    gap: 1.5rem;
  }
  /* Hide hero quote card on mobile — users tap a quote button instead */
  .hero-inner .quote-card { display: none; }
  .hero h1  { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hero p   { font-size: 1rem; }
  .form-actions { flex-direction: column; gap: .6rem; }
  .form-actions .btn { width: 100%; justify-content: center; }

  /* ── Page hero ── */
  .page-hero { padding: 2.5rem 0 1.5rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.2rem); }

  /* ── Buttons ── */
  .btn { padding: .8rem 1rem; font-size: .9rem; }

  /* ── Stats ── */
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* ── Cards / grid ── */
  .grid.g3,
  .grid.g4 { grid-template-columns: 1fr; }

  /* ── Forms ── */
  .form-row { grid-template-columns: 1fr; }
  .quote-form-container { padding: 1.5rem 1rem; }
  .form-header h2 { font-size: 1.35rem; }

  /* ── CTA section ── */
  .cta-section { padding: 2rem 1.25rem; margin: 2rem 0; border-radius: 14px; }
  .cta-section h2,
  .cta-section h3 { font-size: 1.35rem; }
  .cta-section p { font-size: .95rem; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { justify-content: center; }

  /* ── Reviews ── */
  .reviews .slide { min-width: 280px; }
  .review-stats { gap: 1.25rem; }

  /* ── FAQ ── */
  .faq summary { font-size: .95rem; }

  /* ── Service tags (vehicle pages) ── */
  .service-tags { grid-template-columns: 1fr; }

  /* ── Vehicle content grid ── */
  .content-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .booking-card { position: static; } /* un-stick sidebar on mobile */

  /* ── Sticky CTA ── */
  .sticky-cta .inner {
    flex-direction: column;
    text-align: center;
    gap: .6rem;
    padding: .75rem 0;
  }
  .sticky-cta .inner .btn { width: 100%; justify-content: center; }

  /* ── Footer ── */
  .footer-compact {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-cta { text-align: left; }
  .footer-cta .cta-buttons { flex-direction: row; flex-wrap: wrap; gap: .5rem; }
  .footer-bottom-flex {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }

  /* ── Locations ── */
  .loc-regions { grid-template-columns: 1fr; }
  .loc-vehicles-list { gap: 1rem; }
  .loc-vehicle-regions { grid-template-columns: 1fr 1fr; }
  .loc-section { padding: 2.5rem 0; }
  .loc-cta { flex-direction: column; align-items: stretch; }
  .loc-cta .btn { justify-content: center; }

  /* ── About ── */
  .about-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-story-media { order: -1; }
  .about-hero-img { aspect-ratio: 16 / 9; }

  /* ── Promise / Areas ── */
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .pull-quote { font-size: clamp(1.2rem, 5vw, 1.8rem); padding: 2rem .5rem; }

  /* ── Trust indicators ── */
  .trust-indicators { gap: 1rem; }

  /* ── Value props ── */
  .value-props { grid-template-columns: 1fr; }

  /* ── Thank You ── */
  .thankyou-card { padding: 2rem 1.25rem; }
  .thankyou-btns { flex-direction: column; align-items: stretch; }
  .thankyou-btns .btn { justify-content: center; }

  /* ── GDPR rights ── */
  .gdpr-rights { grid-template-columns: 1fr; }

  /* ── Privacy ── */
  .privacy-content { max-width: 100%; }
}

/* ── Very small phones (max 420px) ── */
@media (max-width: 420px) {
  .footer-links { grid-template-columns: 1fr; }
  .areas-grid   { grid-template-columns: 1fr; }
  .stats-row    { grid-template-columns: 1fr; }
  .reviews .slide { min-width: calc(100vw - 3rem); }
  .nav-dropdown  { width: calc(100vw - 2rem); left: 0; transform: none; }
}

/* ── Sticky Social Bar ── */
.social-sticky {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: .45rem;
  z-index: 1000;
}
.social-sticky a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.95);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 0;
  border-radius: 0 12px 12px 0;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.social-sticky .social-tiktok    { color: #ffffff; background: #000000; }
.social-sticky .social-instagram { color: #E1306C; }
.social-sticky .social-facebook  { color: #1877F2; }
.social-sticky .social-whatsapp  { color: #25D366; }
.social-sticky a:hover            { transform: translateX(4px); }
.social-sticky .social-tiktok:hover    { background: #2d2d2d; color: #ffffff; }
.social-sticky .social-instagram:hover { background: rgba(225,48,108,.15); color: #E1306C; }
.social-sticky .social-facebook:hover  { background: rgba(24,119,242,.15); color: #1877F2; }
.social-sticky .social-whatsapp:hover  { background: rgba(37,211,102,.15); color: #25D366; }
.social-sticky svg { width: 20px; height: 20px; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  z-index: 1000;
  transition: all .3s ease;
}
.whatsapp-float:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.6); color: white; }
.whatsapp-float svg   { width: 28px; height: 28px; }

/* ── 404 ── */
.error-404 { text-align: center; padding: 6rem 0; }
.error-404 .error-code { font-size: clamp(5rem, 15vw, 10rem); font-weight: 700; color: var(--gold); line-height: 1; margin: 0; }
.error-404 h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); margin: 1rem 0; }
.error-404 p  { color: var(--muted); max-width: 50ch; margin: 0 auto 2rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .footer-compact { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 0 1rem; text-align: center; }
  .footer-links { grid-template-columns: 1fr; gap: 1rem; }
  .links-compact { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: .75rem; }
  .footer-contact { align-items: center; }
  .footer-bottom-flex { flex-direction: column; gap: .5rem; text-align: center; }
  .vehicle-title { flex-direction: column; gap: 1rem; }
  .nav-dropdown { display: none !important; }
}
@media (max-width: 768px) {
  .container-full { padding: 0 1rem; }
  .whatsapp-float { bottom: 15px; right: 15px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .social-sticky { top: auto; bottom: 84px; transform: none; }
  .social-sticky a { width: 40px; height: 40px; }
  .trust-indicators { justify-content: center; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   LOCATION PAGE TEMPLATE  (template-location-page.php)
   ══════════════════════════════════════════════════ */

/* ── Hero ── */
.loc-pg-hero {
  position: relative;
  isolation: isolate;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.loc-pg-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.65) 0%, rgba(0,0,0,.45) 55%, var(--dark) 100%),
    url('../images/hero/hero-bg.jpg') center / cover no-repeat;
  z-index: -1;
}
.loc-pg-hero-inner { padding: 5rem 0 3.5rem; }
.loc-pg-hero-inner .breadcrumb { margin-bottom: 1rem; }
.loc-pg-hero-inner .eyebrow   { margin-bottom: .4rem; }
.loc-pg-hero-inner h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  line-height: 1.1;
  margin: .25rem 0 1rem;
}
.loc-pg-gold { color: var(--gold); }
.loc-pg-sub  {
  font-size: 1.1rem;
  color: #e8e8e8;
  max-width: 62ch;
  line-height: 1.65;
  margin: 0 0 1.25rem;
}
.loc-pg-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem .7rem;
  font-size: .84rem;
  color: #ccc;
  margin-bottom: 1.75rem;
}
.loc-pg-sep { color: rgba(255,255,255,.25); }
.loc-pg-hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── Stats bar ── */
.loc-pg-stats-bar {
  background: rgba(255,255,255,.035);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 0;
}
.loc-pg-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.loc-pg-stat { text-align: center; }
.loc-pg-stat-num {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.loc-pg-stat-lbl { font-size: .75rem; color: #999; }
.loc-pg-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* ── Intro ── */
.loc-pg-intro { padding: 3.5rem 0; }
.loc-pg-intro-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3.5rem;
  align-items: start;
}
.loc-pg-intro-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: .3rem 0 .75rem;
}
.loc-pg-intro-text p  { color: #d0d0d0; line-height: 1.8; margin-bottom: 1rem; }
.loc-pg-intro-btns    { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }

/* Booking cards */
.loc-pg-booking-cards { display: flex; flex-direction: column; gap: 1rem; }
.loc-pg-book-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.loc-pg-book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.4);
}
.loc-pg-book-wedding { background: rgba(194,163,59,.07); border-color: rgba(194,163,59,.2); }
.loc-pg-book-prom    { background: rgba(255,255,255,.04); }
.loc-pg-book-other   { background: rgba(255,255,255,.03); }
.loc-pg-book-body h3 { color: var(--gold); font-size: 1rem; margin: 0 0 .35rem; }
.loc-pg-book-body p  { color: #c0c0c0; font-size: .85rem; line-height: 1.55; margin: 0 0 .5rem; }
.loc-pg-book-cta     { font-size: .82rem; font-weight: 700; color: var(--gold); }

/* ── Why ── */
.loc-pg-why { padding: 3.5rem 0; background: rgba(255,255,255,.015); border-top: 1px solid rgba(255,255,255,.06); }
.loc-pg-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.loc-pg-why-item {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  transition: border-color .2s;
}
.loc-pg-why-item:hover { border-color: rgba(194,163,59,.25); }
.loc-pg-why-item h4 { color: var(--gold); font-size: .95rem; margin: 0 0 .4rem; }
.loc-pg-why-item p  { color: #c0c0c0; font-size: .87rem; line-height: 1.65; margin: 0; }

/* ── Mid CTA band ── */
.loc-pg-mid-cta {
  background: linear-gradient(135deg, var(--gold) 0%, #c8860a 100%);
  padding: 2.75rem 0;
}
.loc-pg-mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
/* ── Location page: final CTA full-width override ── */
.loc-pg-final-cta {
  border-radius: 0;
  border-left: none;
  border-right: none;
  margin: 0;
  padding: 4rem 0;
  background: var(--mid);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.loc-pg-final-cta h2 { color: var(--gold); }

.loc-pg-mid-cta h3 { font-size: clamp(1.2rem,3vw,1.6rem); color: #0c0900; margin: 0 0 .35rem; }
.loc-pg-mid-cta p  { color: rgba(0,0,0,.6); margin: 0; font-size: .92rem; }
.loc-pg-mid-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
/* Buttons on gold mid-CTA band — override to white */
.loc-pg-mid-cta .btn.primary            { background: #fff; color: #111; border-color: #fff; }
.loc-pg-mid-cta .btn.primary:hover      { background: #f0f0f0; filter: none; }
.loc-pg-mid-cta .btn-prom-quote         { background: transparent; color: #111; border: 1.5px solid #111; }
.loc-pg-mid-cta .btn-prom-quote:hover   { background: rgba(0,0,0,.08); }
.loc-pg-mid-cta .btn-hero-tel           { background: transparent; color: #111; border-color: #111; }
.loc-pg-mid-cta .btn-hero-tel:hover     { background: rgba(0,0,0,.08); color: #111; }

/* ── How it works ── */
.loc-pg-hiw { padding: 3.5rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.loc-pg-hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ── Nearby ── */
.loc-pg-nearby { padding: 3rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.loc-pg-nearby-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem;
  margin: 0 auto 1.25rem;
  max-width: 900px;
}
.loc-pg-nearby-pill {
  font-size: .84rem;
  color: #d0d0d0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  padding: .3rem .8rem;
}
.loc-pg-nearby-note { text-align: center; color: #888; font-size: .85rem; margin: 0; }
.loc-pg-nearby-note a { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .loc-pg-intro-inner { grid-template-columns: 1fr 320px; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .loc-pg-why-grid  { grid-template-columns: 1fr 1fr; }
  .loc-pg-hiw-grid  { grid-template-columns: 1fr 1fr; }
  .loc-pg-mid-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 767px) {
  .loc-pg-hero { min-height: auto; }
  .loc-pg-hero-inner { padding: 3.5rem 0 2.5rem; }
  .loc-pg-hero-inner h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .loc-pg-sep { display: none; }
  .loc-pg-intro { padding: 3rem 0; }
  .loc-pg-intro-inner { grid-template-columns: 1fr; }
  .loc-pg-why-grid  { grid-template-columns: 1fr; }
  .loc-pg-hiw-grid  { grid-template-columns: 1fr; }
  .loc-pg-stat-div  { display: none; }
  .loc-pg-mid-cta-btns .btn { width: 100%; text-align: center; }
  .loc-pg-fleet-grid { grid-template-columns: 1fr; }
}

/* ───────── Location Page — Fleet Showcase ───────── */
.loc-pg-fleet {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.loc-pg-fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.loc-pg-fleet-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  display: flex;
  flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.loc-pg-fleet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194,163,59,.3);
}
.loc-pg-fleet-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  margin: 0;
}
.loc-pg-fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.loc-pg-fleet-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--gold);
  color: #000;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .25rem .65rem;
  border-radius: 6px;
  line-height: 1.4;
}
.loc-pg-fleet-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex: 1;
}
.loc-pg-fleet-body h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin: 0;
}
.loc-pg-fleet-body p {
  color: #cfcfcf;
  font-size: .88rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.loc-pg-fleet-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.loc-pg-fleet-pills .pill {
  font-size: .72rem;
  padding: .2rem .6rem;
  border-radius: 4px;
  background: rgba(194,163,59,.12);
  color: var(--gold-2);
  border: 1px solid rgba(194,163,59,.25);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.loc-pg-fleet-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .25rem;
  flex-wrap: wrap;
}
.loc-pg-fleet-footer .btn {
  font-size: .82rem;
  padding: .55rem 1.25rem;
}
.loc-pg-fleet-more {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.loc-pg-fleet-more:hover { color: var(--gold); }
@media (max-width: 1024px) {
  .loc-pg-fleet-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — ADDITIONAL / GAP-FILL RULES
   ══════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  /* Quote/booking sidebar: un-stick so it doesn't float mid-page */
  .booking-info { position: static; }
}

/* ── Quote form — address row + time picker on small tablets/phones ── */
@media (max-width: 640px) {
  /* "Enter Manually" button sits next to the input — stack below on small screens */
  .lookup-container .input-wrapper { flex-direction: column; align-items: stretch; }
  .btn-input-action { width: 100%; text-align: center; }

  /* Time picker: let selects + AM/PM toggle wrap onto second line */
  .time-picker-wrap { flex-wrap: wrap; }
  .time-select      { flex: 1 1 60px; }
  .ampm-toggle      { width: 100%; }
}

/* ── Very small phones (≤420px) — additional fixes ── */
@media (max-width: 420px) {
  /* Location vehicle regions: 2-col can be cramped at 320px */
  .loc-vehicle-regions { grid-template-columns: 1fr; }

  /* Spec table: guarantee it won't overflow its card */
  .booking-card    { overflow-x: auto; }
  .specs-table th,
  .specs-table td  { font-size: .82rem; padding: .55rem .45rem; }

  /* Form actions: all buttons full-width on tiny screens */
  .form-actions .btn     { width: 100%; justify-content: center; }
  .loc-pg-hero-btns .btn { width: 100%; justify-content: center; }
  .loc-pg-intro-btns .btn { width: 100%; justify-content: center; }

  /* Mid-CTA gold band buttons already full-width via existing rule — reinforce */
  .loc-pg-mid-cta-btns { flex-direction: column; }
  .loc-pg-mid-cta-btns .btn { width: 100%; text-align: center; }

  /* Footer: collapse CTA buttons to column */
  .footer-cta .cta-buttons { flex-direction: column; }

  /* Thankyou page buttons */
  .thankyou-btns .btn { width: 100%; justify-content: center; }

  /* Quote form: reduce container padding */
  .quote-form-container { padding: 1.25rem .875rem; }
}

/* ── Mobile nav: ensure dropdown is always hidden when nav is open ── */
@media (max-width: 900px) {
  .nav-dropdown-wrap { position: static; }
  .nav-dropdown       { display: none !important; }

  /* Sticky CTA bar: buttons stack to 100% width */
  .sticky-cta .inner .btn { flex: 1 1 auto; text-align: center; }

  /* Fleet card footer: allow book button to go full-width */
  .loc-pg-fleet-footer { flex-direction: column; align-items: stretch; }
  .loc-pg-fleet-footer .btn { text-align: center; }
}

/* ── Tablet hero: quote card sits below on 768–900px range ── */
@media (min-width: 768px) and (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-inner .quote-card { display: none; }
}

/* ── General mobile image safety ── */
img { max-width: 100%; height: auto; }
.gallery-display img,
.loc-pg-fleet-img img,
.main-image,
.about-hero-img { width: 100%; }

/* ── Horizontal scroll prevention ── */
body { overflow-x: hidden; }
.hero, .loc-pg-hero { overflow: hidden; }
