/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* Brand */
  --primary:        #141414;
  --primary-mid:    #252525;
  --primary-light:  #3a3a3a;
  --accent:         #1aab6d;
  --accent-light:   #28d48a;
  --accent-dark:    #128050;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f8f9fb;
  --light-gray:     #f1f4f8;
  --mid-gray:       #dde3ec;
  --dark-gray:      #556070;
  --text:           #1a2537;
  --text-light:     #64748b;

  /* ── FLEET design tokens ──────────────────────────────── */
  --fleet-bg:           #f5f6f8;
  --fleet-panel:        #ffffff;
  --fleet-border:       #e2e6ed;
  --fleet-label:        #6b7a90;
  --fleet-spec-font:    "ui-monospace", "SFMono-Regular", monospace;
  --fleet-heading-size: 1.1rem;
  --fleet-radius:       4px;
  --fleet-btn-bg:       var(--primary);
  --fleet-btn-text:     #ffffff;
  --fleet-btn-radius:   3px;
  --fleet-shadow:       0 1px 4px rgba(0,0,0,0.08), 0 0 0 1px var(--fleet-border);

  /* ── SERVICE design tokens ────────────────────────────── */
  --svc-bg:             var(--primary);
  --svc-panel:          var(--primary-mid);
  --svc-border:         rgba(255,255,255,0.12);
  --svc-heading-size:   2.4rem;
  --svc-heading-weight: 800;
  --svc-accent-bar:     var(--accent);
  --svc-radius:         0px;
  --svc-btn-bg:         var(--accent);
  --svc-btn-text:       #ffffff;
  --svc-btn-radius:     0px;
  --svc-shadow:         none;

  /* Shared */
  --radius:         6px;
  --radius-lg:      14px;
  --shadow:         0 2px 16px rgba(0,0,0,.09);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.16);
  --transition:     .25s ease;
  --header-h:       72px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
table { border-collapse: collapse; }

/* ── 3. LAYOUT UTILITIES ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 560px;
}

/* Base buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-primary      { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-light); }

.btn-accent       { background: var(--accent); color: var(--white); }
.btn-accent:hover  { background: var(--accent-dark); }

.btn-outline      { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }

.btn-ghost-white  { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }

.btn-white        { background: white; color: var(--primary); }
.btn-white:hover   { background: var(--off-white); }

.btn-white-outline { background: transparent; color: white; border: 2px solid white; }
.btn-white-outline:hover { background: white; color: var(--primary); }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* Inline links on light backgrounds */
p a, li a {
  color: var(--accent-dark);
  text-decoration: underline;
}
p a:hover, li a:hover { color: var(--accent); }

/* ── 4. HEADER & NAV ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--primary);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header:not(.opaque) { background: transparent; }
.site-header.scrolled,
.site-header.opaque {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 24px;
}

/* Brand */
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-icon { flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
}
.brand-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  line-height: 1;
}

/* Desktop nav */
.desktop-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--accent-light); }

.nav-chevron { transition: transform var(--transition); flex-shrink: 0; }
.nav-item.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
}
.nav-item.has-dropdown:hover .dropdown { display: block; }

.dropdown-item {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition);
}
.dropdown-item:hover { background: var(--light-gray); color: var(--accent-dark); }
.dropdown-all { color: var(--accent-dark); font-weight: 600; border-top: 1px solid var(--mid-gray); margin-top: 4px; }

/* Nav CTA */
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-phone:hover { color: var(--accent-light); }

/* Mobile toggle */
.mob-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mob-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile nav drawer */
#mob-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--primary-mid);
  z-index: 999;
  transform: translateY(-110%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .35s ease, visibility .35s ease;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
#mob-nav.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.mob-nav-inner { padding: 16px 0 24px; }

.mob-link {
  display: block;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
}
.mob-link.active { color: var(--accent-light); }
.mob-link:hover { background: rgba(255,255,255,0.05); }

.mob-group-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mob-group-header .mob-link { flex: 1; border-bottom: none; }
.mob-expand {
  color: white;
  font-size: 1.2rem;
  padding: 14px 24px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: rgba(0,0,0,0.15);
}
.mob-sub-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 10px 24px 10px 36px;
  text-decoration: none;
}
.mob-sub-link:hover { color: var(--accent-light); }

