:root {
  --black: #050505;
  --panel: rgba(9, 9, 8, 0.96);
  --gold: #c9a34f;
  --gold-light: #e2c477;
  --white: #f7f3e9;
  --grey: #99958c;
  --border: rgba(201, 163, 79, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

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

/* HEADER */

.header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;

  height: 120px;
  padding: 0 clamp(24px, 4vw, 72px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(3, 3, 3, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo-image {
  display: block;
  width: auto;
  height: 112px;
}

.navigation {
  display: flex;
  align-self: stretch;
  gap: 34px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #e0ddd6;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;

  font-family: inherit;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-chevron {
  color: var(--gold);
  font-size: 8px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-item.open .nav-chevron {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;

  min-width: 235px;
  padding: 14px;

  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);

  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-links {
  display: flex;
  flex-direction: column;

  max-height: 70vh;
  overflow-y: auto;
}

.dropdown-menu--wide {
  min-width: 440px;
}

.dropdown-menu--wide .dropdown-links {
  display: block;
  columns: 2;
  column-gap: 18px;
}

.dropdown-links a {
  display: block;
  padding: 8px 10px;

  color: #d6d2c8;
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  break-inside: avoid;
}

.dropdown-links a:hover {
  color: var(--gold-light);
  background: rgba(201, 163, 79, 0.08);
}

.dropdown-view-all {
  display: block;
  margin-top: 8px;
  padding: 11px 10px;
  border-top: 1px solid rgba(201, 163, 79, 0.25);

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dropdown-view-all:hover {
  color: var(--gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}

/* NAV TOGGLE (mobile hamburger, hidden on desktop) */

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: rgba(201, 163, 79, 0.08);
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-icon {
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* LANGUAGE SWITCH */

.lang-switch {
  display: flex;
  flex: 0 0 auto;
  border: 1px solid rgba(201, 163, 79, 0.4);
}

.lang-switch a {
  display: flex;
  align-items: center;
  padding: 0 11px;
  height: 28px;

  color: #a5a198;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.lang-switch a:not(.active):hover {
  color: var(--gold-light);
}

.lang-switch a.active {
  background: var(--gold);
  color: #090805;
}

.phone {
  font-size: 11px;
  letter-spacing: 0.04em;
}

.phone::before {
  content: "◆";
  margin-right: 10px;
  color: var(--gold);
  font-size: 9px;
}

.book-button {
  min-width: 142px;
  padding: 17px 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #080704;
  background: linear-gradient(110deg, #ad8439, #e0c273, #ad8439);
  border: 1px solid var(--gold);

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  transition: 0.2s ease;
}

.book-button:hover {
  filter: brightness(1.1);
}

/* HERO */

.hero {
  position: relative;
  min-height: clamp(800px, 100vh - 115px, 940px);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 157px clamp(24px, 4vw, 72px) 45px;

  background: var(--black);
  overflow: hidden;
}

/*
 * Background lives on a separate layer sized to the tallest state
 * of the section (Return mode), so switching trip modes resizes
 * only the form — the photo scale stays constant.
 */

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;

  height: max(100%, 1100px);

  background:
    linear-gradient(
      90deg,
      rgba(2, 2, 2, 0.98) 0%,
      rgba(2, 2, 2, 0.86) 30%,
      rgba(2, 2, 2, 0.35) 65%,
      rgba(2, 2, 2, 0.18) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 2, 2, 0.75) 0%,
      transparent 50%
    ),
    url("../images/backgrounds/hero-transfer-valencia.webp")
    center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 43%;
  max-width: 590px;
  margin-top: -15px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0 0 30px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow::after {
  content: "";
  width: 65px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0 0 23px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 3.6vw, 58px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 390px;
  margin: 0;

  color: #c9c5bc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.75;
}

.hero .hero-description {
  max-width: 470px;
}

/* SHORT BENEFITS LIST */

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 13px 34px;

  max-width: 480px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 11px;

  color: #d3cfc5;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.hero-benefits li::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
}

/* STATISTICS */

.statistics {
  display: flex;
  margin-top: 48px;
}

.statistic {
  min-width: 115px;
  padding: 0 26px;
  border-left: 1px solid rgba(201, 163, 79, 0.45);
}

.statistic:first-child {
  padding-left: 0;
  border-left: 0;
}

.statistic-icon {
  display: block;
  margin-bottom: 12px;

  color: var(--gold);
  font-size: 27px;
  line-height: 1;
}

.statistic strong,
.statistic small {
  display: block;
}

.statistic strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
}

.statistic small {
  margin-top: 7px;
  color: #aaa69d;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

/* BOOKING FORM */

.booking-form {
  position: relative;
  z-index: 5;

  width: min(600px, 47vw);
  flex: 0 0 auto;
  padding: 30px 31px 21px;

  background:
    radial-gradient(
      circle at 85% 0%,
      rgba(201, 163, 79, 0.12),
      transparent 35%
    ),
    var(--panel);

  border: 1px solid var(--border);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
}

.booking-form h2 {
  margin: 0 0 20px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 400;
}

/* TRIP TYPE */

.trip-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  margin-bottom: 17px;
  border: 1px solid #3a362d;
}

.trip-type {
  height: 40px;

  color: #8e8a82;
  background: transparent;
  border: 0;
  border-right: 1px solid #3a362d;

  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.trip-type:last-child {
  border-right: 0;
}

.trip-type.active {
  color: white;
  box-shadow:
    inset 0 0 0 1px var(--gold),
    inset 0 -2px var(--gold);
}

/* FORM FIELDS */

.location-fields {
  display: grid;
  gap: 11px;
}

.field {
  display: block;
}

.field-title {
  display: block;
  margin-bottom: 6px;

  color: #918d84;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.input-box {
  min-height: 48px;
  padding: 0 13px;

  display: flex;
  align-items: center;
  gap: 12px;

  background: rgba(11, 11, 10, 0.9);
  border: 1px solid #37342d;
}

.input-icon {
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  min-width: 0;

  color: #eeeae1;
  background: transparent;
  border: 0;
  outline: 0;

  font-size: 11px;
  color-scheme: dark;
}

/* The dropdown popup itself often ignores color-scheme and renders
   with a white background regardless of browser/OS — force dark text
   on the options so they stay readable against that white popup. */
.input-box select option {
  color: #171611;
  background: #fffdf8;
}

.input-box input::placeholder,
.input-box textarea::placeholder {
  color: #6f6b64;
}

.input-box--textarea {
  padding: 12px 13px;
  align-items: flex-start;
}

.input-box--textarea textarea {
  min-height: 48px;
  resize: none;
  line-height: 1.5;
}

.booking-hidden {
  display: none !important;
}

.small-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 9px;
  margin-top: 12px;
}

.small-fields--hourly {
  grid-template-columns: 1fr 1.35fr;
}

/* RETURN AND HOURLY EXTRAS */

.additional-fields-title {
  margin: 17px 0 0;

  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--gold-light);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.additional-fields-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 163, 79, 0.4);
}

.return-fields .small-fields,
.hourly-fields .small-fields {
  margin-top: 10px;
}

#returnPickupField {
  margin-top: 11px;
}

.booking-extra-fields {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 9px;
  margin-top: 12px;
}

/* ERROR AND PRIVACY */

.booking-error {
  display: none;
  margin-top: 15px;
  padding: 11px 13px;

  color: #e5a894;
  background: rgba(170, 66, 38, 0.14);
  border: 1px solid rgba(204, 110, 78, 0.55);

  font-size: 10px;
  line-height: 1.5;
}

.booking-error.visible {
  display: block;
}

.booking-privacy {
  margin: 12px 0 0;

  color: #757168;
  font-size: 8px;
  text-align: center;
  letter-spacing: 0.05em;
}

/* VEHICLES */

.vehicle-section {
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.vehicle-section legend {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.vehicle-section legend::before,
.vehicle-section legend::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.75;
}

.vehicles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.vehicle {
  position: relative;
  height: 93px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #827e75;
  background: rgba(12, 12, 10, 0.76);
  border: 1px solid #413b2f;

  cursor: pointer;
  transition: 0.2s ease;
}

.vehicle input {
  position: absolute;
  opacity: 0;
}

.vehicle svg {
  width: 63px;
  height: 31px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.vehicle strong {
  margin-top: 6px;

  color: #e5e1d7;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
}

.vehicle small {
  margin-top: 4px;
  color: #767168;
  font-size: 7px;
}

.vehicle:hover,
.vehicle.selected {
  color: var(--gold-light);
  border-color: var(--gold);
  background: linear-gradient(
    180deg,
    rgba(201, 163, 79, 0.12),
    rgba(201, 163, 79, 0.02)
  );
}

/* SUBMIT */

.submit-button {
  width: 100%;
  height: 51px;
  margin-top: 19px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #090805;
  background: linear-gradient(
    110deg,
    #ae8539,
    #e4c679,
    #b48b3e
  );

  border: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.submit-button:hover {
  filter: brightness(1.08);
}

.whatsapp-button {
  width: 100%;
  height: 46px;
  margin-top: 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #c89a46;
  background: transparent;
  border: 1px solid #b68a3c;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  transition: 0.2s ease;
}

.whatsapp-button::before {
  content: "✆";
  font-size: 15px;
}

.whatsapp-button:hover {
  color: #080704;
  background: #c6a052;
}

/* BENEFITS BAR */

.benefits {
  min-height: 115px;
  padding: 0 clamp(24px, 4vw, 72px);

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  background: #070706;
  border-top: 1px solid rgba(201, 163, 79, 0.28);
  border-bottom: 1px solid rgba(201, 163, 79, 0.16);
}

.benefit {
  padding: 24px 28px;

  display: flex;
  align-items: center;
  gap: 18px;

  border-right: 1px solid #29271f;
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 43px;
  height: 43px;
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;

  font-size: 20px;
}

.benefit strong {
  display: block;

  color: var(--gold);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.benefit p {
  margin: 7px 0 0;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  line-height: 1.45;
}

/* FLEET SECTION */

.fleet-section {
  padding: 82px clamp(24px, 4vw, 72px) 65px;
  color: #171611;
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(255, 255, 255, 0.9),
      transparent 45%
    ),
    #f6f1e7;
}

.fleet-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

.fleet-heading {
  margin-bottom: 48px;
  text-align: center;
}

.fleet-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin: 0 0 18px;

  color: #a98038;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.fleet-eyebrow::before,
.fleet-eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: #c5a052;
}

.fleet-heading h2 {
  margin: 0;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.fleet-heading-description {
  max-width: 570px;
  margin: 17px auto 0;

  color: #79756c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

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

.fleet-card {
  min-width: 0;
  padding: 31px 23px 25px;

  display: flex;
  flex-direction: column;

  background: rgba(255, 253, 248, 0.5);
  border: 1px solid rgba(183, 142, 67, 0.38);
  border-radius: 7px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-7px);
  background: #fffdf8;
  box-shadow: 0 20px 45px rgba(42, 32, 15, 0.12);
}

.fleet-card-header {
  text-align: center;
}

.fleet-card h3 {
  margin: 0;

  color: #29261f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
}

.fleet-image {
  width: 100%;
  height: 205px;
  margin: 5px 0 8px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 15px 12px rgba(0, 0, 0, 0.16));
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.035);
}

.fleet-information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;

  padding: 15px 0;
  border-top: 1px solid rgba(92, 82, 65, 0.14);
  border-bottom: 1px solid rgba(92, 82, 65, 0.14);
}

.fleet-information-item {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #666158;
  font-size: 8px;
  white-space: nowrap;
}

.fleet-information-item svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;

  fill: none;
  stroke: #716c62;
  stroke-width: 1.5;
}

.fleet-card-description {
  min-height: 65px;
  margin: 20px 4px;

  color: #716d64;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.fleet-details-button {
  width: 100%;
  height: 43px;
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #a77b31;
  background: transparent;
  border: 1px solid #bf944a;

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;

  transition: 0.2s ease;
}

.fleet-details-button:hover {
  color: #fff;
  background: #b58b42;
}

.fleet-all-wrapper {
  margin-top: 44px;
  text-align: center;
}

.fleet-all-button {
  min-width: 240px;
  height: 48px;
  padding: 0 35px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #9b732e;
  background: transparent;
  border: 1px solid #b78c43;

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  transition: 0.2s ease;
}

.fleet-all-button:hover {
  color: white;
  background: #b58b42;
}

/* SERVICES SHOWCASE */

.services-showcase {
  position: relative;
  padding: 70px clamp(24px, 6vw, 115px) 75px;
  overflow: hidden;

  color: #f5f1e8;
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(201, 163, 79, 0.07),
      transparent 36%
    ),
    linear-gradient(135deg, #080807, #11110f 50%, #070706);
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px
    ),
    linear-gradient(
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px
    );

  background-size: 50px 50px;
  opacity: 0.15;
}

.services-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.services-heading {
  margin-bottom: 43px;
  text-align: center;
}

.services-eyebrow {
  margin: 0 0 15px;

  color: #bd913e;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.services-heading h2 {
  margin: 0;

  color: #f4f0e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.services-heading-line {
  width: 45px;
  height: 1px;
  margin: 21px auto 0;
  background: #b98c3d;
}

/* .services-heading is built for dark sections (light text) — these
   blocks reuse it on a light background, so flip the colors. */

.standard-strip .services-heading h2,
.packing .services-heading h2,
.stop-planner .services-heading h2,
.capacity-compare .services-heading h2,
.billing-strip .services-heading h2,
.usecase-rows-section .services-heading h2,
.pricing-explainer .services-heading h2,
.distance-chart-section .services-heading h2,
.info-panel-section--light .services-heading h2,
.weather-strip-section .services-heading h2,
.contact-methods .services-heading h2 {
  color: #171611;
}

.standard-strip .services-eyebrow,
.packing .services-eyebrow,
.stop-planner .services-eyebrow,
.capacity-compare .services-eyebrow,
.billing-strip .services-eyebrow,
.usecase-rows-section .services-eyebrow,
.pricing-explainer .services-eyebrow,
.distance-chart-section .services-eyebrow,
.info-panel-section--light .services-eyebrow,
.weather-strip-section .services-eyebrow,
.contact-methods .services-eyebrow {
  color: #a98038;
}

.services-heading-description {
  max-width: 640px;
  margin: 19px auto 0;

  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

.services-slider {
  position: relative;
}

.services-viewport {
  overflow: hidden;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;

  transition: transform 0.45s ease;
}

/* Slider arrows: mobile only, enabled in responsive.css */

.services-arrow,
.routes-arrow {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 42px;
  height: 42px;

  place-items: center;

  color: #c99d4b;
  background: rgba(9, 9, 8, 0.9);
  border: 1px solid #b68a3c;
  border-radius: 50%;

  font-size: 19px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s ease;
}

.services-arrow:hover,
.routes-arrow:hover {
  color: #080704;
  background: #c6a052;
}

.services-arrow--previous,
.routes-arrow--previous {
  left: -9px;
}

.services-arrow--next,
.routes-arrow--next {
  right: -9px;
}

.service-card {
  position: relative;
  min-width: 0;
  min-height: 490px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  background: #10100e;
  border: 1px solid rgba(190, 147, 67, 0.58);
  border-radius: 7px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: #c99f51;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.service-image {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: #171714;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 52%,
    rgba(16, 16, 14, 0.96) 100%
  );
}

.service-image img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  padding: 0 25px 25px;

  display: flex;
  flex-direction: column;
}

.service-content h3 {
  position: relative;
  z-index: 2;

  margin: -4px 0 13px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.service-content p {
  margin: 0 0 26px;

  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  line-height: 1.65;
}

.service-button {
  width: 100%;
  height: 43px;
  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #c89a46;
  background: transparent;
  border: 1px solid #b68a3c;

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;

  transition: 0.2s ease;
}

.service-button:hover {
  color: #080704;
  background: #c6a052;
}

/* POPULAR ROUTES */

.popular-routes {
  --routes-bg: #090909;
  --routes-card: #111111;
  --routes-card-hover: #16130d;
  --routes-text: #ffffff;
  --routes-muted: #aaa7a0;
  --routes-gold: #c9a45c;
  --routes-gold-light: #e0c281;
  --routes-border: rgba(201, 164, 92, 0.22);

  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  color: var(--routes-text);
  background:
    radial-gradient(
      circle at 5% 5%,
      rgba(201, 164, 92, 0.15),
      transparent 30%
    ),
    radial-gradient(
      circle at 95% 95%,
      rgba(201, 164, 92, 0.08),
      transparent 27%
    ),
    var(--routes-bg);
}

.popular-routes__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.popular-routes__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.popular-routes__intro {
  max-width: 760px;
}

.popular-routes__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--routes-gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.popular-routes__label span {
  display: block;
  width: 38px;
  height: 1px;
  background: var(--routes-gold);
}

.popular-routes h2 {
  max-width: 720px;
  margin: 0 0 20px;
  color: var(--routes-text);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.popular-routes__intro p {
  max-width: 690px;
  margin: 0;
  color: var(--routes-muted);
  font-size: 17px;
  line-height: 1.7;
}

.popular-routes__all,
.popular-routes__quote {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid var(--routes-border);
  border-radius: 999px;
  color: var(--routes-text);
  background: rgba(201, 164, 92, 0.06);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.popular-routes__all:hover,
.popular-routes__quote:hover {
  color: #090909;
  border-color: var(--routes-gold-light);
  background: var(--routes-gold-light);
  transform: translateY(-2px);
}

.routes-slider {
  position: relative;
}

.routes-viewport {
  overflow: hidden;
}

.popular-routes__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;

  transition: transform 0.45s ease;
}

.route-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--routes-border);
  border-radius: 22px;
  color: var(--routes-text);
  background:
    linear-gradient(
      145deg,
      rgba(201, 164, 92, 0.08),
      transparent 45%
    ),
    var(--routes-card);
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.route-card::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.1);
  filter: blur(35px);
  content: "";
  pointer-events: none;
}

