/* Bathurst Mobile Detailing — Brand Styles */

:root {
  --primary: #007565;
  --primary-dark: #005a4f;
  --primary-light: #00a79c;
  --accent: #1cee26;
  --black: #1a1a1a;
  --text: #404040;
  --text-light: #666666;
  --white: #ffffff;
  --gray-50: #f7f9f8;
  --gray-100: #eef2f1;
  --gray-200: #e2e8e6;
  --gray-300: #cbd5d2;
  --silver: #abb8c3;
  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
  --header-height: 66px;
  --stats-ticker-height: 38px;

  /* legacy aliases */
  --maroon: var(--primary);
  --maroon-dark: var(--primary-dark);
  --maroon-light: var(--primary-light);
  --black-soft: var(--gray-50);
  --black-card: var(--white);
  --gray: var(--text-light);
  --gray-light: var(--text);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: var(--header-height);
}

body::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ── Speed Lines Decoration ── */
.speed-lines {
  display: flex;
  align-items: center;
  gap: 6px;
}

.speed-lines span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.5;
}

.speed-lines span:nth-child(1) { width: 28px; }
.speed-lines span:nth-child(2) { width: 20px; }
.speed-lines span:nth-child(3) { width: 12px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 117, 101, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

/* ── Header / Nav ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.25s ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.nav-inner,
.header-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 6px 0;
  gap: 8px;
}

.nav-logo {
  order: 1;
  flex: 0 0 auto;
  line-height: 0;
  margin-left: 8px;
}

.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-actions {
  order: 2;
  margin-left: auto;
  margin-right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.nav-book {
  white-space: nowrap;
  padding: 8px 18px;
  font-size: 0.75rem;
  margin-right: 14px;
}

.nav-panel {
  order: 3;
  flex: 1 1 100%;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.nav-panel.open {
  grid-template-rows: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 6px;
  padding-bottom: 4px;
}

.nav-panel-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-panel a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.88);
}

.nav-panel a:hover,
.nav-panel a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-panel a.active {
  font-weight: 600;
}

.nav-menu-book {
  margin-top: 12px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.nav-panel a.nav-menu-book,
.nav-panel a.nav-menu-book.active {
  color: var(--white);
  background: var(--primary);
  border-color: var(--primary);
}

.nav-panel a.nav-menu-book:hover {
  color: var(--white);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero Cover (full-width image header) ── */
.hero-cover {
  position: relative;
  margin-top: calc(-1 * var(--header-height));
  padding: 0;
  height: calc(100svh - var(--header-height) - var(--stats-ticker-height));
  max-height: 720px;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.hero-cover-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 0 48px;
  width: 100%;
}

.hero-cover-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.hero-cover-copy {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cover .hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* ── Stats Ticker ── */
.stats-ticker {
  background: #ffd600;
  color: #0a0a0a;
  overflow: hidden;
  padding: 0;
  border-block: 1px solid rgba(0, 0, 0, 0.08);
}

.stats-ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 38px;
  animation: stats-ticker-scroll 28s linear infinite;
}

.stats-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 38px;
  padding: 0;
}

.stats-ticker__item {
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1.45vw, 0.94rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 38px;
  white-space: nowrap;
  padding: 0 20px;
}

.stats-ticker__item strong {
  font-weight: 800;
}

.stats-ticker__sep {
  width: 5px;
  height: 5px;
  background: #0a0a0a;
  flex-shrink: 0;
}

@keyframes stats-ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats-ticker__track {
    animation: none;
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 0;
  }

  .stats-ticker__group {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    padding: 8px 12px;
  }

  .stats-ticker__item {
    line-height: 1.3;
  }

  .stats-ticker__group[aria-hidden="true"] {
    display: none;
  }
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: var(--radius);
  font-family: var(--font-body);
}

.google-badge-text {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}