.mob-cta { padding: 20px 24px 0; }
.mob-cta .btn-block { text-align: center; }

/* Page body offset for fixed header */
body { padding-top: var(--header-h); }
.hero { margin-top: calc(-1 * var(--header-h)); padding-top: var(--header-h); }

/* Responsive nav */
@media (max-width: 1024px) {
  .desktop-nav   { display: none !important; }
  .nav-cta.desktop-only,
  .desktop-only  { display: none !important; }
  .mob-toggle    { display: flex; }
  #mob-nav       { display: block; }
}

/* ── 5. HOMEPAGE ──────────────────────────────────────────── */

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  background:
    linear-gradient(to right,
      rgba(10,31,60,0.97) 0%,
      rgba(10,31,60,0.85) 45%,
      rgba(10,31,60,0.30) 75%,
      rgba(10,31,60,0.0)  100%
    ),
    url('/img/charter-bus-hero-2.jpg') center 40% / cover no-repeat;
  overflow: hidden;
}

.hero-overlay { display: none; }

.hero-inner { position: relative; z-index: 1; }

.hero-content {
  max-width: 580px;
  padding: 100px 0 80px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.65;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-pill {
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
}

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.scroll-arrow {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  border: none;
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Credential strip */
.cred-strip {
  background: var(--accent);
  padding: 0;
}
.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  height: 52px;
  gap: 0;
}
.cred-strip-item {
  color: white;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0 20px;
}
.cred-strip-div { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* HP Fleet section */
.hp-fleet { background: var(--off-white); }

.fleet-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fleet-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fleet-card-img-wrap { position: relative; }

.fleet-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.fleet-card-body { padding: 20px 24px 24px; }
.fleet-card-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.fleet-card-body h3 a { color: var(--text); text-decoration: none; }
.fleet-card-body h3 a:hover { color: var(--accent-dark); text-decoration: none; }
.fleet-card-body > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; }

.fleet-card-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.fleet-card-pill {
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 100px;
}

.fleet-card-actions { display: flex; gap: 10px; }

/* HP Why */
.hp-why { background: var(--primary); }
.hp-why .section-heading { color: white; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { color: white; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.6; }

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-top: 8px;
}
.cert-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* HP Services */
.hp-services { background: var(--white); }

.svc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
}
.svc-card-icon { font-size: 2.2rem; margin-bottom: 14px; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.svc-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.svc-card-link { font-size: 0.88rem; font-weight: 600; color: var(--accent-dark); text-decoration: none; }
.svc-card-link:hover { color: var(--accent); text-decoration: underline; }

/* HP How it works */
.hp-how { background: var(--light-gray); }

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

.step-connector {
  flex: 0 0 40px;
  height: 2px;
  background: var(--mid-gray);
  align-self: center;
  margin-top: -60px;
  border-style: dashed;
}

/* HP Testimonials */
.hp-testimonials { background: var(--primary); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.testi-quote-mark {
  display: block;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}
.testi-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-verified { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* CTA Banner */
.cta-banner { background: var(--accent); padding: 48px 0; }
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 6px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── 6. FLEET DESIGN SYSTEM ───────────────────────────────── */

.fleet-bg-wrap { background: var(--fleet-bg); }

/* Fleet-specific buttons — NEVER share with service or base buttons */
.btn-fleet-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--fleet-btn-bg);
  color: var(--fleet-btn-text);
  border-radius: var(--fleet-btn-radius);
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-fleet-primary:hover { background: var(--primary-light); }

.btn-fleet-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px solid var(--fleet-border);
  color: var(--text);
  border-radius: var(--fleet-btn-radius);
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-fleet-secondary:hover { background: var(--primary); color: white; border-color: var(--primary); }

.btn-fleet-cta {
  display: block;
  background: var(--accent);
  color: white;
  border-radius: var(--fleet-btn-radius);
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--fleet-spec-font);
  text-align: center;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  width: 100%;
}
.btn-fleet-cta:hover { background: var(--accent-dark); }

.btn-fleet-secondary.btn-block { width: 100%; text-align: center; }

/* Vehicle selector strip */
.vehicle-selector {
  background: var(--fleet-panel);
  border-bottom: 1px solid var(--fleet-border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  overflow-x: auto;
}
.vehicle-selector-inner {
  display: flex;
  align-items: center;
}
.vsel-btn {
  background: none;
  border: none;
  border-right: 1px solid var(--fleet-border);
  border-bottom: 3px solid transparent;
  font-family: var(--fleet-spec-font);
  font-size: 0.8rem;
  color: var(--fleet-label);
  padding: 14px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
.vsel-btn:hover   { color: var(--accent); border-bottom-color: rgba(212,135,42,0.4); }
.vsel-btn.active  { color: var(--accent); border-bottom-color: var(--accent); }

/* Fleet overview vehicle sections */
.fleet-vehicle-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--fleet-border);
}

.fleet-vehicle-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
  align-items: start;
}