.route-card:hover {
  border-color: rgba(224, 194, 129, 0.65);
  background:
    linear-gradient(
      145deg,
      rgba(201, 164, 92, 0.14),
      transparent 50%
    ),
    var(--routes-card-hover);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
  transform: translateY(-7px);
}

.route-card__line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}

.route-card__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 5px 12px;
  border: 1px solid rgba(201, 164, 92, 0.48);
  border-radius: 999px;
  color: var(--routes-gold-light);
  background: rgba(201, 164, 92, 0.07);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.route-card__path {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 164, 92, 0.65),
    rgba(201, 164, 92, 0.08)
  );
}

.route-card__path::before,
.route-card__path::after {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  background: var(--routes-gold);
  content: "";
  transform: translateY(-50%);
}

.route-card__path::before {
  left: 0;
  width: 5px;
  height: 5px;
}

.route-card__path::after {
  right: 0;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 18px rgba(201, 164, 92, 0.7);
}

.route-card__destination-code {
  color: var(--routes-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.route-card__content {
  flex: 1;
}

.route-card h3 {
  margin: 0 0 12px;
  color: var(--routes-text);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.route-card p {
  margin: 0;
  color: var(--routes-muted);
  font-size: 14px;
  line-height: 1.65;
}

.route-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--routes-gold-light);
  font-size: 13px;
  font-weight: 500;
}

.route-card__link span {
  transition: transform 0.25s ease;
}

.route-card:hover .route-card__link span {
  transform: translateX(5px);
}

.popular-routes__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--routes-border);
}