.google-badge-stars {
  color: #fbbc05;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-badge-score {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* ── Legacy hero (unused) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.65) 50%, rgba(10, 10, 10, 0.82) 100%),
    url("../assets/images/hero/snow-foam-vw-golf.png") center/cover no-repeat;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-text h1 span {
  display: block;
  background: linear-gradient(180deg, var(--white) 0%, var(--silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-tagline p {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo-wrap img {
  width: min(420px, 90%);
  margin-inline: auto;
  filter: drop-shadow(0 0 60px rgba(0, 117, 101, 0.35));
  animation: float 6s ease-in-out infinite;
}

.hero-photo {
  width: min(480px, 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--primary);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* ── Section Shared ── */
section {
  padding: 100px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section-label p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

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

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin-inline: auto;
}

.section-header.center .section-label {
  justify-content: center;
}

/* ── Features Strip ── */
.features-strip {
  background: #0f0f0f;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-bar__item:first-child {
  padding-left: 0;
}

.trust-bar__item:last-child {
  border-right: none;
  padding-right: 0;
}

.trust-bar__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: var(--primary-light);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-bar__item h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.trust-bar__item p {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1024px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .trust-bar__item {
    border-right: none;
    padding: 0 16px 0 0;
  }

  .trust-bar__item:nth-child(odd) {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .features-strip {
    padding: 24px 0;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-bar__item {
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .trust-bar__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 28px 24px 32px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 117, 101, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--primary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.service-price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
}

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-desc,
.section-dark .process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .process-step h3 {
  color: var(--white);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-showcase {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-car {
  position: absolute;
  bottom: -14%;
  width: min(270px, 30vw);
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28));
  animation: cta-float 7s ease-in-out infinite;
}

.cta-car--foam {
  left: 1%;
  width: min(210px, 24vw);
  bottom: -10%;
  animation-delay: 0s;
}

.cta-car--captiva {
  left: 16%;
  width: min(250px, 28vw);
  bottom: -18%;
  animation-delay: 1.4s;
}

.cta-car--cruiser {
  right: 1%;
  width: min(230px, 25vw);
  bottom: -12%;
  animation-delay: 2s;
}

@keyframes cta-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 80% at 50% 50%, rgba(0, 0, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-banner .section-title,
.cta-inner h2 {
  color: var(--white);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-banner .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

@media (max-width: 900px) {
  .cta-car {
    opacity: 0.55;
    width: min(200px, 34vw);
  }

  .cta-car--captiva {
    display: none;
  }
}

@media (max-width: 600px) {
  .cta-banner {
    padding: 72px 0 88px;
  }

  .cta-showcase {
    opacity: 0.35;
  }

  .cta-car {
    width: 44vw;
    bottom: -8%;
  }

  .cta-car--foam {
    left: -4%;
  }

  .cta-car--cruiser {
    right: -4%;
  }
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Page Hero (inner pages — image header) ── */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero/header.webp") center/cover no-repeat;
  object-position: 59% 41%;
}

.page-hero--why::before {
  background-image: url("../assets/images/exterior/snow-foam-vw-golf.png");
  background-position: center 35%;
}

.page-hero--fleet::before {
  background-image: url("../assets/images/fleet/ses-rescue-truck.png");
  background-position: center 45%;
}

.page-hero--booking::before {
  background-image: url("../assets/images/hero/booking-hero.png");
  background-position: center 55%;
}

.page-hero--booking .container a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 560px;
  margin-inline: auto;
}

.page-hero .section-label p {
  color: rgba(255, 255, 255, 0.85);
}

.page-hero .speed-lines span {
  background: var(--white);
}

/* ── Booking Form ── */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.booking-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.booking-visual {
  margin: 40px 0 0;
  padding: 0;
  text-align: center;
}

.booking-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.18));
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 117, 101, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: var(--black-card);
}

.form-submit {
  width: 100%;
  margin-top: 0;
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  position: relative;
}

.form-progress__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.form-progress__step.is-complete:not(:last-child)::after {
  background: var(--primary);
}

.form-progress__num {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--gray-100);
  color: var(--text-light);
  border: 2px solid var(--gray-200);
}

.form-progress__step.is-active .form-progress__num,
.form-progress__step.is-complete .form-progress__num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.form-progress__label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.3;
}

.form-progress__step.is-active .form-progress__label {
  color: var(--primary);
}

.form-step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-step-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-step .form-section-title {
  margin-top: 8px;
}

.form-step-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-step-actions .btn {
  flex: 1;
}

.form-step-actions .btn.is-hidden,
.form-step-actions .btn[hidden] {
  display: none !important;
}

.form-step-actions .btn-primary:disabled {
  background: var(--gray-300);
  border-color: var(--gray-300);
  color: var(--white);
  cursor: not-allowed;
  opacity: 0.85;
  transform: none;
  box-shadow: none;
}

.form-step-actions .btn-primary:disabled:hover {
  background: var(--gray-300);
  border-color: var(--gray-300);
  transform: none;
  box-shadow: none;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 32px 0 12px;
}

.form-section-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.addon-select {
  border: none;
  margin: 0 0 8px;
  padding: 0;
}

.addon-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-option {
  cursor: pointer;
}

.addon-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-option-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.addon-option:hover .addon-option-card {
  border-color: rgba(0, 117, 101, 0.35);
}

.addon-option input:checked + .addon-option-card {
  background: rgba(0, 117, 101, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 117, 101, 0.12);
}

.addon-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.addon-option-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.addon-option-price {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
}

.addon-option-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.addon-option.is-included {
  cursor: default;
}

.addon-option.is-included .addon-option-card {
  background: rgba(0, 117, 101, 0.08);
  border-color: var(--primary);
  opacity: 0.95;
}

.addon-option.is-included .addon-option-price {
  color: var(--primary-dark);
}

.addon-option--upgrade .addon-option-card {
  border-style: dashed;
  background: rgba(0, 117, 101, 0.04);
}

.addon-option[hidden] {
  display: none;
}

.date-picker {
  margin-top: 4px;
}

.date-picker-selected {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  min-height: 1.4em;
}

.date-picker.has-selection .date-picker-selected {
  color: var(--primary);
  font-weight: 600;
}

.date-picker-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.date-picker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.date-picker-month {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.date-picker-nav {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.date-picker-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.date-picker-weekdays,
.date-picker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-picker-weekdays {
  margin-bottom: 8px;
}

.date-picker-weekdays span {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
}

.date-picker-day {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.date-picker-day:hover:not(.is-disabled):not(.is-empty) {
  background: rgba(0, 117, 101, 0.1);
  color: var(--primary);
}

.date-picker-day.is-today {
  border: 1px solid rgba(0, 117, 101, 0.35);
}

.date-picker-day.is-selected {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.date-picker-day.is-selected.is-today {
  border-color: var(--primary);
}

.date-picker-day.is-disabled {
  background: transparent;
  color: var(--gray-300);
  cursor: not-allowed;
}

.date-picker-day.is-empty {
  background: transparent;
  pointer-events: none;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--primary);
}

.form-success-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success a {
  color: var(--primary);
  font-weight: 600;
}

.form-success a:hover {
  color: var(--primary-dark);
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.form-success p {
  color: var(--text-light);
  line-height: 1.65;
}

.booking-estimate,
.booking-surcharge-note {
  margin-top: 20px;
  border-radius: var(--radius);
  padding: 18px 20px;
}

.booking-estimate {
  border: 1px solid rgba(128, 0, 32, 0.12);
  background: rgba(128, 0, 32, 0.04);
}

.booking-estimate__label,
.booking-estimate__note {
  margin: 0;
}

.booking-estimate__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.booking-estimate__price {
  margin: 8px 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.booking-estimate__note {
  color: var(--text-light);
  line-height: 1.6;
}

.booking-surcharge-note {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--text-light);
  line-height: 1.65;
}

.callback-strip-section {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.callback-strip {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.callback-strip__eyebrow,
.site-popup__eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.callback-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.callback-form__fields input {
  min-height: 52px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
}

.callback-form__actions,
.site-popup__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .callback-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px 20px;
    align-items: stretch;
  }

  .callback-strip__copy h2 {
    font-size: 1.45rem;
    margin-bottom: 10px;
  }

  .callback-strip__copy p {
    margin-bottom: 0;
    line-height: 1.65;
  }

  .callback-form__fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .callback-form__actions {
    flex-direction: column;
    margin-top: 14px;
  }

  .callback-form__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.callback-success {
  padding: 18px 20px;
  border: 1px solid rgba(128, 0, 32, 0.12);
  background: rgba(128, 0, 32, 0.04);
  border-radius: var(--radius);
}

.form-api-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(180, 40, 40, 0.25);
  background: rgba(180, 40, 40, 0.08);
  color: #8b1e1e;
  font-size: 0.95rem;
  line-height: 1.45;
}

.site-popup {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.site-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

.site-popup__dialog {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: min(8vh, 64px) auto 0;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-popup.is-visible .site-popup__dialog {
  transform: translateY(0);
  opacity: 1;
}

.site-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-popup__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 520px;
}

.site-popup__media {
  min-height: 280px;
  background: var(--black-soft);
}

.site-popup__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.site-popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px 44px;
  gap: 0;
}

.site-popup__eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-popup__eyebrow-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-popup__content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  line-height: 1.2;
}

.site-popup__desc {
  margin: 0 0 18px;
  line-height: 1.7;
}

.site-popup__desc,
.site-popup__trust {
  color: var(--text-light);
}

.site-popup__trust {
  margin: 0 0 28px;
  font-weight: 600;
}

.site-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.site-popup__form .callback-form__fields {
  grid-template-columns: 1fr;
  gap: 14px;
}

.site-popup__submit {
  width: 100%;
  min-height: 48px;
}

.site-popup__actions {
  margin-top: 0;
  gap: 14px;
}

.site-popup__actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
  min-height: 48px;
}

@media (max-width: 900px) {
  .site-popup__dialog {
    width: min(520px, calc(100% - 24px));
    margin: 16px auto;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
  }

  .site-popup__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .site-popup__content {
    order: 1;
    padding: 28px 22px 24px;
  }

  .site-popup__media {
    order: 2;
    min-height: 160px;
    max-height: 180px;
  }

  .site-popup__content h2 {
    font-size: 1.45rem;
  }

  .site-popup__trust {
    margin-bottom: 20px;
  }

  .site-popup__actions {
    flex-direction: column;
  }

  .site-popup__actions .btn {
    width: 100%;
    flex: none;
  }
}

body.popup-open {
  overflow: hidden;
}

.reviews-summary__google-link {
  display: inline-flex;
}

.booking-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card--reviews {
  padding: 12px 14px;
}

.sidebar-reviews__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 8px;
}

.sidebar-reviews__rating:hover .sidebar-reviews__score {
  color: var(--primary);
}

.sidebar-reviews__google {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.sidebar-reviews__meta {
  min-width: 0;
}

.sidebar-reviews__stars {
  display: block;
  color: #fbbc04;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2px;
}

.sidebar-reviews__score {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted, #5c6570);
  line-height: 1.25;
}

.sidebar-reviews__score strong {
  color: var(--text);
  font-weight: 700;
}

.sidebar-reviews__carousel {
  position: relative;
  min-height: 3.4em;
  overflow: hidden;
}

.sidebar-reviews__slide {
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.sidebar-reviews__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.sidebar-reviews__quote {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-reviews__name {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted, #5c6570);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.sidebar-card__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.sidebar-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-steps__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  position: relative;
  padding-bottom: 22px;
}

.sidebar-steps__item:last-child {
  padding-bottom: 0;
}

.sidebar-steps__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 30px;
  bottom: 0;
  width: 1px;
  background: var(--gray-200);
}

.sidebar-steps__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.sidebar-steps__content strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.35;
}

.sidebar-steps__content p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.sidebar-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.sidebar-contact__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.sidebar-contact__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-contact__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.sidebar-contact__item a,
.sidebar-contact__value {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--text);
}

.sidebar-contact__item a {
  color: var(--primary);
  font-weight: 500;
  word-break: break-word;
}

.sidebar-contact__item a:hover {
  color: var(--primary-dark);
}

.sidebar-card--note p,
.sidebar-card--cta p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0;
}

.sidebar-card--cta p {
  margin-bottom: 18px;
}

.sidebar-card__btn {
  width: 100%;
}

/* ── Fleet Page ── */
.fleet-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.fleet-benefit {
  display: flex;
  gap: 20px;
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.fleet-benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.fleet-benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fleet-benefit h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.fleet-benefit p {
  font-size: 0.875rem;
  color: var(--gray-light);
}

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

.fleet-package {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.fleet-package.featured {
  border-color: var(--primary);
  position: relative;
}

.fleet-package.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  padding: 4px 16px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-package:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.fleet-package h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fleet-package .fleet-count {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.fleet-package .fleet-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.fleet-package .fleet-price-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.fleet-package ul {
  text-align: left;
  margin-bottom: 28px;
}

.fleet-package ul li {
  font-size: 0.875rem;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  padding-left: 20px;
  position: relative;
}

.fleet-package ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ── Services Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 4/3;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-includes {
  margin-bottom: 24px;
}

.service-includes li {
  font-size: 0.9rem;
  color: var(--gray-light);
  padding: 6px 0 6px 24px;
  position: relative;
}

.service-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.service-detail-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.service-detail-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.service-price-tiers {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 8px;
}

/* ── Reviews Carousel ── */
.reviews-section {
  padding-bottom: 80px;
  overflow: hidden;
}

.reviews-section .section-header {
  margin-bottom: 32px;
}

.reviews-section .section-title {
  font-size: clamp(1.85rem, 4.2vw, 2.45rem);
}

.reviews-section .section-desc {
  font-size: 1.1rem;
  max-width: 640px;
}

.reviews-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.reviews-summary {
  grid-row: 1;
  grid-column: 1;
  z-index: 3;
  justify-self: start;
  margin-left: max(4vw, calc((100vw - 1140px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: min(220px, 42vw);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.reviews-summary__main {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.reviews-summary__meta {
  min-width: 0;
}

.reviews-summary__label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 2px 0 0;
}

.reviews-summary__stars {
  font-size: 0.8rem;
  color: #fbbc04;
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}

.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
}

.reviews-summary__count {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 2px 0 0;
  line-height: 1.35;
}

.reviews-summary__count strong {
  font-weight: 600;
  color: var(--text);
}

.reviews-summary__google {
  width: 72px;
  height: 24px;
  display: block;
}

.reviews-carousel-wrap {
  grid-row: 1;
  grid-column: 1;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: clamp(200px, 24vw, 280px);
  padding-right: 0;
}

.reviews-carousel {
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.15) 160px,
    #000 260px,
    #000 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.15) 160px,
    #000 260px,
    #000 95%,
    transparent
  );
}

.reviews-carousel--left .reviews-carousel__track {
  animation: reviews-scroll-left 260s linear infinite;
}

.reviews-carousel--right .reviews-carousel__track {
  animation: reviews-scroll-right 260s linear infinite;
}

.reviews-carousel__track {
  display: flex;
  width: max-content;
}

.reviews-carousel__group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.review-card {
  flex: 0 0 min(360px, 82vw);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__stars {
  font-size: 0.78rem;
  color: #fbbc04;
  letter-spacing: 1px;
}

.review-card__source {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.review-card__google {
  width: 18px;
  height: 18px;
  display: block;
}

.review-card__verified {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

.review-card__text {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-light);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-footnote {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .reviews-stage {
    display: block;
  }

  .reviews-summary {
    position: static;
    width: auto;
    max-width: 300px;
    margin: 0 auto 24px;
    pointer-events: auto;
  }

  .reviews-carousel-wrap {
    padding-left: 0;
  }

  .reviews-carousel {
    mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
  }
}

@keyframes reviews-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes reviews-scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-stage {
    display: block;
  }

  .reviews-summary {
    position: static;
    width: auto;
    max-width: 300px;
    margin: 0 auto 24px;
    pointer-events: auto;
  }

  .reviews-carousel-wrap {
    gap: 16px;
    padding-left: 0;
  }

  .reviews-carousel--left .reviews-carousel__track,
  .reviews-carousel--right .reviews-carousel__track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 0 16px;
  }

  .reviews-carousel__group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
  }

  .reviews-carousel__group[aria-hidden="true"] {
    display: none;
  }

  .reviews-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ── Google Rating (legacy) ── */
.google-rating {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}

.google-stars {
  font-size: 1.5rem;
  color: #fbbc04;
  letter-spacing: 4px;
}

.google-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.google-score {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.google-count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.google-rating-note {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Service Areas ── */
.service-area-map-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  background: #1a1a1a;
}

.service-area-map {
  height: min(420px, 58vw);
  width: 100%;
  z-index: 1;
}

.service-area-map-external {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1000;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  transition: var(--transition);
}

.service-area-map-external:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.service-area-map-external svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.service-area-map-caption {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 1000;
  margin: 0;
  padding: 8px 16px;
  background: rgba(10, 10, 10, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  pointer-events: none;
  white-space: nowrap;
}

.service-area-map-wrap .leaflet-control-zoom {
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.service-area-map-wrap .leaflet-control-zoom a {
  background: rgba(20, 20, 20, 0.92);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-area-map-wrap .leaflet-control-zoom a:hover {
  background: var(--primary);
  color: var(--white);
}

.service-area-map-wrap .leaflet-control-attribution {
  background: rgba(10, 10, 10, 0.75);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

.service-area-map-wrap .leaflet-control-attribution a {
  color: rgba(255, 255, 255, 0.55);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow);
}

/* ── FAQ ── */
.faq-section {
  background: var(--black);
}

.faq-section .section-title {
  color: var(--white);
}

.faq-section .section-label p {
  color: var(--primary-light);
}

.faq-section .section-desc {
  color: rgba(255, 255, 255, 0.55);
}

.faq-section .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-section .faq-item summary {
  color: var(--white);
}

.faq-section .faq-item summary::after {
  color: var(--primary-light);
}

.faq-section .faq-item[open] {
  border-color: rgba(0, 167, 156, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.faq-section .faq-item p {
  color: rgba(255, 255, 255, 0.62);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── Vehicle Size Guide ── */
.size-guide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.size-card {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.size-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.size-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ── Pricing Table ── */
.pricing-table-wrap {
  overflow-x: auto;
  margin-bottom: 60px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-table th {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--black-card);
}

.pricing-table td {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.pricing-table td:first-child {
  font-weight: 600;
  color: var(--white);
}

.pricing-table tr:hover td {
  background: rgba(0, 117, 101, 0.05);
}

/* ── Add-ons & Surcharges ── */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.addon-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.addon-card-media {
  height: 140px;
  overflow: hidden;
}

.addon-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addon-card-body {
  padding: 22px 24px 24px;
}

.addon-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text);
}

.addon-card .addon-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.addon-card .addon-price-alt {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.addon-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.addon-card .addon-note {
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
  opacity: 0.85;
}

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

.surcharge-card {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.surcharge-card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.surcharge-card .surcharge-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.surcharge-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

.info-box {
  background: rgba(0, 117, 101, 0.1);
  border: 1px solid rgba(0, 117, 101, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 40px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.badge-label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.services-grid.four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* ── Showcase Marquee ── */
.showcase-marquee {
  background: #0a0a0a;
  padding: 72px 0 80px;
  overflow: hidden;
}

.showcase-marquee-header {
  text-align: center;
  margin-bottom: 40px;
}

.showcase-marquee-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.showcase-marquee-header p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.6;
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-row:last-child {
  margin-bottom: 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

  .marquee-row--left .marquee-track {
  animation: marquee-left 95s linear infinite;
}

.marquee-row--right .marquee-track {
  animation: marquee-right 75s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.marquee-group img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .showcase-marquee {
    padding: 56px 0 64px;
  }

  .marquee-group img {
    width: 160px;
    height: 160px;
  }

  .marquee-row--left .marquee-track,
  .marquee-row--right .marquee-track {
    animation-duration: 40s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-row--left .marquee-track,
  .marquee-row--right .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 14px;
  }

  .marquee-row {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-group {
    display: contents;
  }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid var(--gray-200);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-wide {
  grid-column: span 2;
}

/* ── Before / After ── */
.ba-hint {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: -8px 0 28px;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-pair {
  background: var(--black-card);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ba-pair h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--primary);
}

.ba-slider {
  --pos: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ba-slider__img--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  z-index: 2;
}

.ba-slider__img--after {
  z-index: 1;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 3;
  width: 0;
  transform: translateX(-50%);
  outline: none;
}

.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.45);
}

.ba-slider__thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.ba-slider__thumb svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ba-slider__handle:focus-visible .ba-slider__thumb {
  box-shadow: 0 0 0 3px rgba(0, 117, 101, 0.45), 0 4px 16px rgba(0, 0, 0, 0.35);
}

.ba-slider.is-dragging {
  cursor: grabbing;
}

.ba-slider__label {
  position: absolute;
  top: 12px;
  z-index: 4;
  background: rgba(10, 10, 10, 0.8);
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-slider__label--before {
  left: 12px;
}

.ba-slider__label--after {
  right: 12px;
  background: var(--primary);
}

.page-hero-image {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.fleet-hero-image {
  width: 100%;
  max-width: 960px;
  margin: 0 auto 48px;
  border-radius: var(--radius-lg);
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--gray-200);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0 0;
}

.fleet-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: #0a0a0a;
}

.fleet-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.fleet-gallery-item figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--white);
  line-height: 1.4;
}

.fleet-gallery-item--wide {
  grid-column: span 2;
}

.fleet-gallery-item--wide img {
  aspect-ratio: 21 / 9;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }
}

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

@media (max-width: 1024px) {
  .size-guide,
  .addon-grid,
  .surcharge-grid,
  .services-grid.four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .size-guide,
  .addon-grid,
  .surcharge-grid,
  .services-grid.four-col {
    grid-template-columns: 1fr;
  }
}

/* ── Services Packages (interactive) ── */
.services-packages {
  background: #0a0a0a;
  color: var(--white);
  padding: 56px 0 72px;
}

.services-packages-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
  line-height: 1.2;
}

.services-packages-title span {
  color: var(--primary-light);
}

.vehicle-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.vehicle-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px 16px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-family: inherit;
}

.vehicle-tab:hover {
  border-color: rgba(0, 167, 156, 0.4);
}

.vehicle-tab.active {
  background: var(--primary);
  border-color: var(--primary);
}

.vehicle-tab img {
  width: 100%;
  max-width: 120px;
  height: 56px;
  object-fit: contain;
  object-position: center;
}

.vehicle-tab-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.vehicle-tab-examples {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  line-height: 1.35;
}

.vehicle-tab.active .vehicle-tab-examples {
  color: rgba(255, 255, 255, 0.85);
}

.package-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}

.package-card-media {
  height: 132px;
  overflow: hidden;
  background: #0a0a0a;
}

.package-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.package-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 22px;
}

.package-card:has(.package-card-badge) .package-card-body {
  padding-top: 32px;
}

.package-card:has(.package-card-badge) {
  padding-top: 0;
}

.package-card--platinum {
  border: 2px solid var(--primary);
  box-shadow: 0 0 0 1px rgba(0, 117, 101, 0.25), 0 8px 32px rgba(0, 117, 101, 0.12);
}

.package-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.package-card-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  min-height: 2.6em;
  line-height: 1.45;
}

.package-price-block {
  margin-bottom: 16px;
}

.package-from {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2px;
}

.package-price {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.package-time {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.package-book {
  width: 100%;
  margin-bottom: 20px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.package-features {
  list-style: none;
  margin-top: auto;
}

.package-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  margin-bottom: 8px;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 700;
}

.services-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 720px;
  margin: 0 auto;
}

.addons-spotlight {
  margin-bottom: 36px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.addons-spotlight-header {
  text-align: center;
  margin-bottom: 28px;
}

.addons-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.addons-spotlight-title span {
  color: var(--primary-light);
}

.addons-spotlight-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

.addons-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.addons-spotlight-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.addons-spotlight-card:hover {
  border-color: rgba(0, 167, 156, 0.45);
  transform: translateY(-2px);
}

.addons-spotlight-card h3 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.35;
}

.addons-spotlight-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 14px;
  min-height: 2.4em;
  line-height: 1.4;
}

.addons-spotlight-card .package-price-block {
  margin-bottom: 14px;
}

.addons-spotlight-card .package-price {
  font-size: 1.75rem;
}

.addons-spotlight-card .package-price-unit {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0;
}

.addons-spotlight-card .package-book {
  margin-top: auto;
  margin-bottom: 0;
}

.premium-plus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.premium-plus-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.premium-plus-card-media {
  height: 160px;
  overflow: hidden;
}

.premium-plus-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium-plus-card-body {
  padding: 24px;
}

.premium-plus-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.premium-plus-card ul {
  list-style: none;
}

.premium-plus-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.premium-plus-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .vehicle-selector {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .addons-spotlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-packages {
    padding: 40px 0 56px;
  }

  .vehicle-selector {
    gap: 12px;
  }

  .vehicle-tab {
    padding: 16px 10px 12px;
  }

  .vehicle-tab img {
    height: 44px;
  }

  .package-cards-grid {
    grid-template-columns: 1fr;
  }

  .addons-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .premium-plus-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Footer ── */
.site-footer {
  background: #2d3436;
  border-top: none;
  padding: 60px 0 32px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 72px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-social a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-1px);
}

.footer-social svg,
.footer-social__icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.footer-social__icon--google {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.footer-subheading {
  margin-top: 28px;
}

.footer-col ul li {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col ul li + li {
  margin-top: 8px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

body.has-bottom-nav {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

/* ── Bottom Nav Bar ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  padding: 8px 16px calc(8px + env(safe-area-inset-bottom, 0px));
}

.bottom-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #cf2e2e;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: var(--transition);
}

.bottom-nav-call:hover {
  background: #b82828;
  color: var(--white);
}

.bottom-nav-call svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.25;
  fill: none;
  flex-shrink: 0;
}

.bottom-nav-links {
  display: flex;
  align-items: stretch;
  flex: 1;
  justify-content: center;
  margin-left: 12px;
  margin-right: 24px;
  gap: 88px;
}

.bottom-nav-item {
  flex: 0 0 auto;
  min-width: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 16px 12px;
  text-decoration: none;
  transition: var(--transition);
  color: #888;
}

.bottom-nav-item.active {
  color: #cf2e2e;
}

.bottom-nav-item:not(.active):hover {
  color: #aaa;
}

.bottom-nav-item svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.25;
  fill: none;
  transition: var(--transition);
}

.bottom-nav-item span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
  transition: var(--transition);
}

/* ── Responsive ── */
@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }

  .nav-panel {
    flex: 1 1 auto;
    order: 2;
    grid-template-rows: 1fr;
    border-top: none;
    padding-top: 0;
  }

  .nav-actions {
    order: 3;
  }

  .nav-panel-inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .nav-panel a {
    padding: 8px 14px;
  }

  .nav-menu-book {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tagline {
    justify-content: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-wrap img {
    width: min(280px, 70%);
  }

  .services-grid,
  .process-grid,
  .testimonials-grid,
  .fleet-packages,
  .fleet-benefits {
    grid-template-columns: 1fr;
  }

  .fleet-gallery {
    grid-template-columns: 1fr;
  }

  .fleet-gallery-item--wide {
    grid-column: span 1;
  }

  .fleet-gallery-item--wide img {
    aspect-ratio: 16 / 9;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .addon-select-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 24px 20px;
  }

  .form-progress__label {
    font-size: 0.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .fleet-packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tagline,
  .hero-actions {
    justify-content: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .error-404__actions {
    flex-direction: column;
  }

  .error-404__actions .btn {
    width: 100%;
  }

  .booking-other__actions {
    flex-direction: column;
  }

  .booking-other__actions .btn {
    width: 100%;
  }
}

/* ── Image performance (no quality change) ── */
.marquee-section,
.fleet-gallery,
.services-grid,
.cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 1px 520px;
}

/* ── 404 page ── */
.error-404 {
  min-height: calc(100vh - 180px);
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 117, 101, 0.12), transparent 70%),
    linear-gradient(180deg, #f7faf9 0%, #eef4f2 100%);
}

.error-404__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.error-404__code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 7.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.22;
  margin: 0 0 8px;
}

.error-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px;
}

.error-404__desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted, #5a6563);
  margin: 0 0 32px;
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.error-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-404__links a {
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.error-404__links a:hover {
  color: var(--primary-dark);
}

/* ── Booking: other / custom vehicle ── */
.booking-other {
  margin-top: 20px;
  padding: 22px 20px;
  border: 1px solid rgba(0, 117, 101, 0.22);
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(0, 117, 101, 0.06), rgba(0, 167, 156, 0.04));
}

.booking-other[hidden] {
  display: none;
}

.booking-other__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--text);
}

.booking-other__desc {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-muted, #5a6563);
  margin: 0 0 18px;
}

.booking-other__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.booking-other__success {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(0, 117, 101, 0.1);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

.booking-other__success[hidden] {
  display: none;
}

.booking-standard-fields[hidden] {
  display: none;
}

/* ── SEO / location / guide pages ── */
.seo-page {
  padding: 56px 0 80px;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 40%);
}

.seo-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.seo-prose {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.seo-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}

.seo-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--black);
}

.seo-prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 22px 0 10px;
}

.seo-prose p,
.seo-prose li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.seo-prose ul {
  margin: 12px 0 18px 1.2em;
}

.seo-prose li + li {
  margin-top: 8px;
}

.seo-prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.seo-prose a.btn,
.seo-cta a.btn {
  text-decoration: none;
  text-underline-offset: unset;
}

.seo-prose a.btn-primary,
.seo-cta a.btn-primary {
  color: var(--white);
}

.seo-prose a.btn-primary:hover,
.seo-cta a.btn-primary:hover {
  color: var(--white);
}

.seo-prose a.btn-outline,
.seo-cta a.btn-outline {
  color: var(--primary);
  background: transparent;
}

.seo-prose a.btn-outline:hover,
.seo-cta a.btn-outline:hover {
  color: var(--white);
  background: var(--primary);
}

.seo-prose a.areas-hub-card {
  color: inherit;
  text-decoration: none;
}

.seo-prose a.areas-hub-card:hover {
  text-decoration: none;
}

.sidebar-card a.btn,
.sidebar-card a.btn-primary,
.sidebar-card__btn {
  text-decoration: none;
}

.sidebar-card a.btn-primary,
a.btn-primary.sidebar-card__btn {
  color: var(--white);
}

.sidebar-card a.btn-primary:hover,
a.btn-primary.sidebar-card__btn:hover {
  color: var(--white);
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.seo-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: calc(var(--header-height) + 16px);
}

.seo-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-aside__list li + li {
  margin-top: 10px;
}

.seo-aside__list a {
  color: var(--text);
  font-size: 0.925rem;
}

.seo-aside__list a:hover {
  color: var(--primary);
}

.areas-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.areas-hub-card {
  display: block;
  padding: 20px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}

.areas-hub-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.areas-hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--primary-dark);
  text-decoration: none;
}

.areas-hub-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-light);
  text-decoration: none;
}

.areas-hub-card:hover h3 {
  color: var(--primary);
}

.area-tag a {
  color: inherit;
  text-decoration: none;
}

.area-tag a:hover {
  color: var(--primary);
}

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

  .seo-aside {
    position: static;
  }

  .seo-prose {
    padding: 28px 20px;
  }
}