.fleet-img-panel {
  background: var(--fleet-panel);
  border: 1px solid var(--fleet-border);
  border-radius: var(--fleet-radius);
  padding: 16px;
  box-shadow: var(--fleet-shadow);
}
.fleet-img-caption {
  font-family: var(--fleet-spec-font);
  font-size: 0.72rem;
  color: var(--fleet-label);
  margin-top: 10px;
  text-align: center;
}

.fleet-spec-panel { padding: 0 8px; }

.fleet-category-label {
  font-family: var(--fleet-spec-font);
  font-size: 0.72rem;
  color: var(--fleet-label);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.fleet-vehicle-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.fleet-capacity {
  font-family: var(--fleet-spec-font);
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 16px;
}

.fleet-divider {
  border: 0;
  border-top: 1px solid var(--fleet-border);
  margin: 16px 0;
}

/* Spec table */
.spec-table {
  width: 100%;
  border: none;
}
.spec-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--fleet-border);
  font-family: var(--fleet-spec-font);
  font-size: 0.82rem;
  vertical-align: top;
}
.spec-label {
  color: var(--fleet-label);
  font-size: 0.78rem;
  width: 42%;
  font-weight: 400;
}
.spec-value {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Amenities checklist */
.spec-amenities { display: flex; flex-direction: column; gap: 8px; }
.spec-amenity-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
}

/* Fleet CTA row */
.fleet-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Fleet comparison table */
.fleet-compare-section {
  background: var(--fleet-panel);
  border-top: 1px solid var(--fleet-border);
  padding: 48px 0;
}

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border: 1px solid var(--fleet-border);
  font-family: var(--fleet-spec-font);
  font-size: 0.82rem;
}
.compare-table th {
  background: var(--primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--fleet-spec-font);
}
.compare-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--fleet-border);
  vertical-align: middle;
}
.compare-row-alt td { background: var(--fleet-bg); }
.compare-vehicle { font-weight: 700; color: var(--text); }
.compare-amenities { color: var(--fleet-label); font-size: 0.78rem; }
.compare-action { display: flex; gap: 12px; }
.compare-link-specs { color: var(--primary); font-weight: 600; text-decoration: underline; }
.compare-link-quote { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }
.compare-link-specs:hover { color: var(--accent-dark); }
.compare-link-quote:hover { color: var(--accent); }

/* Vehicle Detail Page */
.vd-layout {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: start;
}

.vd-left { display: flex; flex-direction: column; gap: 0; }

.vd-img-panel {
  background: var(--fleet-panel);
  border: 1px solid var(--fleet-border);
  border-radius: var(--fleet-radius);
  padding: 20px;
  box-shadow: var(--fleet-shadow);
}
.vd-img-caption {
  font-family: var(--fleet-spec-font);
  font-size: 0.72rem;
  color: var(--fleet-label);
  margin-top: 10px;
  text-align: center;
}