.popular-routes__footer p {
  max-width: 700px;
  margin: 0;
  color: var(--routes-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* VEHICLE DETAIL PAGES */

.vehicle-hero {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;

  padding: 182px clamp(24px, 4vw, 72px) 65px;

  background:
    linear-gradient(
      90deg,
      rgba(4, 4, 3, 0.97) 0%,
      rgba(4, 4, 3, 0.85) 35%,
      rgba(4, 4, 3, 0.45) 70%,
      rgba(4, 4, 3, 0.3) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 4, 3, 0.8) 0%,
      transparent 55%
    ),
    url("../images/backgrounds/vehicle-hero.webp")
    center / cover no-repeat #060605;
}

.vehicle-hero-content {
  max-width: 560px;
}

.vehicle-hero h1 {
  margin: 0 0 12px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.vehicle-hero-image {
  flex: 0 1 620px;
  min-width: 0;
}

.vehicle-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 28px rgba(0, 0, 0, 0.45));
}

.vehicle-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.vehicle-book-button {
  min-width: 210px;
  height: 51px;
  padding: 0 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #090805;
  background: linear-gradient(
    110deg,
    #ae8539,
    #e4c679,
    #b48b3e
  );

  border: 1px solid var(--gold);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.vehicle-book-button:hover {
  filter: brightness(1.08);
}

.vehicle-outline-button {
  min-width: 160px;
  height: 51px;
  padding: 0 26px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #c89a46;
  background: transparent;
  border: 1px solid #b68a3c;

  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  transition: 0.2s ease;
}

.vehicle-outline-button:hover {
  color: #080704;
  background: #c6a052;
}

/* DETAIL CARDS */

.vehicle-details {
  padding: 72px clamp(24px, 4vw, 72px) 75px;
  background: #070706;
  border-top: 1px solid rgba(201, 163, 79, 0.22);
}

.vehicle-details-container,
.vehicle-cta-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.detail-card {
  padding: 27px 25px;
  background: #100f0d;
  border: 1px solid rgba(190, 147, 67, 0.4);
}

.detail-card h3 {
  margin: 16px 0 11px;

  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.detail-card p {
  margin: 0;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
}

.detail-card ul {
  margin: 0;
  padding: 0;
  list-style: none;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
}

.detail-card li {
  position: relative;
  padding-left: 17px;
}

.detail-card li::before {
  content: "◆";
  position: absolute;
  top: 0.45em;
  left: 0;

  color: var(--gold);
  font-size: 7px;
  line-height: 1;
}

/* BREADCRUMBS */

.breadcrumbs {
  position: relative;
  z-index: 3;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;

  margin: 0 0 26px;

  font-size: 10px;
  letter-spacing: 0.03em;
}

.breadcrumbs a {
  color: #a5a198;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.breadcrumbs span[aria-hidden] {
  color: #5c584f;
}

.breadcrumbs .breadcrumbs-current {
  color: var(--gold);
}

/* WHO IT'S FOR — light editorial */

.who-for {
  padding: 90px clamp(24px, 4vw, 72px);
  color: #171611;
  background: var(--white);
}

.who-for-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.who-for-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0 0 18px;

  color: #a98038;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.who-for-eyebrow::after {
  content: "";
  width: 45px;
  height: 1px;
  background: #c5a052;
}

.who-for h2 {
  margin: 0 0 24px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.who-for-lead {
  margin: 0 0 44px;
  max-width: 760px;

  color: #3a362c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.7;
}

.who-for-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(92, 82, 65, 0.14);
  border: 1px solid rgba(183, 142, 67, 0.3);
}

.who-for-column {
  padding: 28px 30px;
  background: #fffdf8;
}

.who-for-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 16px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.who-for-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.who-for-column li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;

  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.6;
}