.vd-about-panel,
.vd-usecases-panel {
  background: var(--fleet-panel);
  border: 1px solid var(--fleet-border);
  border-radius: var(--fleet-radius);
  padding: 24px;
  box-shadow: var(--fleet-shadow);
  margin-top: 16px;
}

.vd-about-panel .fleet-category-label,
.vd-usecases-panel .fleet-category-label {
  margin-bottom: 14px;
}

.vd-about-panel p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}
.vd-about-panel p:last-child { margin-bottom: 0; }

/* Inline links on fleet pages */
.vd-about-panel p a,
.vd-usecases-panel p a {
  color: var(--accent-dark);
  text-decoration: underline;
}
.vd-about-panel p a:hover,
.vd-usecases-panel p a:hover { color: var(--accent); }

.vd-usecase-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--fleet-border); }
.vd-usecase-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.vd-usecase-item strong { display: block; font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
.vd-usecase-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0; }

/* Right column sticky wrapper */
.vd-right { }
.vd-right-sticky {
  position: sticky;
  top: calc(var(--header-h) + 16px);
  background: var(--fleet-panel);
  border: 1px solid var(--fleet-border);
  border-radius: var(--fleet-radius);
  padding: 24px;
  box-shadow: var(--fleet-shadow);
}

.vd-title { font-size: 1.7rem; font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 6px; }
.vd-capacity { font-family: var(--fleet-spec-font); color: var(--accent); font-size: 1rem; margin-bottom: 16px; }

.vd-cta {
  background: var(--primary);
  border-radius: var(--fleet-radius);
  padding: 20px;
  margin-bottom: 16px;
}

.vd-trust { display: flex; flex-direction: column; gap: 8px; }
.vd-trust-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fleet-spec-font);
  font-size: 0.75rem;
  color: var(--fleet-label);
}

/* ── 7. SERVICE DESIGN SYSTEM ─────────────────────────────── */

/* Service-specific buttons — NEVER share with fleet or base buttons */
.btn-svc-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: var(--svc-btn-radius);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}
.btn-svc-primary:hover { background: var(--accent-dark); }
.btn-svc-primary.btn-block { width: 100%; text-align: center; }

.btn-svc-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  border-radius: var(--svc-btn-radius);
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-svc-ghost:hover { background: white; color: var(--primary); }
.btn-svc-ghost.btn-block { width: 100%; text-align: center; }

/* Service page sections */
.svc-section { padding: 64px 0; background: var(--svc-bg); color: white; }
.svc-section + .svc-section { /* handled by bg on each */ }

.svc-main-heading {
  font-size: var(--svc-heading-size);
  font-weight: var(--svc-heading-weight);
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
}

.svc-section-heading {
  font-size: 2rem;
  font-weight: var(--svc-heading-weight);
  color: white;
  line-height: 1.2;
  margin-bottom: 32px;
}

/* Inline links on service pages */
.svc-body p a,
.included-list p a,
.svc-b2b-card p a {
  color: var(--accent-light);
  text-decoration: underline;
}
.svc-body p a:hover,
.included-list p a:hover { color: var(--accent); }

/* Problem section */
.svc-problem { background: var(--primary); padding: 72px 0; }
.svc-problem-layout {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 56px;
  align-items: start;
}
.svc-body p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-body p:last-child { margin-bottom: 0; }

/* Consult box */
.svc-consult-box {
  background: var(--primary-mid);
  border: 1px solid var(--svc-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--svc-radius);
  padding: 28px;
}
.svc-consult-label {
  color: var(--accent-light);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--fleet-spec-font);
  margin-bottom: 8px;
}
.svc-consult-desc { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.5; }

.svc-divider { border: 0; border-top: 1px solid var(--svc-border); margin: 16px 0; }

.svc-trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.svc-trust-row:last-child { margin-bottom: 0; }

/* Included section */
.svc-included { background: var(--primary-mid); }