.who-for-column li:last-child {
  margin-bottom: 0;
}

.who-for-column li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a98038;
  font-size: 11px;
}

.who-for-column--alt li::before {
  content: "→";
}

.who-for-column--alt a {
  color: #a77b31;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.who-for-column--alt a:hover {
  color: #171611;
}

/* GALLERY */

.vehicle-gallery {
  padding: 68px clamp(24px, 4vw, 72px) 75px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.vehicle-gallery-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-item {
  aspect-ratio: 16 / 10;
  overflow: hidden;

  background: #141412;
  border: 1px solid rgba(190, 147, 67, 0.35);
}

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

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

.gallery-caption {
  display: block;
  margin-top: 10px;

  color: #918d84;
  font-size: 11px;
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
}

/* WHERE WE TAKE YOU — geo section, light */

.vehicle-geo {
  padding: 90px clamp(24px, 4vw, 72px);
  color: #171611;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(201, 163, 79, 0.1),
      transparent 40%
    ),
    var(--white);
}

.vehicle-geo-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.vehicle-geo .who-for-eyebrow,
.region-coverage .who-for-eyebrow {
  justify-content: center;
}

.vehicle-geo .who-for-eyebrow::before,
.vehicle-geo .who-for-eyebrow::after,
.region-coverage .who-for-eyebrow::before,
.region-coverage .who-for-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #c5a052;
}

.vehicle-geo h2 {
  margin: 0 0 22px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.vehicle-geo p {
  margin: 0 auto 30px;
  max-width: 720px;

  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.8;
}

.geo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.geo-tags a {
  padding: 9px 18px;

  color: #8a6a2b;
  background: #fffdf8;
  border: 1px solid rgba(183, 142, 67, 0.4);

  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: 0.2s ease;
}

.geo-tags a:hover {
  color: white;
  background: #b58b42;
}

/* SPECS TABLE */

.vehicle-specs {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #070706;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.vehicle-specs-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(190, 147, 67, 0.3);
}

.specs-table tr:not(:last-child) th,
.specs-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(190, 147, 67, 0.18);
}

.specs-table th,
.specs-table td {
  padding: 16px 22px;
  text-align: left;
  vertical-align: top;
}

.specs-table th {
  width: 40%;

  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.specs-table td {
  color: #d6d2c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.6;
}

/* BOOKING CTA */

.vehicle-cta {
  padding: 78px clamp(24px, 4vw, 72px) 85px;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 163, 79, 0.1),
      transparent 42%
    ),
    #070706;

  border-top: 1px solid rgba(201, 163, 79, 0.22);
}

.vehicle-cta h2 {
  margin: 0 0 16px;

  color: #f4f0e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.vehicle-cta p {
  max-width: 480px;
  margin: 0 auto;

  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

.vehicle-cta .vehicle-book-button {
  margin-top: 30px;
}

/* ============================================
   HOW IT WORKS — dark, open layout, numbered steps
   ============================================ */

.process {
  padding: 90px clamp(24px, 4vw, 72px) 95px;
  background: var(--black);
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.process-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.process-heading {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.process-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin: 0 0 18px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.process-eyebrow::before,
.process-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.process-heading h2 {
  margin: 0 0 16px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.process-intro {
  margin: 0;
  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

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

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-step {
  position: relative;
  padding: 0 26px 0 0;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 0;
  left: calc(100% - 26px);

  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 163, 79, 0.5),
    rgba(201, 163, 79, 0.05)
  );
}

.process-number {
  display: block;
  margin-bottom: 22px;

  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 79, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}

.process-step-content h3 {
  margin: 0 0 11px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.process-step-content p {
  margin: 0;
  padding-right: 8px;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US — light editorial split layout
   ============================================ */

.expertise {
  padding: 95px clamp(24px, 4vw, 72px);
  color: #171611;
  background: var(--white);
}

.expertise-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 70px;
  align-items: start;
}

.expertise-eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;

  margin: 0 0 18px;

  color: #a98038;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.expertise-eyebrow::after {
  content: "";
  width: 45px;
  height: 1px;
  background: #c5a052;
}

.expertise-text h2 {
  margin: 0 0 26px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.expertise-lead {
  margin: 0 0 20px;

  color: #29261f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.65;
}

.expertise-text p {
  margin: 0 0 20px;

  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.85;
}

.expertise-text p:last-child {
  margin-bottom: 0;
}

.expertise-stats {
  display: grid;
  gap: 2px;
  background: rgba(92, 82, 65, 0.14);
  border: 1px solid rgba(183, 142, 67, 0.3);
}

.expertise-stat {
  padding: 24px 26px;
  background: #fffdf8;
}

.expertise-stat h3 {
  margin: 0 0 9px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.expertise-stat p {
  margin: 0;

  color: #79756c;
  font-size: 11px;
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS — dark, editorial pull-quotes
   ============================================ */

.testimonials {
  position: relative;
  overflow: hidden;
  padding: 95px clamp(24px, 4vw, 72px);

  color: white;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(201, 163, 79, 0.08),
      transparent 40%
    ),
    #0b0a08;
}

.testimonials-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 58px;
}

.testimonials-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin: 0 0 18px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.testimonials-eyebrow::before,
.testimonials-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.testimonials-heading h2 {
  margin: 0 0 18px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.testimonials-rating {
  margin: 0;
  color: #aaa69d;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.testimonials-stars {
  margin-right: 9px;
  color: var(--gold);
  letter-spacing: 2px;
}

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

.testimonial {
  margin: 0;
  padding: 38px 30px 32px;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 163, 79, 0.22);
}

.testimonial-mark {
  display: block;
  margin-bottom: 6px;

  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1;
  font-style: italic;
}

.testimonial-quote {
  margin: 0 0 26px;

  color: #e5e1d7;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.75;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2px;
}

.testimonial-author cite {
  color: #918d84;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   FAQ — light, native accordion
   ============================================ */

.faq {
  padding: 95px clamp(24px, 4vw, 72px);
  color: #171611;
  background: var(--white);
  border-top: 1px solid rgba(183, 142, 67, 0.25);
}

.faq-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 50px;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin: 0 0 18px;

  color: #a98038;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.faq-eyebrow::before,
.faq-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #c5a052;
}

.faq-heading h2 {
  margin: 0;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  padding: 22px 26px;
  background: #fffdf8;
  border: 1px solid rgba(183, 142, 67, 0.3);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  color: #211f19;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-icon {
  flex: 0 0 auto;

  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;

  color: #a98038;
  border: 1px solid rgba(183, 142, 67, 0.5);
  border-radius: 50%;

  font-family: Arial, sans-serif;
  font-size: 13px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  padding-right: 34px;

  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.75;
}

/* ============================================
   CLOSING CTA — full-width gold band
   ============================================ */

.closing-cta {
  padding: 75px clamp(24px, 4vw, 72px);
  text-align: center;

  background: linear-gradient(110deg, #9c7a34, #d8b666, #9c7a34);
}

.closing-cta-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.closing-cta h2 {
  margin: 0 0 14px;

  color: #100d05;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.closing-cta p {
  margin: 0 0 30px;

  color: rgba(16, 13, 5, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.closing-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 52px;
  padding: 0 34px;

  color: var(--white);
  background: #100d05;

  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  transition: 0.2s ease;
}

.closing-cta-button:hover {
  background: #221c0d;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  padding: 64px clamp(24px, 4vw, 72px) 0;
  background: #050504;
  border-top: 1px solid rgba(201, 163, 79, 0.2);
}

.site-footer-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  display: block;
  width: auto;
  height: 126px;
  margin-bottom: 18px;
}

.footer-brand p {
  margin: 0 0 16px;

  color: #948f84;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
}

.footer-phone {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 6px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links a {
  color: #9c988e;
  font-size: 11px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 22px clamp(24px, 4vw, 72px);
  margin: 0 clamp(-72px, -4vw, -24px);

  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: #807c71;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================
   VEHICLE PAGE UNIQUE BLOCKS
   Each component below is used on exactly ONE
   vehicle page, so no two pages look alike.
   ============================================ */

/* --- EXECUTIVE CAR: horizontal journey timeline --- */

.journey {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.journey-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.journey-step {
  position: relative;
  padding: 0 22px;
  text-align: center;
}

.journey-dot {
  position: relative;
  width: 13px;
  height: 13px;
  margin: 0 auto 22px;

  background: var(--gold);
  border-radius: 50%;
}

.journey-step::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 50%;
  left: -50%;
  height: 1px;
  background: rgba(201, 163, 79, 0.35);
}

.journey-step:first-child::before {
  display: none;
}

.journey-step h3 {
  margin: 0 0 10px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.journey-step p {
  margin: 0;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.7;
}

/* --- EXECUTIVE CAR: driver-standard trust strip --- */

.standard-strip {
  padding: 70px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.standard-strip-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.standard-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(183, 142, 67, 0.3);
  border-bottom: 1px solid rgba(183, 142, 67, 0.3);
}

.standard-item {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 24px 20px;
  border-left: 1px solid rgba(183, 142, 67, 0.2);
}

.standard-item:first-child {
  border-left: 0;
}

.standard-item span {
  flex: 0 0 auto;

  color: #a98038;
  font-size: 20px;
  line-height: 1;
}

.standard-item strong {
  display: block;

  color: #171611;
  font-size: 11px;
  font-weight: 400;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.4;
}

/* --- EXECUTIVE CAR: single pull-quote --- */

.single-quote {
  padding: 85px clamp(24px, 4vw, 72px);
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 163, 79, 0.09),
      transparent 45%
    ),
    #070706;
}

.single-quote-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.single-quote-mark {
  display: block;
  margin-bottom: 6px;

  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  font-style: italic;
  line-height: 1;
}

.single-quote p {
  margin: 0 0 22px;

  color: #ece8de;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
}

.single-quote cite {
  color: #918d84;
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- PREMIUM VAN: packing checklist --- */

.packing {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.packing-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.packing-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin-top: 8px;
}

.packing-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(183, 142, 67, 0.2);
}

.packing-item span {
  flex: 0 0 auto;
  color: #a98038;
  font-size: 16px;
  line-height: 1.3;
}

.packing-item p {
  margin: 0;
  color: #3a362c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.5;
}

/* --- PREMIUM VAN: child-seat spotlight banner --- */

.spotlight-banner {
  display: flex;
  align-items: center;
  gap: 34px;

  padding: 50px clamp(24px, 4vw, 72px);
  background: #0d0d0b;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
  border-bottom: 1px solid rgba(201, 163, 79, 0.16);
}

.spotlight-banner-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 34px;
}

.spotlight-icon {
  flex: 0 0 auto;

  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;

  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;

  font-size: 30px;
}

.spotlight-banner h2 {
  margin: 0 0 8px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 400;
}

.spotlight-banner p {
  margin: 0;
  max-width: 640px;

  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.65;
}

/* --- PREMIUM VAN: large stat banner --- */

.stat-banner {
  padding: 75px clamp(24px, 4vw, 72px);
  background: #070706;
}

.stat-banner-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-banner-item {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid rgba(201, 163, 79, 0.22);
}

.stat-banner-item:first-child {
  border-left: 0;
}

.stat-banner-number {
  display: block;
  margin-bottom: 10px;

  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.stat-banner-item p {
  margin: 0;
  color: #a5a198;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- MINIBUS: seat map visual --- */

.seat-map-section {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  text-align: center;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.seat-map-container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.seat-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 30px 0 22px;
}

.seat-map span {
  aspect-ratio: 1;

  display: grid;
  place-items: center;

  color: var(--gold);
  background: rgba(201, 163, 79, 0.06);
  border: 1px solid rgba(201, 163, 79, 0.4);

  font-size: 15px;
}

.seat-map-caption {
  margin: 0;
  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

/* --- MINIBUS: vertical stop planner --- */

.stop-planner {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.stop-planner-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.stop-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.stop-list li {
  position: relative;
  padding: 0 0 30px 34px;
  border-left: 1px solid rgba(183, 142, 67, 0.35);
}

.stop-list li:last-child {
  padding-bottom: 0;
}

.stop-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: -6px;

  width: 11px;
  height: 11px;

  background: var(--white);
  border: 2px solid #a98038;
  border-radius: 50%;
}

.stop-list h3 {
  margin: 0 0 6px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.stop-list p {
  margin: 0;
  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.6;
}

/* --- MINIBUS: group-size chip list --- */

.group-sizes {
  padding: 75px clamp(24px, 4vw, 72px) 85px;
  background: #070706;
}

.group-sizes-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.group-size-list {
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(201, 163, 79, 0.16);
}

.group-size-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 16px 22px;
  background: #0d0d0b;
}

.group-size-row span:first-child {
  color: #d6d2c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.group-size-row span:last-child {
  flex: 0 0 auto;

  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- COACH: large event-type tiles --- */

.event-tiles-section {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.event-tiles-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.event-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.event-tile {
  padding: 34px 22px;
  text-align: center;

  background: #131210;
  border: 1px solid rgba(190, 147, 67, 0.3);
}

.event-tile span {
  display: block;
  margin-bottom: 16px;

  color: var(--gold);
  font-size: 26px;
}

.event-tile h3 {
  margin: 0 0 8px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-tile p {
  margin: 0;
  color: #918d84;
  font-size: 11px;
  line-height: 1.55;
}

/* --- COACH: capacity comparison bars --- */

.capacity-compare {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.capacity-compare-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.capacity-bars {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.capacity-bar-row {
  display: grid;
  grid-template-columns: 120px 1fr 60px;
  align-items: center;
  gap: 14px;
}

.capacity-bar-label {
  color: #3a362c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.capacity-bar-track {
  display: block;
  height: 10px;
  background: rgba(183, 142, 67, 0.14);
}

.capacity-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ad8439, #d8b666);
}

.capacity-bar-row--active .capacity-bar-label {
  color: #171611;
  font-weight: 700;
}

.capacity-bar-value {
  color: #a98038;
  font-size: 11px;
  text-align: right;
}

/* --- COACH: badge row --- */

.badge-row-section {
  padding: 70px clamp(24px, 4vw, 72px) 80px;
  background: #070706;
}

.badge-row-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 14px 22px;
  background: #100f0d;
  border: 1px solid rgba(190, 147, 67, 0.4);
}

.badge span {
  color: var(--gold);
  font-size: 16px;
}

.badge strong {
  color: #e5e1d7;
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   FLEET INDEX: decision guide + region coverage
   ============================================ */

.decision-guide {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.decision-guide-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.decision-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.decision-step {
  padding: 30px 26px;
  background: #131210;
  border: 1px solid rgba(190, 147, 67, 0.3);
}

.decision-step-number {
  display: block;
  margin-bottom: 16px;

  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 79, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.decision-step h3 {
  margin: 0 0 10px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.decision-step p {
  margin: 0;
  color: #a5a198;
  font-size: 12px;
  line-height: 1.7;
}

.region-coverage {
  padding: 80px clamp(24px, 4vw, 72px) 85px;
  text-align: center;
  background: var(--white);
}

.region-coverage-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.region-coverage h2 {
  margin: 0 0 22px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.region-coverage p {
  margin: 0 auto 30px;
  max-width: 720px;

  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.8;
}

/* ============================================
   SERVICE PAGE UNIQUE BLOCKS
   Each component below is used on exactly ONE
   or TWO service pages, styled distinctly.
   ============================================ */

/* --- AIRPORT: meeting-point info panel (dark) --- */

.info-panel-section {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.info-panel-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.info-panel {
  margin-top: 8px;
  border: 1px solid rgba(190, 147, 67, 0.3);
}

.info-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(190, 147, 67, 0.2);
}

.info-panel-row:last-child {
  border-bottom: 0;
}

.info-panel-row span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 18px;
  line-height: 1.4;
}

.info-panel-row h3 {
  margin: 0 0 6px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.info-panel-row p {
  margin: 0;
  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.65;
}

/* --- AIRPORT: flight-delay spotlight (reuses .spotlight-banner) --- */

/* --- CORPORATE: editorial billing strip (light, borderless) --- */

.billing-strip {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.billing-strip-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.billing-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 10px;
}

.billing-column h3 {
  margin: 0 0 12px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.billing-column h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 16px;
  background: #a98038;
}

.billing-column p {
  margin: 0;
  color: #6b665b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.75;
}

/* --- CORPORATE: use-case tiles (reuses .event-tiles, dark) --- */

/* --- CRUISE PORT: embark / disembark comparison cards --- */

.compare-cards-section {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.compare-cards-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.compare-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 8px;
  background: rgba(201, 163, 79, 0.16);
}

.compare-card {
  padding: 32px 30px;
  background: #131210;
}

.compare-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 16px;

  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 11px;

  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.6;
}

.compare-card li:last-child {
  margin-bottom: 0;
}

.compare-card li::before {
  content: "◆";
  position: absolute;
  top: 0.4em;
  left: 0;

  color: var(--gold);
  font-size: 6px;
}

/* --- EVENT: alternating use-case rows (light) --- */

.usecase-rows-section {
  padding: 80px clamp(24px, 4vw, 72px) 85px;
  background: var(--white);
}

.usecase-rows-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.usecase-rows {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.usecase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 22px 8px;
  border-bottom: 1px solid rgba(183, 142, 67, 0.22);
}

.usecase-row:first-child {
  border-top: 1px solid rgba(183, 142, 67, 0.22);
}

.usecase-row h3 {
  margin: 0;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.usecase-row p {
  margin: 0;
  flex: 1;
  text-align: right;

  color: #6b665b;
  font-size: 12px;
  line-height: 1.6;
}

/* --- EVENT: multi-vehicle callout box (dark) --- */

.callout-section {
  padding: 65px clamp(24px, 4vw, 72px);
  background: #070706;
}

.callout-box {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 22px;

  padding: 30px 34px;
  background: rgba(201, 163, 79, 0.06);
  border: 1px dashed rgba(201, 163, 79, 0.45);
}

.callout-box span {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 24px;
}

.callout-box p {
  margin: 0;
  color: #d6d2c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

.callout-box strong {
  color: var(--gold-light);
  font-weight: 400;
}

/* --- GROUP: group-size list (reuses .group-sizes, dark) --- */
/* --- GROUP: vehicle-match table (reuses .specs-table) --- */

/* --- HOURLY: sample itinerary cards (dark) --- */

.itinerary-section {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #0a0a09;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.itinerary-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.itinerary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.itinerary-card {
  padding: 28px 24px;
  background: #131210;
  border: 1px solid rgba(190, 147, 67, 0.3);
}

.itinerary-card .itinerary-hours {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;

  color: #100d05;
  background: linear-gradient(110deg, #ae8539, #e4c679);

  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.itinerary-card h3 {
  margin: 0 0 10px;

  color: #f2eee5;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
}

.itinerary-card p {
  margin: 0;
  color: #a5a198;
  font-size: 12px;
  line-height: 1.7;
}

/* --- HOURLY: pricing-logic explainer (light) --- */

.pricing-explainer {
  padding: 75px clamp(24px, 4vw, 72px) 85px;
  background: var(--white);
}

.pricing-explainer-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.pricing-points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 18px 0;
  border-bottom: 1px solid rgba(183, 142, 67, 0.2);
}

.pricing-points li:last-child {
  border-bottom: 0;
}

.pricing-points span {
  flex: 0 0 auto;

  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;

  color: #a98038;
  border: 1px solid rgba(183, 142, 67, 0.5);
  border-radius: 50%;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
}

.pricing-points p {
  margin: 0;
  color: #3a362c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.65;
}

/* --- LONG-DISTANCE: route distance/time chart (reuses .capacity-bars, light) --- */

.distance-chart-section {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.distance-chart-container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.distance-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr 76px;
  align-items: center;
  gap: 14px;
}

/* --- LONG-DISTANCE: private car vs train/bus callout (reuses .callout-box, dark) --- */

/* --- TRAIN STATION: two-station comparison (reuses .compare-cards, dark) --- */
/* --- TRAIN STATION: centered meeting-point block (light variant of .info-panel) --- */

.info-panel--light {
  background: #fffdf8;
  border-color: rgba(183, 142, 67, 0.35);
}

.info-panel--light .info-panel-row {
  border-bottom-color: rgba(183, 142, 67, 0.22);
}

.info-panel--light .info-panel-row h3 {
  color: #171611;
}

.info-panel--light .info-panel-row p {
  color: #6b665b;
}

.info-panel-section--light {
  background: var(--white);
  border-top: 0;
}

/* --- SERVICES HUB: trust badge strip (reuses .badge-row, dark) --- */
/* --- SERVICES HUB: service comparison table (reuses .specs-table) --- */

/* ============================================
   ROUTE PAGE UNIQUE BLOCKS
   ============================================ */

/* --- Landmark spotlight: large editorial feature (dark) --- */

.landmark-spotlight {
  padding: 90px clamp(24px, 4vw, 72px);
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(201, 163, 79, 0.1),
      transparent 45%
    ),
    #070706;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.landmark-spotlight-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.landmark-icon {
  display: block;
  margin: 0 auto 18px;

  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 163, 79, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
}

.landmark-spotlight p.landmark-eyebrow {
  margin: 0 0 16px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.landmark-spotlight h2 {
  margin: 0 0 22px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.landmark-spotlight p {
  margin: 0;
  color: #aaa69d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.8;
}

/* --- Weather / best-time strip (light, 4 columns) --- */

.weather-strip-section {
  padding: 75px clamp(24px, 4vw, 72px) 85px;
  background: var(--white);
}

.weather-strip-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.weather-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 8px;
  background: rgba(92, 82, 65, 0.14);
  border: 1px solid rgba(183, 142, 67, 0.3);
}

.weather-column {
  padding: 26px 20px;
  text-align: center;
  background: #fffdf8;
}

.weather-column span {
  display: block;
  margin-bottom: 14px;
  color: #a98038;
  font-size: 20px;
}

.weather-column h3 {
  margin: 0 0 8px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.weather-column p {
  margin: 0;
  color: #79756c;
  font-size: 11px;
  line-height: 1.6;
}

/* --- Journey specs table (reuses .vehicle-specs / .specs-table) --- */

/* ============================================
   BLOG PAGE UNIQUE BLOCKS
   ============================================ */

/* --- Article hero: dark, editorial, text-only (no photo) --- */

.article-hero {
  padding: 207px clamp(24px, 4vw, 72px) 80px;
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 163, 79, 0.12), transparent 50%),
    var(--black);
  border-bottom: 1px solid rgba(201, 163, 79, 0.16);
}

.article-hero-content {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.article-hero h1 {
  margin: 0 0 20px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.article-dek {
  max-width: 620px;
  margin: 0 0 30px;

  color: #c9c5bc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;

  padding-top: 24px;
  border-top: 1px solid rgba(201, 163, 79, 0.2);
}

.article-meta span {
  color: #a5a198;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-meta span strong {
  color: var(--gold-light);
  font-weight: 400;
}

/* --- Article body: light prose column --- */

.article-body {
  padding: 80px clamp(24px, 4vw, 72px);
  background: var(--white);
}

.article-body-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.article-body-container > p {
  margin: 0 0 22px;

  color: #45412f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.85;
}

.article-body-container h2 {
  margin: 46px 0 18px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.article-body-container h2:first-child {
  margin-top: 0;
}

.article-body-container h3 {
  margin: 32px 0 14px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.article-body-container ul,
.article-body-container ol {
  margin: 0 0 24px;
  padding-left: 22px;
}

.article-body-container li {
  margin-bottom: 10px;

  color: #45412f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.75;
}

.article-body-container strong {
  color: #171611;
  font-weight: 700;
}

.article-body-container a {
  color: #a98038;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Related articles: dark card grid --- */

.related-articles {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: #070706;
  border-top: 1px solid rgba(201, 163, 79, 0.16);
}

.related-articles-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.related-article-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
  background: rgba(201, 163, 79, 0.16);
}

.related-article-card {
  padding: 30px 26px;
  background: #0d0d0b;
  transition: background 0.2s ease;
}

.related-article-card:hover {
  background: #131310;
}

.related-article-card span {
  display: block;
  margin-bottom: 12px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.related-article-card h3 {
  margin: 0 0 10px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.related-article-card p {
  margin: 0;
  color: #a5a198;
  font-size: 12px;
  line-height: 1.6;
}

/* --- Blog hub: intro + article card grid --- */

.blog-hub-intro {
  padding: 80px clamp(24px, 4vw, 72px) 20px;
  background: var(--black);
}

.blog-hub-intro-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.blog-hub-intro-container p {
  margin: 0;
  color: #c9c5bc;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1.8;
}

.blog-grid-section {
  padding: 50px clamp(24px, 4vw, 72px) 95px;
  background: var(--black);
}

.blog-grid-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201, 163, 79, 0.16);
}

.blog-card {
  padding: 38px 34px;
  background: #0a0a09;
  transition: background 0.2s ease;
}

.blog-card:hover {
  background: #101009;
}

.blog-card-tag {
  display: inline-block;
  margin-bottom: 16px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.blog-card h2 {
  margin: 0 0 12px;

  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.25;
}

.blog-card p {
  margin: 0 0 20px;
  color: #a5a198;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.7;
}

.blog-card-link {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card-link::after {
  content: " →";
}

/* .services-heading is built for dark sections (light text) — .stop-planner
   and .distance-chart-section are reused inside blog articles on their
   normal light background, no override needed there. */

/* ============================================
   ABOUT / CONTACT PAGE UNIQUE BLOCKS
   ============================================ */

/* --- Contact methods: light, 3-card grid (phone / whatsapp / email) --- */

.contact-methods {
  padding: 80px clamp(24px, 4vw, 72px) 90px;
  background: var(--white);
}

.contact-methods-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-method-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 8px;
  background: rgba(183, 142, 67, 0.25);
  border: 1px solid rgba(183, 142, 67, 0.3);
}

.contact-method-cards--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-method-card {
  padding: 40px 30px;
  text-align: center;
  background: #fffdf8;
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;

  color: #a98038;
  border: 1px solid #b68a3c;
  border-radius: 50%;

  font-size: 22px;
}

.contact-method-card h3 {
  margin: 0 0 8px;

  color: #171611;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-method-card p {
  margin: 0 0 16px;
  color: #79756c;
  font-size: 12px;
  line-height: 1.7;
}

.contact-method-card a.contact-method-value {
  display: inline-block;
  color: #a98038;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(169, 128, 56, 0.4);
}

.contact-method-card a.contact-method-value:hover {
  color: #8a6a2e;
}

/* COOKIE CONSENT */

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cookie-consent--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent--hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.cookie-consent-text {
  flex: 1 1 380px;
  margin: 0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.7;
}

.cookie-consent-text a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(226, 196, 119, 0.4);
}

.cookie-consent-text a:hover {
  color: var(--gold);
}

.cookie-consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.cookie-consent-actions button {
  cursor: pointer;
  padding: 11px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-reject {
  background: transparent;
  color: var(--grey);
  border: 1px solid var(--border);
}

.cookie-consent-reject:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.cookie-consent-accept {
  background: var(--gold);
  color: #090805;
  border: 1px solid var(--gold);
}

.cookie-consent-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* DATE & TIME PICKERS */

input.dt-trigger {
  cursor: pointer;
  caret-color: transparent;
}

.dt-popup {
  z-index: 2000;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
}

/* Calendar */

.dt-popup--calendar {
  width: 280px;
  padding: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.dt-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dt-cal-title {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.dt-cal-nav {
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: transparent;
  color: var(--grey);
  border: 1px solid var(--border);
  font-size: 15px;
  line-height: 1;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.dt-cal-nav:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.dt-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}

.dt-cal-weekdays span {
  display: block;
  text-align: center;
  color: var(--grey);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dt-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.dt-cal-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dt-cal-day--empty {
  cursor: default;
}

.dt-cal-day:not(.dt-cal-day--empty):not(.dt-cal-day--disabled):hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.dt-cal-day--today {
  color: var(--gold-light);
  border-color: var(--border);
}

.dt-cal-day--selected {
  background: var(--gold);
  color: #090805;
  border-color: var(--gold);
}

.dt-cal-day--disabled {
  cursor: not-allowed;
  color: #4a4740;
}

.dt-cal-footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.dt-cal-today-btn {
  cursor: pointer;
  background: transparent;
  color: var(--gold-light);
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(226, 196, 119, 0.4);
}

.dt-cal-today-btn:hover {
  color: var(--gold);
}

.dt-cal-today-btn:disabled {
  cursor: not-allowed;
  color: #4a4740;
  border-color: transparent;
}

/* Time list */

.dt-popup--time {
  width: 140px;
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
}

.dt-time-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dt-time-option {
  width: 100%;
  padding: 9px 12px;
  cursor: pointer;
  text-align: left;
  background: transparent;
  color: var(--white);
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dt-time-option:hover {
  background: rgba(201, 163, 79, 0.15);
  color: var(--gold-light);
}

.dt-time-option--selected {
  background: var(--gold);
  color: #090805;
}