.included-list { display: flex; flex-direction: column; }
.included-list-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--svc-border);
}
.included-list-item:last-child { border-bottom: none; }
.included-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  padding-top: 2px;
}
.included-content strong {
  display: block;
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.included-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* Is this right for you — light section */
.svc-fit { background: var(--light-gray); }
.svc-fit-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 32px;
}
.svc-fit-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.fit-subhead { font-weight: 700; color: var(--text); margin-bottom: 16px; font-size: 0.9rem; }
.fit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.fit-item:last-child { margin-bottom: 0; }
.fit-not-sure { margin-top: 16px; font-size: 0.88rem; color: var(--text-light); }
.fit-not-sure a { color: var(--accent-dark); font-weight: 600; }

/* Recommended vehicles section */
.svc-rec-vehicles { background: var(--primary); }
.rec-vehicles-row { display: flex; gap: 24px; flex-wrap: wrap; }
.rec-card {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--svc-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--svc-btn-radius);
  overflow: hidden;
  transition: background var(--transition);
}
.rec-card:hover { background: rgba(255,255,255,0.09); }
.rec-card-body { padding: 16px; }
.rec-card-body h3 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.rec-card-body h3 a { color: white; text-decoration: none; }
.rec-card-body h3 a:hover { color: var(--accent-light); }
.rec-card-body p { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 10px; line-height: 1.5; }
.rec-view-specs { font-size: 0.82rem; color: var(--accent-light); text-decoration: none; font-weight: 600; }
.rec-view-specs:hover { text-decoration: underline; }

/* Service CTA section */
.svc-cta-section {
  background: var(--accent);
  padding: 48px 0;
}
.svc-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.svc-cta-section h2 { font-size: 1.6rem; font-weight: 800; color: white; margin-bottom: 6px; }
.svc-cta-section p  { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.svc-cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.svc-cta-phone {
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
}
.svc-cta-phone:hover { text-decoration: underline; }
.btn-svc-cta-white {
  background: white;
  color: var(--primary);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--svc-btn-radius);
  text-decoration: none;
  transition: background var(--transition);
}
.btn-svc-cta-white:hover { background: var(--off-white); }

/* Service FAQ section */
.svc-faq { background: var(--primary-mid); }

.faq-svc-list { max-width: 800px; }

.faq-svc-item {}
.faq-svc-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--svc-border);
  padding: 18px 0;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color var(--transition);
}
.faq-svc-q:hover { color: var(--accent-light); }
.faq-svc-q[aria-expanded="true"] { color: var(--accent-light); }

.faq-chevron { flex-shrink: 0; transition: transform .25s ease; }
.faq-svc-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-svc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  border-left: 4px solid var(--accent);
  padding: 0 20px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.faq-svc-item.open .faq-svc-a { padding: 16px 20px; margin: 8px 0 16px; }

/* Related services section */
.svc-related { background: var(--primary); padding: 40px 0; }
.svc-related-heading { font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 20px; }
.related-svc-list { display: flex; flex-direction: column; max-width: 500px; }
.related-svc-item {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--svc-border);
  text-decoration: none;
  transition: color var(--transition);
}
.related-svc-item:hover { color: var(--accent-light); }
.related-svc-item:last-child { border-bottom: none; }

/* Services overview page elements */
.svc-intro { background: var(--primary); }
.svc-intro-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.svc-intro-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.svc-intro-inner p a { color: var(--accent-light); }
.svc-intro-inner p:last-child { margin-bottom: 0; }

.svc-cards-section { background: var(--primary-mid); }

.svc-b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-b2b-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--svc-border);
  border-radius: var(--svc-radius);
  border-left: 4px solid var(--accent);
  padding: 28px;
  transition: background var(--transition);
}
.svc-b2b-card:hover { background: rgba(255,255,255,0.08); }
.svc-b2b-card h3 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.svc-b2b-card p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.65; margin-bottom: 14px; }
.svc-learn-more  { color: var(--accent-light); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.svc-learn-more:hover { text-decoration: underline; }

.svc-who { background: var(--primary); }
.svc-who-layout { display: grid; grid-template-columns: 55% 45%; gap: 48px; }
.svc-who-left h2 { margin-bottom: 20px; }
.svc-who-left p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }

.client-list { display: flex; flex-direction: column; gap: 0; }
.client-list-item {
  padding: 16px 16px 16px 20px;
  border-left: 4px solid var(--accent);
  margin-bottom: 12px;
  background: rgba(255,255,255,0.04);
}
.client-list-item strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 4px; }
.client-list-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.5; margin: 0; }

.svc-trust-bar {
  background: rgba(255,255,255,0.04);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svc-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.svc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  text-align: center;
}
.svc-trust-big {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.svc-trust-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 8px;
}
.svc-trust-desc { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.svc-trust-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.1); }

/* ── 8. BASE BRAND PAGES ──────────────────────────────────── */

/* Inner page hero */
.page-hero {
  background: var(--primary);
  padding: 72px 0 56px;
  border-bottom: 3px solid var(--accent);
}
.page-hero-eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.page-hero h1 { color: white; font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; line-height: 1.15; }
.page-hero-sub { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 520px; line-height: 1.6; }

/* Breadcrumb bar */
.breadcrumb-bar {
  background: var(--light-gray);
  border-bottom: 1px solid var(--mid-gray);
  padding: 10px 0;
}
.breadcrumb ol { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb li { font-size: 0.82rem; color: var(--text-light); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; color: var(--text-light); }
.breadcrumb li a { color: var(--primary) !important; text-decoration: none; }
.breadcrumb li a:hover { color: var(--accent) !important; }
.breadcrumb li:last-child { color: var(--accent-dark); font-weight: 600; }

/* Pricing page */
.pricing-intro-section { background: white; padding: 64px 0; }
.pricing-intro-layout { display: grid; grid-template-columns: 60% 40%; gap: 48px; align-items: start; }
.pricing-intro-left h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.pricing-intro-left p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }
.pricing-intro-left p a { color: var(--accent-dark); }

.booking-panel {
  background: white;
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.booking-panel-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.booking-panel-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }
.booking-trust { display: flex; flex-direction: column; gap: 8px; }
.booking-trust-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-light); }

.pricing-factors-section { background: var(--light-gray); padding: 64px 0; }
.pricing-factors-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.pricing-factors-sub { color: var(--text-light); font-size: 0.95rem; margin-bottom: 32px; line-height: 1.6; }

/* FAQ accordion (base brand) */
.faq-list { display: flex; flex-direction: column; }
.faq-item {}
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--mid-gray);
  padding: 18px 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--accent-dark); }
.faq-btn[aria-expanded="true"] { color: var(--accent-dark); }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-a { padding: 14px 0 20px; }

.pricing-included-section { background: var(--primary); padding: 64px 0; }
.pricing-included-section h2 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 8px; }
.pricing-included-sub { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 0.95rem; }

.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-included-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.pricing-included-icon { font-size: 1.8rem; margin-bottom: 12px; }
.pricing-included-card strong { display: block; color: white; font-size: 0.92rem; margin-bottom: 6px; }
.pricing-included-card p  { color: rgba(255,255,255,0.7); font-size: 0.85rem; line-height: 1.6; margin: 0; }

.pricing-scenarios-section { background: white; padding: 64px 0; }
.pricing-scenarios-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.pricing-scenarios-sub { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }

.scenarios-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scenario-card {
  background: var(--light-gray);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
}
.scenario-card strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.scenario-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* About page */
.about-intro-section { background: white; padding: 64px 0; }
.about-intro-layout { display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: start; }
.about-intro-left h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.about-intro-left p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }
.about-intro-left a { color: var(--accent-dark); }

.cred-list { display: flex; flex-direction: column; gap: 16px; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; }
.cred-item strong { display: block; color: var(--text); font-size: 0.92rem; margin-bottom: 2px; }
.cred-item p { color: var(--text-light); font-size: 0.82rem; line-height: 1.5; margin: 0; }

.about-values-section { background: var(--light-gray); padding: 64px 0; }
.about-values-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-value-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.about-value-icon { font-size: 2rem; margin-bottom: 12px; }
.about-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-value-card p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin: 0; }

.about-area-section { background: var(--primary); padding: 64px 0; }
.about-area-section h2 { color: white; font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.about-area-section p  { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }
.about-area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 24px;
  margin-top: 20px;
  list-style: none;
}
.about-area-list li {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  padding-left: 16px;
  position: relative;
}
.about-area-list li::before { content: '›'; position: absolute; left: 0; color: var(--accent); }

/* Contact page */
.contact-section { background: white; padding: 64px 0; }
.contact-layout { display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: start; }

.contact-cta-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: white;
  margin-bottom: 24px;
}
.contact-cta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.contact-cta-desc { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-bottom: 16px; line-height: 1.5; }

.contact-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.15); margin: 20px 0; }
.contact-email-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 6px; }
.contact-email-link { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-decoration: none; word-break: break-all; }
.contact-email-link:hover { color: white; text-decoration: underline; }

.contact-info-block {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
}
.contact-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mid-gray);
  font-size: 0.88rem;
}
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row strong { color: var(--text); flex-shrink: 0; }
.contact-info-row span   { color: var(--text-light); text-align: right; }

.contact-service-area { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.contact-right { }
.contact-faq-heading { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

/* ── 9. FOOTER ────────────────────────────────────────────── */

.footer-cta {
  background: var(--accent);
  padding: 32px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.footer-cta-text { color: white; font-weight: 600; font-size: 0.95rem; }
.footer-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
  background: var(--primary);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-brand-name { color: white; font-weight: 700; font-size: 0.9rem; }

.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 12px; }
.footer-phone { display: block; color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; text-decoration: none; }
.footer-phone:hover { color: var(--accent-light); }
.footer-email { display: block; color: rgba(255,255,255,0.7); font-size: 0.82rem; word-break: break-all; margin-bottom: 8px; text-decoration: none; }
.footer-email:hover { color: var(--accent-light); }
.footer-address, .footer-hours { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 4px; }

.footer-heading { color: rgba(255,255,255,0.4); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.78rem; }

/* Floating call button */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  transition: background var(--transition), transform var(--transition);
}
.float-call:hover { background: var(--accent-dark); transform: scale(1.05); }

/* ── 10. UTILITIES & ANIMATIONS ──────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 11. RESPONSIVE ──────────────────────────────────────── */

@media (max-width: 1024px) {
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .fleet-card-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .svc-b2b-grid    { grid-template-columns: repeat(2, 1fr); }
  .pricing-intro-layout,
  .about-intro-layout,
  .contact-layout  { grid-template-columns: 1fr; }
  .vd-layout       { grid-template-columns: 1fr; }
  .vd-right-sticky { position: static; }
  .fleet-vehicle-layout { grid-template-columns: 1fr; }
  .svc-problem-layout   { grid-template-columns: 1fr; }
  .svc-who-layout       { grid-template-columns: 1fr; }
  .about-area-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .section { padding: 56px 0; }
  .section-heading { font-size: 1.6rem; }
  .svc-main-heading { font-size: 1.8rem; }
  .fleet-card-grid { grid-template-columns: 1fr; }
  .svc-card-grid   { grid-template-columns: 1fr; }
  .svc-b2b-grid    { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .features-grid   { grid-template-columns: 1fr; }
  .pricing-included-grid { grid-template-columns: repeat(2, 1fr); }
  .scenarios-row   { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-area-list { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .svc-cta-inner   { flex-direction: column; text-align: center; }
  .svc-fit-layout  { grid-template-columns: 1fr; }
  .rec-vehicles-row { flex-direction: column; }
  .steps-row       { flex-direction: column; align-items: center; gap: 32px; }
  .step-connector  { display: none; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .cred-strip-inner { height: auto; padding: 12px 0; }
  .svc-trust-inner { flex-direction: column; gap: 28px; }
  .svc-trust-divider { display: none; }
  .page-hero h1 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1  { font-size: 1.7rem; }
  .hero-ctas { flex-direction: column; }
  .brand-name { font-size: 0.8rem; }
  .pricing-included-grid { grid-template-columns: 1fr; }
  .vehicle-selector-inner { gap: 0; }
}
