:root {
  --bg: #080a0b;
  --bg-soft: #101214;
  --panel: #17191c;
  --panel-soft: #202225;
  --text: #f7f2eb;
  --muted: #bab4aa;
  --dim: #85817b;
  --gold: #d2a057;
  --gold-light: #e6bd78;
  --gold-dark: #9e6f31;
  --border: rgba(210, 160, 87, 0.28);
  --white-border: rgba(255, 255, 255, 0.09);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --font-sans: "Raleway", sans-serif;
  --font-display: "Poppins", sans-serif;
  --font-condensed: "Poppins", sans-serif;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 160, 87, 0.08), transparent 25%),
    linear-gradient(180deg, #090b0c 0%, #050607 100%);
}

.page-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 46px;
  padding-right: 46px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 3.3vw, 45px);
  line-height: 0.98;
}

.btn {
  border-radius: 2px;
  padding: 14px 27px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn i {
  margin-left: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold-primary {
  color: #111;
  background: linear-gradient(135deg, #e8bd78, #c68f42);
  border: 1px solid rgba(255, 220, 165, 0.65);
  box-shadow: 0 9px 22px rgba(210, 160, 87, 0.2);
}

.btn-gold-primary:hover,
.btn-gold-primary:focus {
  color: #050505;
  background: linear-gradient(135deg, #f0ca88, #cf9849);
  border-color: var(--gold-light);
}

.btn-outline-gold,
.btn-outline-gold-dark {
  color: var(--text);
  background: rgba(8, 9, 10, 0.35);
  border: 1px solid var(--gold);
  color: #14110d;
  background: var(--gold);
  border-color: var(--gold-light);
}

.btn-outline-gold:hover,
.btn-outline-gold-dark:hover,
.btn-outline-gold:focus,
.btn-outline-gold-dark:focus {
  color: var(--text);
  background: rgba(8, 9, 10, 0.35);
  border: 1px solid var(--gold);
}

/* Header + Hero */
.hero-section {
  position: relative;
  min-height: 705px;
  overflow: hidden;
  background-image: url("images/hero-luxury-arrival.jpg");
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid var(--gold-dark);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 58% 38%, transparent 0 19%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.56) 30%, rgba(0, 0, 0, 0.1) 56%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.72) 0%, rgba(4, 5, 6, 0.05) 24%, rgba(5, 6, 7, 0.34) 100%);
}

.site-navbar {
  position: relative;
  z-index: 10;
  min-height: 73px;
  padding: 17px 0 0;
  color: var(--text);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  line-height: 1;
}

.brand-main {
  color: #f6f3ef;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-main em {
  color: var(--gold);
  font-style: normal;
}

.brand-sub {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-condensed);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.nav-menu {
  gap: 22px;
}

.nav-menu .nav-link {
  padding: 10px 0 !important;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

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

.nav-menu .nav-link i {
  margin-left: 4px;
  font-size: 9px;
}

.nav-cta {
  white-space: nowrap;
}

.phone-link {
  color: var(--gold-light);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.phone-link i {
  margin-right: 7px;
}

.btn-book {
  min-width: 124px;
  padding: 15px 25px;
  text-align: center;
}

.menu-toggle {
  width: 46px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--border);
  box-shadow: none !important;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 58px;
  padding-bottom: 60px;
}

.hero-copy {
  padding-top: 20px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.93);
  font-size: 10px;
  letter-spacing: 2.05px;
}

.hero-copy h1 {
  margin-bottom: 26px;
  max-width: 520px;
  font-size: clamp(54px, 7vw, 76px);
  line-height: 0.89;
  color: #fff;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.72);
}

.hero-copy h1 span {
  color: var(--gold);
}

.hero-services {
  margin-bottom: 29px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.55;
  text-transform: uppercase;
}

.hero-services span {
  margin: 0 8px;
  color: var(--gold);
}

.hero-actions .btn {
  min-width: 185px;
}

.quote-col {
  display: flex;
  justify-content: flex-end;
}

.quote-card {
  width: min(100%, 355px);
  min-height: 468px;
  padding: 28px 24px 18px;
  background: rgba(12, 13, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quote-card h2 {
  margin-bottom: 24px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-align: center;
  text-transform: uppercase;
}

.quote-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.quote-tab {
  position: relative;
  padding: 0 0 11px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.quote-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.quote-tab.active {
  color: #fff;
}

.quote-tab.active::after {
  width: 48px;
}

.quote-field {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 53px;
  margin-bottom: 13px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 3px;
}

.field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  color: var(--gold);
  font-size: 17px;
}

.field-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.field-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.field-copy input,
.input-text {
  width: 100%;
  margin-top: 2px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
}

.field-copy input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.calendar-icon {
  color: var(--gold);
  font-size: 13px;
}

.quote-submit {
  width: 100%;
  margin-top: 7px;
  padding: 16px 22px;
}

.secure-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  text-align: center;
}

.secure-note i {
  color: var(--gold);
  margin-right: 6px;
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(180deg, #0d0f11, #111315);
  border-bottom: 1px solid rgba(210, 160, 87, 0.22);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.8fr) repeat(5, 1fr);
  align-items: center;
  min-height: 99px;
  padding-top: 17px;
  padding-bottom: 16px;
}

.rating-block {
  padding-right: 28px;
}

.stars {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 13px;
  white-space: nowrap;
}

.stars strong {
  margin-left: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.stars span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.rating-block p,
.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  line-height: 1.55;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 53px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 17px;
  flex: 0 0 auto;
}

/* Details */
.details-section {
  position: relative;
  padding: 41px 0 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(135deg, #111315 0%, #0b0c0e 70%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.18);
}

.details-section::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 0;
  width: 650px;
  height: 100%;
  opacity: 0.12;
  background-image:
    linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.28) 46%, transparent 47%),
    linear-gradient(150deg, transparent 45%, rgba(255, 255, 255, 0.22) 46%, transparent 47%);
  background-size: 86px 86px;
}

.details-image-wrap {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.details-image-wrap img {
  width: 100%;
  height: 317px;
  object-fit: cover;
}

.details-copy {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.divider-line {
  width: 100%;
  height: 1px;
  margin: 18px 0 22px;
  background: linear-gradient(90deg, rgba(210, 160, 87, 0.45), rgba(255, 255, 255, 0.05));
}

.detail-list {
  display: grid;
  gap: 13px;
}

.detail-item {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 12px;
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  font-size: 29px;
}

.detail-item h3 {
  margin-bottom: 4px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
}

.detail-item p {
  max-width: 440px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

/* Fleet */
.fleet-section {
  padding: 28px 0 24px;
  background: linear-gradient(180deg, #080a0b 0%, #0d0f10 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.26);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.fleet-full-btn {
  padding: 13px 22px;
}

.fleet-slider-wrap {
  position: relative;
}

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

.vehicle-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.vehicle-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.vehicle-body {
  min-height: 125px;
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, rgba(12, 14, 16, 0.55), #111315);
}

.vehicle-icon {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 17px;
  line-height: 1;
}

.vehicle-type {
  margin-bottom: 7px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.vehicle-card h3 {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 0.96;
}

.vehicle-capacity {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  color: var(--gold-light);
  background: rgba(8, 9, 10, 0.8);
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.slider-prev {
  left: -20px;
}

.slider-next {
  right: -20px;
}

/* Services */
.services-section {
  padding: 31px 0 28px;
  background: linear-gradient(180deg, #0c0e0f 0%, #111315 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.24);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.service-card {
  min-height: 158px;
  padding: 25px 12px 17px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.service-card i {
  display: block;
  margin-bottom: 17px;
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.service-card h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.9px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.65;
}

/* Corporate */
.corporate-section {
  position: relative;
  min-height: 278px;
  overflow: hidden;
  border-bottom: 1px solid rgba(210, 160, 87, 0.25);
}

.corporate-bg,
.confidence-bg {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
}

.corporate-bg {
  background-image: linear-gradient(90deg, rgba(5, 6, 7, 0.25), rgba(5, 6, 7, 0.88) 58%, rgba(5, 6, 7, 0.95)), url("images/corporate-skyline.jpg");
}

.corporate-inner {
  position: relative;
  z-index: 1;
  padding-top: 31px;
  padding-bottom: 31px;
}

.corporate-copy h2 {
  margin-bottom: 18px;
}

.corporate-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 18px;
}

.corporate-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-benefits li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.corporate-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.corporate-btn {
  min-width: 275px;
}

/* Testimonials */
.testimonials-section {
  padding: 30px 0 26px;
  background: linear-gradient(180deg, #111315 0%, #0c0e10 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.25);
}

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

.testimonial-card {
  min-height: 170px;
  padding: 18px 21px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.testimonial-card > i {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.testimonial-card p {
  min-height: 66px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.5;
}

.client-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.client-row img {
  width: 39px;
  height: 39px;
  border-radius: 50%;
}

.client-row strong,
.client-row span {
  display: block;
}

.client-row strong {
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.client-row span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  line-height: 1.35;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.testimonial-dots span {
  width: 13px;
  height: 7px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.testimonial-dots .active {
  width: 20px;
  background: var(--gold);
}

/* Affiliate */
.affiliate-section {
  padding: 25px 0 20px;
  background: linear-gradient(180deg, #0c0e0f, #0a0c0d);
  border-bottom: 1px solid rgba(210, 160, 87, 0.26);
}

.affiliate-head {
  margin-bottom: 18px;
}

.affiliate-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
}

.affiliate-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 19px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.affiliate-features div:first-child {
  padding-left: 0;
}

.affiliate-features div:last-child {
  border-right: 0;
}

.affiliate-features i {
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.affiliate-features span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.25;
}

/* Confidence */
.confidence-section {
  position: relative;
  min-height: 152px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confidence-bg {
  background-image: linear-gradient(90deg, rgba(5, 6, 7, 0.86), rgba(5, 6, 7, 0.52) 42%, rgba(5, 6, 7, 0.36)), url("images/travel-confidence.jpg");
}

.confidence-inner {
  position: relative;
  z-index: 1;
  padding-top: 26px;
  padding-bottom: 25px;
}

.confidence-copy h2 {
  max-width: 510px;
  margin-bottom: 18px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.32;
}

.confidence-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.confidence-actions .btn {
  min-width: 140px;
  padding: 13px 24px;
}

/* Footer */
.site-footer {
  background: #070809;
}

.footer-grid {
  display: grid;
  grid-template-columns: 180px 1fr auto auto;
  grid-template-areas:
    "brand nav contact social"
    "brand bottom bottom social";
  align-items: center;
  gap: 7px 28px;
  min-height: 78px;
  padding-top: 14px;
  padding-bottom: 12px;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand .brand-main {
  font-size: 34px;
}

.footer-brand .brand-sub {
  font-size: 7px;
}

.footer-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-nav a,
.footer-bottom,
.footer-contact {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-nav a:hover,
.footer-bottom a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact {
  grid-area: contact;
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.footer-contact a {
  color: var(--gold);
}

.footer-bottom {
  grid-area: bottom;
  display: flex;
  justify-content: center;
  gap: 35px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: none;
}

.footer-bottom i {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 9px;
  background: rgba(255, 255, 255, 0.24);
  vertical-align: middle;
}

.footer-social {
  grid-area: social;
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 13px;
}

.footer-social a:hover {
  color: #111;
  background: var(--gold);
}

@media (max-width: 1199.98px) {
  :root {
    --container: 1040px;
  }

  .page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-menu {
    gap: 14px;
  }

  .nav-menu .nav-link {
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: 62px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 0;
  }

  .rating-block {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item {
    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

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

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

  .affiliate-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 0;
  }
}

@media (max-width: 991.98px) {
  .site-navbar {
    padding-top: 10px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 18px;
    background: rgba(7, 8, 9, 0.97);
    border: 1px solid var(--border);
    border-radius: 4px;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu .nav-link {
    padding: 12px 0 !important;
    font-size: 11px;
  }

  .nav-cta {
    align-items: stretch !important;
    flex-direction: column;
    margin-top: 12px;
  }

  .phone-link,
  .btn-book {
    width: 100%;
    text-align: center;
  }

  .hero-section {
    min-height: auto;
    background-position: 56% center;
  }

  .hero-inner {
    padding-top: 45px;
  }

  .quote-col {
    justify-content: flex-start;
  }

  .quote-card {
    width: 100%;
    max-width: 480px;
  }

  .details-copy {
    padding-left: 0;
  }

  .fleet-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fleet-track::-webkit-scrollbar {
    display: none;
  }

  .vehicle-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .slider-prev {
    left: -10px;
  }

  .slider-next {
    right: -10px;
  }

  .corporate-bg {
    background-image: linear-gradient(90deg, rgba(5, 6, 7, 0.58), rgba(5, 6, 7, 0.88)), url("images/corporate-skyline.jpg");
  }

  .corporate-copy {
    max-width: 620px;
    margin-left: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "contact"
      "bottom"
      "social";
    justify-items: center;
    gap: 14px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-nav,
  .footer-contact,
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-main {
    font-size: 29px;
  }

  .hero-copy h1 {
    max-width: 390px;
    font-size: 50px;
  }

  .hero-eyebrow,
  .hero-services {
    font-size: 9px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .rating-block,
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 13px 0;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading-row,
  .affiliate-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fleet-full-btn,
  .affiliate-head .btn {
    width: 100%;
  }

  .details-image-wrap img {
    height: 250px;
  }

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

  .corporate-benefits {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .corporate-btn {
    width: 100%;
    min-width: 0;
  }

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

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

  .affiliate-features div {
    padding: 0 10px;
  }

  .confidence-section {
    min-height: 230px;
  }

  .confidence-bg {
    background-position: 60% center;
  }

  .confidence-copy h2 {
    font-size: 14px;
  }

  .confidence-actions .btn {
    width: 100%;
  }

  .footer-nav {
    gap: 14px 20px;
  }

  .footer-contact,
  .footer-bottom {
    gap: 8px 18px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 31px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .quote-card {
    padding: 23px 17px 17px;
  }

  .quote-tabs {
    gap: 5px;
  }

  .quote-tab {
    font-size: 8px;
  }

  .services-grid,
  .affiliate-features {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    display: none;
  }
}

/* ========================================================================== 
   About page
   ========================================================================== */
.about-page {
  background: #080a0b;
}

.about-page .page-container {
  padding-left: 36px;
  padding-right: 36px;
}

.about-page .nav-menu .nav-link.active {
  position: relative;
  color: var(--gold);
}

.about-page .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 39px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.about-shell {
  background:
    radial-gradient(circle at 82% 28%, rgba(210, 160, 87, 0.045), transparent 28%),
    radial-gradient(circle at 12% 76%, rgba(255, 255, 255, 0.035), transparent 25%),
    #080a0b;
}

.about-hero-section {
  position: relative;
  min-height: 433px;
  overflow: hidden;
  background-image: url("images/about-hero-city-fleet.jpg");
  background-position: center top;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.28);
}

.about-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.88) 0%, rgba(5, 7, 8, 0.64) 28%, rgba(5, 7, 8, 0.22) 58%, rgba(5, 7, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.5) 0%, rgba(3, 4, 5, 0.02) 35%, rgba(3, 4, 5, 0.45) 100%);
}

.about-hero-section .site-navbar,
.about-hero-content {
  position: relative;
  z-index: 3;
}

.about-hero-content {
  padding-top: 70px;
  padding-bottom: 34px;
}

.about-hero-copy {
  max-width: 314px;
}

.about-hero-copy h1 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 43px;
  line-height: 0.98;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.68);
}

.about-hero-copy h1 span {
  color: var(--gold);
}

.about-hero-copy h2 {
  margin-bottom: 13px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
}

.about-hero-copy p {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.56;
}

.about-story-section,
.core-values-section,
.why-link-section,
.mission-section,
.commitment-section,
.about-stats-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.03), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.01)),
    #0a0c0d;
}

.about-story-section {
  padding: 20px 0 12px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.95fr;
  gap: 30px;
  align-items: start;
}

.about-story-image,
.why-link-image,
.commitment-image {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

.about-story-image img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  object-position: center center;
}

.about-story-copy {
  padding-top: 3px;
}

.about-story-copy h2,
.center-title h2,
.why-link-copy h2,
.mission-card h2,
.commitment-copy h2 {
  color: #fff;
  font-size: 29px;
  line-height: 1;
}

.gold-rule {
  display: block;
  width: 36px;
  height: 2px;
  margin: 13px 0 18px;
  background: var(--gold);
}

.about-story-copy p,
.commitment-copy p,
.mission-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.54;
}

.about-story-copy p {
  margin-bottom: 16px;
}

.core-values-section {
  padding: 13px 0 18px;
}

.center-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  max-width: 735px;
  margin: 0 auto;
  text-align: center;
}

.center-title span {
  height: 1px;
  background: rgba(255, 255, 255, 0.11);
}

.center-title h2 {
  margin: 0;
  white-space: nowrap;
}

.center-gold-rule {
  width: 34px;
  height: 2px;
  margin: 13px auto 19px;
  background: var(--gold);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.value-card {
  position: relative;
  min-height: 155px;
  padding: 0 18px 2px;
  text-align: center;
}

.value-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 108px;
  background: rgba(255, 255, 255, 0.16);
}

.value-card i {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 43px;
  line-height: 1;
}

.value-card h3 {
  margin-bottom: 11px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
}

.value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.55;
}

.why-link-section {
  padding: 5px 0 12px;
}

.section-hairline {
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(210, 160, 87, 0.28), rgba(255, 255, 255, 0.03));
}

.why-link-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.15fr;
  gap: 34px;
  align-items: center;
}

.why-link-copy h2 {
  margin-bottom: 22px;
}

.why-link-copy h2 span {
  color: var(--gold);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.2;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.why-link-image img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  object-position: center center;
}

.mission-section {
  padding: 5px 0 18px;
}

.mission-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 105px;
  padding: 17px 27px;
  border: 1px solid rgba(210, 160, 87, 0.38);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.mission-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 32px;
}

.mission-card h2 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 25px;
}

.mission-card p {
  max-width: 665px;
  margin: 0;
}

.commitment-section {
  padding: 8px 0 15px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 306px;
  gap: 48px;
  align-items: start;
}

.commitment-copy h2 {
  margin-bottom: 21px;
}

.commitment-copy p {
  margin-bottom: 15px;
  font-size: 11px;
  line-height: 1.62;
}

.commitment-image img {
  width: 100%;
  height: 207px;
  object-fit: cover;
  object-position: center center;
}

.about-stats-section {
  padding: 4px 0 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 18px 0 13px;
  border-top: 1px solid rgba(210, 160, 87, 0.22);
  border-bottom: 1px solid rgba(210, 160, 87, 0.22);
}

.stat-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 11px;
  right: 0;
  width: 1px;
  height: 66px;
  background: rgba(255, 255, 255, 0.22);
}

.stat-item i {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
}

.stat-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
}

.about-site-footer {
  padding: 21px 0 8px;
  background: #070809;
  border-top: 1px solid rgba(210, 160, 87, 0.2);
}

.about-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.85fr 0.85fr 1.25fr;
  gap: 34px;
  align-items: start;
}

.footer-about-brand .brand-main {
  font-size: 33px;
}

.footer-about-brand .brand-sub {
  font-size: 6.7px;
}

.footer-about-brand p {
  max-width: 170px;
  margin: 15px 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.6;
}

.footer-social-left {
  justify-content: flex-start;
}

.about-footer-col h3 {
  margin: 0 0 13px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-footer-col a,
.about-footer-col span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  line-height: 1.25;
}

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

.footer-contact-col i {
  display: inline-block;
  width: 17px;
  color: var(--gold);
  font-size: 13px;
}

.about-footer-bottom {
  display: flex;
  justify-content: center;
  gap: 118px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.about-footer-bottom a {
  color: rgba(255, 255, 255, 0.48);
}

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

.about-footer-bottom i {
  display: inline-block;
  width: 1px;
  height: 10px;
  margin: 0 14px;
  background: rgba(255, 255, 255, 0.23);
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .about-page .page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .about-hero-section {
    min-height: auto;
    background-position: 57% top;
  }

  .about-hero-content {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .about-story-grid,
  .why-link-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .commitment-image {
    max-width: 420px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .value-card:nth-child(2n)::after,
  .value-card:last-child::after {
    display: none;
  }

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

  .about-footer-bottom {
    flex-wrap: wrap;
    gap: 14px 35px;
  }
}

@media (max-width: 767.98px) {
  .about-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .about-hero-copy {
    max-width: 100%;
  }

  .about-hero-copy h1 {
    font-size: 40px;
  }

  .about-story-image img,
  .why-link-image img,
  .commitment-image img {
    height: 235px;
  }

  .center-title {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .center-title span {
    display: none;
  }

  .values-grid,
  .stats-grid,
  .about-footer-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 0 8px 22px;
  }

  .value-card::after,
  .stat-item::after {
    display: none;
  }

  .mission-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-icon {
    margin: 0 auto;
  }

  .stats-grid {
    gap: 21px;
  }

  .about-footer-grid {
    gap: 22px;
  }

  .footer-about-brand p {
    max-width: 260px;
  }

  .about-footer-bottom {
    justify-content: flex-start;
  }
}

/* ========================================================================== 
   Fleet listing page
   ========================================================================== */
.fleet-page {
  background: #080a0b;
}

.fleet-page .page-container {
  padding-left: 36px;
  padding-right: 36px;
}

.fleet-page .nav-menu .nav-link.active {
  position: relative;
  color: var(--gold);
}

.fleet-page .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 38px;
  height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
}

.fleet-shell {
  background:
    radial-gradient(circle at 76% 20%, rgba(210, 160, 87, 0.04), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.028), transparent 28%),
    #080a0b;
}

.fleet-hero-section {
  position: relative;
  min-height: 354px;
  overflow: hidden;
  background-image: url("images/fleet-hero-city-vehicles.jpg");
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.58);
}

.fleet-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.86) 0%, rgba(4, 6, 8, 0.61) 28%, rgba(4, 6, 8, 0.16) 55%, rgba(4, 6, 8, 0.34) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.68) 0%, rgba(4, 5, 6, 0.06) 34%, rgba(4, 5, 6, 0.18) 100%);
}

.fleet-hero-section .site-navbar,
.fleet-hero-content {
  position: relative;
  z-index: 2;
}

.fleet-hero-content {
  padding-top: 83px;
  padding-bottom: 69px;
}

.fleet-hero-copy {
  max-width: 300px;
}

.fleet-hero-copy h1 {
  margin-bottom: 17px;
  color: #fff;
  font-size: clamp(45px, 6vw, 61px);
  line-height: 0.92;
  text-shadow: 0 9px 34px rgba(0, 0, 0, 0.76);
}

.fleet-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.58;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.fleet-highlights-section {
  background: linear-gradient(180deg, #101214 0%, #0d0f11 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.28);
}

.fleet-highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 59px;
}

.fleet-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fleet-highlight-item:first-child {
  padding-left: 30px;
}

.fleet-highlight-item:last-child {
  border-right: 0;
}

.fleet-highlight-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
  border: 1px solid rgba(210, 160, 87, 0.8);
  border-radius: 50%;
  font-size: 16px;
  flex: 0 0 auto;
}

.fleet-highlight-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  line-height: 1.28;
}

.fleet-list-section {
  padding: 13px 0 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 16%),
    #090b0c;
}

.fleet-vehicle-row {
  display: grid;
  grid-template-columns: 37.2% 62.8%;
  min-height: 213px;
  margin-bottom: 12px;
  overflow: hidden;
  background: linear-gradient(90deg, #0d0f10 0%, #111315 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.fleet-vehicle-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 0;
  padding: 17px 24px 15px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(90deg, rgba(18, 20, 22, 0.98), rgba(12, 14, 15, 0.98));
}

.fleet-category {
  margin: 0 0 7px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
  line-height: 1.15;
  text-transform: uppercase;
}

.fleet-category i {
  margin-right: 5px;
  font-size: 13px;
  vertical-align: -1px;
}

.fleet-vehicle-info h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.97;
}

.ada-vehicle-row .fleet-vehicle-info h2 {
  font-size: 27px;
  line-height: 0.97;
}

.fleet-description {
  max-width: 203px;
  min-height: 49px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  line-height: 1.6;
}

.fleet-specs {
  display: flex;
  gap: 29px;
  margin-bottom: 16px;
}

.fleet-specs-ada {
  gap: 19px;
  margin-bottom: 13px;
}

.fleet-specs span {
  display: grid;
  grid-template-columns: 24px auto;
  grid-template-rows: auto auto;
  column-gap: 6px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
}

.fleet-specs i {
  grid-row: 1 / 3;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.fleet-specs strong {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.fleet-specs small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  line-height: 1.1;
}

.fleet-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 162px;
  min-height: 30px;
  margin-top: auto;
  padding: 0 13px 0 24px;
  color: #14100a;
  background: linear-gradient(135deg, #e4b66e 0%, #c99349 100%);
  border: 1px solid rgba(255, 220, 165, 0.42);
  border-radius: 2px;
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 9px 18px rgba(210, 160, 87, 0.14);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.fleet-book-btn i {
  margin-left: 20px;
  font-size: 11px;
  -webkit-text-stroke: 0.4px currentColor;
}

.fleet-book-btn:hover,
.fleet-book-btn:focus {
  color: #0c0905;
  background: linear-gradient(135deg, #edc57d 0%, #d09a4f 100%);
  transform: translateY(-2px);
}

.fleet-vehicle-image {
  min-width: 0;
  margin: 0;
  background: #0b0c0d;
}

.fleet-vehicle-image img {
  width: 100%;
  height: 100%;
  min-height: 213px;
  object-fit: cover;
  object-position: center center;
}

.fleet-recommend-section {
  background: linear-gradient(180deg, #0d0f10 0%, #0a0c0d 100%);
  border-top: 1px solid rgba(210, 160, 87, 0.26);
  border-bottom: 1px solid rgba(210, 160, 87, 0.24);
}

.fleet-recommend-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 77px;
  padding-top: 12px;
  padding-bottom: 11px;
}

.fleet-recommend-copy h2 {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.fleet-recommend-copy p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  line-height: 1.55;
}

.fleet-recommend-actions {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 13px;
  width: min(100%, 390px);
}

.fleet-recommend-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 11px 16px;
  font-size: 9px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.fleet-service-strip {
  background: linear-gradient(180deg, #101214 0%, #0b0d0f 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.22);
}

.fleet-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 54px;
}

.fleet-service-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 36px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fleet-service-grid div:last-child {
  border-right: 0;
}

.fleet-service-grid i {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.fleet-service-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  line-height: 1.25;
}

@media (max-width: 1199.98px) {
  .fleet-highlight-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fleet-vehicle-row {
    grid-template-columns: 36.5% 63.5%;
  }

  .fleet-vehicle-info {
    padding-left: 21px;
    padding-right: 20px;
  }
}

@media (max-width: 991.98px) {
  .fleet-hero-section {
    min-height: auto;
    background-position: 58% center;
  }

  .fleet-hero-content {
    padding-top: 67px;
    padding-bottom: 78px;
  }

  .fleet-highlights-grid,
  .fleet-service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .fleet-highlight-item,
  .fleet-service-grid div {
    justify-content: flex-start;
    padding: 15px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .fleet-highlight-item:nth-child(2n),
  .fleet-service-grid div:nth-child(2n) {
    border-right: 0;
  }

  .fleet-highlight-item:last-child,
  .fleet-service-grid div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

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

  .fleet-vehicle-info {
    min-height: 225px;
  }

  .fleet-vehicle-image {
    order: -1;
  }

  .fleet-vehicle-image img {
    min-height: 300px;
  }

  .fleet-description {
    max-width: 480px;
  }

  .fleet-recommend-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .fleet-recommend-actions {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 767.98px) {
  .fleet-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fleet-hero-copy h1 {
    font-size: 44px;
  }

  .fleet-hero-copy p {
    max-width: 280px;
    font-size: 12px;
  }

  .fleet-highlights-grid,
  .fleet-service-grid,
  .fleet-recommend-actions {
    grid-template-columns: 1fr;
  }

  .fleet-highlight-item,
  .fleet-highlight-item:nth-child(2n),
  .fleet-service-grid div,
  .fleet-service-grid div:nth-child(2n) {
    border-right: 0;
  }

  .fleet-highlight-item:first-child {
    padding-left: 18px;
  }

  .fleet-vehicle-info {
    padding: 20px;
  }

  .fleet-vehicle-info h2 {
    font-size: 30px;
  }

  .fleet-vehicle-image img {
    min-height: 235px;
  }

  .fleet-specs,
  .fleet-specs-ada {
    flex-wrap: wrap;
    gap: 17px 25px;
  }

  .fleet-book-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fleet-hero-content {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .fleet-hero-copy h1 {
    font-size: 40px;
  }

  .fleet-vehicle-info h2,
  .ada-vehicle-row .fleet-vehicle-info h2 {
    font-size: 27px;
  }

  .fleet-recommend-copy h2 {
    font-size: 22px;
  }
}

/* =========================================
   Services Page
   ========================================= */
.services-shell {
  background:
    radial-gradient(circle at 76% 20%, rgba(210, 160, 87, 0.045), transparent 30%),
    radial-gradient(circle at 18% 68%, rgba(255, 255, 255, 0.025), transparent 29%),
    #080a0b;
}

.services-page .nav-menu .nav-link.active {
  position: relative;
  color: var(--gold);
}

.services-page .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.services-hero-section {
  position: relative;
  min-height: 354px;
  overflow: hidden;
  background-image: url("images/services-hero-airport-fleet.jpg");
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.58);
}

.services-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.76) 0%, rgba(4, 6, 8, 0.45) 31%, rgba(4, 6, 8, 0.12) 62%, rgba(4, 6, 8, 0.36) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.72) 0%, rgba(4, 5, 6, 0.08) 36%, rgba(4, 5, 6, 0.22) 100%);
}

.services-hero-section .site-navbar,
.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-hero-content {
  padding-top: 79px;
  padding-bottom: 69px;
}

.services-hero-copy {
  max-width: 363px;
}

.services-hero-copy h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(45px, 6vw, 61px);
  line-height: 0.92;
  text-shadow: 0 9px 34px rgba(0, 0, 0, 0.78);
}

.services-hero-copy p {
  max-width: 314px;
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 13px;
  line-height: 1.58;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72);
}

.services-benefits-section {
  background: linear-gradient(180deg, #101214 0%, #0d0f11 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.28);
}

.services-benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 59px;
}

.services-benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.services-benefit-item:first-child {
  padding-left: 30px;
}

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

.services-benefit-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
  border: 1px solid rgba(210, 160, 87, 0.8);
  border-radius: 50%;
  font-size: 16px;
  flex: 0 0 auto;
}

.services-benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 10px;
  line-height: 1.28;
}

.services-offer-section {
  padding: 15px 0 11px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 15%),
    radial-gradient(circle at 50% 1%, rgba(210, 160, 87, 0.055), transparent 19%),
    #090b0c;
}

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

.services-section-heading .eyebrow {
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 2.1px;
}

.services-section-heading h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 43px);
  font-weight: 500;
  line-height: 1;
}

.services-heading-line {
  display: block;
  width: 28px;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
}

.service-feature-list {
  display: grid;
  gap: 10px;
}

.service-feature-card {
  display: grid;
  grid-template-columns: 35.7% 64.3%;
  min-height: 204px;
  overflow: hidden;
  background: linear-gradient(90deg, #0d0f10 0%, #111315 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.service-feature-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 23px 28px 19px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(90deg, rgba(18, 20, 22, 0.98), rgba(12, 14, 15, 0.98));
}

.service-title-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 11px;
}

.service-round-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  margin-top: 1px;
  color: var(--gold);
  border: 1px solid rgba(210, 160, 87, 0.85);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.service-number {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.service-feature-info h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.96;
}

.service-feature-info p {
  max-width: 228px;
  margin: 0 0 10px 72px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.54;
}

.service-feature-info ul {
  display: grid;
  gap: 3px;
  max-width: 258px;
  margin: 0 0 0 72px;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1.25;
  list-style: none;
}

.service-feature-info li {
  position: relative;
  padding-left: 19px;
}

.service-feature-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.service-feature-image {
  min-width: 0;
  margin: 0;
  background: #0b0c0d;
}

.service-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 204px;
  object-fit: cover;
  object-position: center center;
}

.services-cta-section {
  background: linear-gradient(180deg, #0d0f10 0%, #0a0c0d 100%);
  border-top: 1px solid rgba(210, 160, 87, 0.3);
  border-bottom: 1px solid rgba(210, 160, 87, 0.24);
}

.services-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 77px;
  padding-top: 12px;
  padding-bottom: 11px;
}

.services-cta-copy h2 {
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.services-cta-copy p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.45;
}

.services-cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  width: min(100%, 405px);
}

.services-cta-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 11px 16px;
  font-size: 9px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.services-support-strip {
  background: linear-gradient(180deg, #101214 0%, #0b0d0f 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.22);
}

.services-support-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 54px;
}

.services-support-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 36px;
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.services-support-grid div:last-child {
  border-right: 0;
}

.services-support-grid i {
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
}

.services-support-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  line-height: 1.25;
}

@media (max-width: 1199.98px) {
  .services-benefit-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-feature-card {
    grid-template-columns: 36.5% 63.5%;
  }

  .service-feature-info {
    padding-left: 21px;
    padding-right: 20px;
  }
}

@media (max-width: 991.98px) {
  .services-hero-section {
    min-height: auto;
    background-position: 58% center;
  }

  .services-hero-content {
    padding-top: 67px;
    padding-bottom: 78px;
  }

  .services-benefits-grid,
  .services-support-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .services-benefit-item,
  .services-support-grid div {
    justify-content: flex-start;
    padding: 15px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .services-benefit-item:nth-child(2n),
  .services-support-grid div:nth-child(2n) {
    border-right: 0;
  }

  .services-benefit-item:last-child,
  .services-support-grid div:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .service-feature-card {
    grid-template-columns: 1fr;
  }

  .service-feature-image {
    order: -1;
  }

  .service-feature-image img {
    min-height: 300px;
  }

  .service-feature-info p,
  .service-feature-info ul {
    max-width: 500px;
  }

  .services-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .services-cta-actions {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 767.98px) {
  .services-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-hero-copy h1 {
    font-size: 44px;
  }

  .services-hero-copy p {
    max-width: 280px;
    font-size: 12px;
  }

  .services-benefits-grid,
  .services-support-grid,
  .services-cta-actions {
    grid-template-columns: 1fr;
  }

  .services-benefit-item,
  .services-benefit-item:nth-child(2n),
  .services-support-grid div,
  .services-support-grid div:nth-child(2n) {
    border-right: 0;
  }

  .services-benefit-item:first-child {
    padding-left: 18px;
  }

  .services-offer-section {
    padding-top: 24px;
  }

  .services-section-heading h2 {
    font-size: 31px;
  }

  .service-feature-info {
    padding: 22px 20px;
  }

  .service-title-row {
    grid-template-columns: 50px 1fr;
    gap: 12px;
  }

  .service-round-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .service-feature-info h3 {
    font-size: 28px;
  }

  .service-feature-info p,
  .service-feature-info ul {
    margin-left: 62px;
  }

  .service-feature-image img {
    min-height: 235px;
  }

  .services-cta-copy h2 {
    font-size: 23px;
  }
}

@media (max-width: 480px) {
  .services-hero-content {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .services-hero-copy h1 {
    font-size: 40px;
  }

  .services-section-heading h2 {
    font-size: 28px;
  }

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

  .service-feature-info p,
  .service-feature-info ul {
    margin-left: 0;
  }

  .service-feature-info h3 {
    font-size: 27px;
  }
}

/* --------------------------------------------------
   Custom Quote Page
-------------------------------------------------- */
.quote-page {
  background: #07090a;
}

.quote-shell {
  background:
    radial-gradient(circle at 52% 19%, rgba(210, 160, 87, 0.07), transparent 24%),
    linear-gradient(180deg, #080a0b 0%, #050607 100%);
}

.quote-hero-section {
  position: relative;
  min-height: 448px;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.82) 31%, rgba(5, 6, 7, 0.24) 58%, rgba(5, 6, 7, 0.52) 100%),
    linear-gradient(180deg, rgba(4, 5, 6, 0.42) 0%, rgba(4, 5, 6, 0.05) 42%, rgba(4, 5, 6, 0.76) 100%),
    url("images/quote-hero-custom-quote.jpg");
  background-position: center top;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.16);
}

.quote-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 68%, rgba(255, 185, 86, 0.1), transparent 17%),
    linear-gradient(180deg, transparent 0 72%, rgba(5, 6, 7, 0.86) 100%);
}

.quote-hero-section .site-navbar,
.quote-hero-section .quote-hero-content {
  position: relative;
  z-index: 2;
}

.quote-hero-content {
  padding-top: 73px;
  padding-bottom: 31px;
}

.quote-hero-copy {
  max-width: 440px;
}

.quote-hero-copy h1 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 62px);
  line-height: 0.94;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.7);
}

.quote-hero-line {
  display: block;
  width: 50px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--gold);
}

.quote-hero-copy > p {
  max-width: 340px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.7;
}

.quote-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(420px, 100%);
}

.quote-hero-benefit {
  position: relative;
  min-height: 72px;
  text-align: center;
}

.quote-hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.11);
}

.quote-hero-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  color: var(--gold);
  border: 1px solid rgba(210, 160, 87, 0.68);
  border-radius: 50%;
  font-size: 18px;
}

.quote-hero-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1.35;
}

.custom-quote-section {
  padding: 17px 0 21px;
  background:
    radial-gradient(circle at 12% 0%, rgba(210, 160, 87, 0.055), transparent 20%),
    radial-gradient(circle at 78% 32%, rgba(255, 255, 255, 0.035), transparent 26%),
    linear-gradient(180deg, #07090a 0%, #080a0b 100%);
}

.custom-quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(310px, 0.98fr);
  gap: 13px;
  align-items: start;
}

.custom-quote-form,
.quote-info-card,
.quote-difference-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(9, 11, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 5px;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.22);
}

.custom-quote-form {
  padding: 25px 25px 17px;
}

.quote-panel-heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 21px;
}

.quote-large-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  color: var(--gold);
  flex: 0 0 auto;
}

.quote-large-icon .bi-file-earmark-text {
  font-size: 39px;
  line-height: 1;
}

.quote-large-icon .bi-plus-circle {
  position: absolute;
  right: -4px;
  bottom: -1px;
  color: var(--gold);
  background: #0a0c0d;
  border-radius: 50%;
  font-size: 15px;
}

.quote-large-icon.small {
  width: 33px;
  height: 33px;
}

.quote-large-icon.small .bi-file-earmark-text {
  font-size: 31px;
}

.quote-large-icon.small .bi-plus-circle {
  font-size: 12px;
}

.quote-panel-heading h2 {
  margin: 2px 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.02;
}

.quote-panel-heading p {
  margin: 0;
  max-width: 355px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.55;
}

.quote-form-group {
  margin-bottom: 13px;
}

.quote-form-group label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.quote-form-group label em {
  color: #b76b38;
  font-style: normal;
}

.quote-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 39px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 3px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.quote-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(210, 160, 87, 0.48);
}

.quote-input-wrap > i {
  color: var(--gold);
  font-size: 14px;
  flex: 0 0 auto;
}

.quote-input-wrap > i:first-child {
  margin-right: 11px;
}

.quote-input-wrap > i:last-child {
  margin-left: 10px;
}

.quote-input-wrap input,
.quote-input-wrap select,
.quote-textarea-group textarea {
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 11px;
  line-height: 1.2;
}

.quote-input-wrap select {
  appearance: none;
  cursor: pointer;
}

.quote-input-wrap select option {
  color: #111;
}

.quote-input-wrap input::placeholder,
.quote-textarea-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-phone-wrap {
  gap: 8px;
}

.quote-flag {
  display: inline-flex;
  width: 22px;
  height: 16px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  overflow: hidden;
}

.quote-code {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  white-space: nowrap;
}

.quote-code i {
  margin-left: 6px;
  color: var(--gold);
  font-size: 8px;
}

.quote-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 27px;
}

.quote-textarea-group textarea {
  min-height: 76px;
  padding: 12px 14px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 3px;
  line-height: 1.55;
}

.quote-textarea-group textarea:focus {
  border-color: rgba(210, 160, 87, 0.48);
}

.special-request-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 20px 0 21px;
  padding: 15px 17px 16px;
  border: 1px solid rgba(210, 160, 87, 0.58);
  border-radius: 3px;
  background: rgba(210, 160, 87, 0.025);
}

.special-request-box h3 {
  margin: 0 0 5px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.special-request-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  line-height: 1.5;
}

.quote-request-submit {
  width: 100%;
  padding-top: 17px;
  padding-bottom: 17px;
  letter-spacing: 1.6px;
}

.quote-secure-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-align: center;
}

.quote-secure-note i {
  margin-right: 6px;
  color: var(--gold);
}

.quote-sidebar {
  display: grid;
  gap: 12px;
}

.quote-info-card {
  padding: 25px 27px;
}

.quote-info-card h2 {
  margin: 0;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.05;
}

.quote-process-card {
  min-height: 548px;
}

.quote-process-list {
  position: relative;
  display: grid;
  gap: 24px;
  margin-top: 27px;
}

.quote-process-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 46px;
  bottom: 47px;
  border-left: 1px dashed rgba(210, 160, 87, 0.48);
}

.quote-process-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 18px 1fr;
  gap: 16px 12px;
  align-items: start;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--gold);
  background: #0b0d0e;
  border: 1px solid rgba(210, 160, 87, 0.62);
  border-radius: 50%;
  font-size: 27px;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translateX(-50%);
}

.process-icon::before {
  top: -5px;
}

.process-icon::after {
  bottom: -5px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  margin-top: 5px;
  color: #15100a;
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.quote-process-item h3 {
  margin: 2px 0 5px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.05;
}

.quote-process-item p {
  margin: 0;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.47;
}

.quote-reasons-card {
  padding-bottom: 23px;
}

.quote-reasons-card ul {
  display: grid;
  gap: 13px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.quote-reasons-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
}

.quote-reasons-card li::before {
  content: "\F26A";
  position: absolute;
  left: 0;
  top: -1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: var(--gold);
  font-family: "bootstrap-icons";
  font-size: 13px;
}

.quote-help-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 150px;
}

.quote-help-card > i {
  color: var(--gold);
  font-size: 52px;
  line-height: 1;
}

.quote-help-card h2 {
  margin-bottom: 6px;
  color: #fff;
}

.quote-help-card p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.quote-call-btn {
  min-width: 186px;
  padding: 13px 18px;
  color: var(--gold-light);
  text-align: center;
}

.quote-call-btn i {
  margin-left: 0;
  margin-right: 8px;
}

.quote-difference-section {
  padding: 0 0 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.035), transparent 32%),
    linear-gradient(180deg, #080a0b 0%, #08090a 100%);
}

.quote-difference-panel {
  padding: 26px 28px 21px;
}

.quote-difference-panel h2 {
  margin-bottom: 28px;
  text-align: center;
  color: #fff;
  font-size: 27px;
  line-height: 1;
}

.quote-difference-panel h2 span {
  color: var(--gold);
}

.quote-difference-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.quote-difference-grid div {
  position: relative;
  min-height: 81px;
  padding: 0 18px;
  text-align: center;
}

.quote-difference-grid div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 1px;
  height: 74px;
  background: rgba(255, 255, 255, 0.13);
}

.quote-difference-grid i {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 35px;
  line-height: 1;
}

.quote-difference-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 1199.98px) {
  .custom-quote-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  }

  .quote-info-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-process-item {
    gap: 16px 10px;
  }
}

@media (max-width: 991.98px) {
  .quote-page .page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .quote-hero-section {
    min-height: auto;
    background-position: 58% top;
  }

  .quote-hero-content {
    padding-top: 68px;
    padding-bottom: 60px;
  }

  .quote-hero-copy h1 {
    font-size: 52px;
  }

  .custom-quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .quote-process-card,
  .quote-help-card {
    grid-column: 1 / -1;
  }

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

  .quote-process-list::before,
  .process-icon::before,
  .process-icon::after {
    display: none;
  }

  .quote-difference-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
  }

  .quote-difference-grid div:nth-child(3n)::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .quote-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-hero-content {
    padding-top: 56px;
  }

  .quote-hero-copy h1 {
    font-size: 44px;
  }

  .quote-hero-copy > p {
    max-width: 290px;
    font-size: 12px;
  }

  .quote-hero-benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 0;
    max-width: 310px;
  }

  .quote-hero-benefit:nth-child(2n)::after {
    display: none;
  }

  .custom-quote-form {
    padding: 22px 18px 17px;
  }

  .quote-panel-heading {
    gap: 14px;
  }

  .quote-panel-heading h2 {
    font-size: 23px;
  }

  .quote-form-row,
  .quote-sidebar,
  .quote-process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-process-list {
    gap: 22px;
  }

  .quote-info-card {
    padding: 22px 18px;
  }

  .quote-process-item {
    grid-template-columns: 54px 18px 1fr;
  }

  .process-icon {
    width: 54px;
    height: 54px;
  }

  .quote-help-card {
    grid-template-columns: 48px 1fr;
  }

  .quote-help-card > i {
    font-size: 43px;
  }

  .quote-call-btn {
    width: 100%;
    min-width: 0;
  }

  .quote-difference-panel {
    padding: 23px 18px 18px;
  }

  .quote-difference-panel h2 {
    font-size: 24px;
  }

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

  .quote-difference-grid div:nth-child(3n)::after {
    display: block;
  }

  .quote-difference-grid div:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .quote-hero-copy h1 {
    font-size: 39px;
  }

  .quote-hero-copy > p {
    margin-bottom: 28px;
  }

  .quote-hero-benefits {
    grid-template-columns: 1fr;
    max-width: 210px;
  }

  .quote-hero-benefit::after {
    display: none !important;
  }

  .quote-panel-heading {
    flex-direction: column;
  }

  .quote-panel-heading p br {
    display: none;
  }

  .special-request-box {
    flex-direction: column;
  }

  .quote-process-item {
    grid-template-columns: 50px 17px 1fr;
    gap: 10px;
  }

  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .quote-difference-grid {
    grid-template-columns: 1fr;
  }

  .quote-difference-grid div::after {
    display: none !important;
  }
}

/* ========================================
   Booking Page
======================================== */
.booking-page {
  background: #080a0b;
}

.booking-page .page-container {
  max-width: 1240px;
}

.booking-page .btn-book {
  background: rgba(9, 10, 11, 0.55);
}

.booking-hero-section {
  position: relative;
  min-height: 386px;
  overflow: hidden;
  background-image: url("images/booking-hero-ride.jpg");
  background-position: center top;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.18);
}

.booking-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 43%, rgba(210, 160, 87, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(2, 3, 4, 0.36) 0%, rgba(2, 3, 4, 0.2) 42%, rgba(2, 3, 4, 0.52) 100%),
    linear-gradient(180deg, rgba(2, 3, 4, 0.55), rgba(2, 3, 4, 0.1) 42%, rgba(2, 3, 4, 0.55));
}

.booking-hero-section .site-navbar,
.booking-hero-content {
  position: relative;
  z-index: 2;
}

.booking-hero-content {
  padding-top: 91px;
  padding-bottom: 50px;
}

.booking-hero-copy {
  max-width: 520px;
}

.booking-hero-copy h1 {
  margin-bottom: 17px;
  color: #fff;
  font-size: clamp(47px, 5vw, 60px);
  line-height: 0.95;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.8);
}

.booking-hero-copy > p {
  max-width: 404px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.56;
}

.booking-hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 29px;
  align-items: center;
  max-width: 555px;
}

.booking-hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-hero-benefit span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
  flex: 0 0 auto;
}

.booking-hero-benefit span i + i {
  position: absolute;
  right: -5px;
  bottom: -2px;
  color: var(--gold-light);
  font-size: 12px;
}

.booking-hero-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.booking-wizard-section,
.booking-vehicle-section,
.booking-assurance-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(210, 160, 87, 0.075), transparent 34%),
    linear-gradient(180deg, #0b0d0e 0%, #080a0b 100%);
}

.booking-wizard-section {
  padding: 16px 0 8px;
}

.booking-wizard-panel,
.booking-vehicle-panel,
.booking-assurance-panel,
.booking-help-panel {
  border: 1px solid rgba(210, 160, 87, 0.26);
  border-radius: 5px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.045), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.booking-wizard-panel {
  overflow: hidden;
}

.booking-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 118px;
  padding: 20px 35px 13px;
  border-bottom: 1px solid rgba(210, 160, 87, 0.28);
}

.booking-stepper::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.booking-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.booking-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  background: #111316;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 800;
}

.booking-step.active span {
  color: #111;
  background: linear-gradient(135deg, #efc27c, #c88f40);
  border-color: rgba(245, 203, 136, 0.88);
}

.booking-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.2;
}

.booking-step.active p {
  color: var(--gold-light);
  font-weight: 800;
}

.booking-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(310px, 0.98fr);
  gap: 0;
}

.booking-trip-form {
  padding: 30px 30px 31px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.booking-trip-form h2,
.booking-summary-card h2,
.booking-reasons-card h2,
.booking-vehicle-panel h2 {
  margin: 0 0 19px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-field-group {
  margin-bottom: 19px;
}

.booking-field-group label {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  line-height: 1;
}

.booking-field-group small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.booking-field-row,
.booking-toggle-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}

.booking-toggle-row {
  gap: 22px;
}

.booking-toggle {
  min-height: 49px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.22s ease;
}

.booking-toggle.active,
.booking-toggle:hover {
  color: #fff;
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(210, 160, 87, 0.08), 0 0 0 1px rgba(210, 160, 87, 0.08);
}

.booking-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.booking-input-wrap input,
.booking-input-wrap select,
.booking-field-group textarea {
  width: 100%;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 12px;
}

.booking-input-wrap input,
.booking-input-wrap select {
  height: 48px;
  padding: 0 43px 0 14px;
}

.booking-input-wrap select {
  appearance: none;
  cursor: pointer;
}

.booking-input-wrap.has-left-icon input,
.booking-input-wrap.has-left-icon select {
  padding-left: 46px;
}

.booking-input-wrap input::placeholder,
.booking-field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.booking-input-wrap > i:not(.left-icon) {
  position: absolute;
  right: 17px;
  color: var(--gold);
  font-size: 16px;
  pointer-events: none;
}

.booking-input-wrap .left-icon {
  position: absolute;
  left: 17px;
  color: var(--gold);
  font-size: 17px;
  pointer-events: none;
}

.booking-input-wrap .select-chev {
  right: 18px !important;
  font-size: 11px !important;
}

.booking-input-wrap .select-chev + i,
.booking-input-wrap select + .select-chev + i {
  right: 17px;
}

#bookingTime + .select-chev {
  right: 52px !important;
}

#bookingTime + .select-chev + i {
  right: 17px;
}

.booking-field-group textarea {
  min-height: 83px;
  padding: 15px 14px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.booking-next-btn {
  width: 100%;
  margin-top: 8px;
  padding: 18px 24px;
}

.booking-aside {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 30px 22px 29px;
}

.booking-summary-card,
.booking-reasons-card {
  padding: 28px 27px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  background: rgba(8, 10, 11, 0.35);
}

.booking-summary-card h2,
.booking-reasons-card h2 {
  margin-bottom: 21px;
}

.booking-summary-card dl {
  margin: 0;
}

.booking-summary-card dl div {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-summary-card dt,
.booking-summary-card dd {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.42;
}

.booking-summary-card dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.booking-reasons-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-reasons-card li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  line-height: 1.2;
}

.booking-reasons-card li i {
  color: var(--gold);
  font-size: 23px;
  line-height: 1;
  flex: 0 0 24px;
}

.booking-vehicle-section {
  padding: 8px 0 8px;
}

.booking-vehicle-panel {
  padding: 22px 17px 18px;
}

.booking-vehicle-panel h2 {
  margin-bottom: 10px;
}

.booking-vehicle-panel > p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.booking-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.booking-vehicle-card {
  min-height: 274px;
  padding: 12px 11px 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.booking-vehicle-card:hover,
.booking-vehicle-card.selected {
  border-color: rgba(210, 160, 87, 0.52);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.booking-vehicle-card:hover {
  transform: translateY(-2px);
}

.booking-vehicle-card img {
  width: 100%;
  height: 82px;
  margin-bottom: 8px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55));
}

.booking-vehicle-meta {
  min-height: 20px;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
}

.booking-vehicle-meta i {
  margin: 0 2px;
}

.booking-vehicle-card h3 {
  margin: 0 0 4px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.05;
}

.booking-vehicle-card p {
  min-height: 31px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.25;
}

.booking-vehicle-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
}

.booking-vehicle-card strong span {
  font-size: 18px;
  font-weight: 800;
}

.booking-vehicle-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 120px);
  min-height: 39px;
  color: var(--gold-light);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid var(--gold);
  border-radius: 3px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-vehicle-card.selected button,
.booking-vehicle-card button:hover {
  color: #111;
  background: var(--gold);
}

.booking-assurance-section {
  padding: 0 0 15px;
}

.booking-assurance-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.64fr;
  align-items: center;
  min-height: 115px;
  margin-bottom: 13px;
  padding: 19px 27px;
}

.booking-assurance-copy,
.booking-secure-block,
.booking-help-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.booking-assurance-copy {
  padding-right: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  color: var(--gold);
  border: 2px solid rgba(210, 160, 87, 0.65);
  border-radius: 50% 50% 45% 45%;
  font-size: 42px;
  flex: 0 0 auto;
}

.booking-assurance-panel h2,
.booking-help-panel h2 {
  margin: 0 0 7px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.booking-assurance-panel p,
.booking-help-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.booking-payment-block {
  padding: 0 38px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.booking-payment-block h2 {
  margin-bottom: 19px;
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.payment-logos img {
  width: 56px;
  height: 33px;
  object-fit: contain;
  border-radius: 3px;
}

.booking-secure-block {
  padding-left: 30px;
}

.booking-secure-block span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 25px;
  flex: 0 0 auto;
}

.booking-help-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 15px 35px 15px 43px;
}

.booking-help-copy i {
  color: var(--gold);
  font-size: 42px;
  line-height: 1;
}

.booking-help-panel .btn {
  min-width: 252px;
  padding: 15px 28px;
}

@media (max-width: 1199.98px) {
  .booking-page .page-container {
    max-width: 1040px;
  }

  .booking-hero-benefits {
    gap: 20px;
  }

  .booking-main-grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(285px, 0.88fr);
  }

  .booking-trip-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking-field-row {
    gap: 18px;
  }

  .booking-vehicle-grid {
    gap: 10px;
  }

  .booking-vehicle-card h3 {
    font-size: 17px;
  }

  .booking-assurance-panel {
    grid-template-columns: 1.1fr 0.95fr 0.75fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .booking-payment-block {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 991.98px) {
  .booking-page .page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .booking-hero-section {
    min-height: auto;
    background-position: 57% top;
  }

  .booking-hero-content {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .booking-hero-copy h1 {
    font-size: 52px;
  }

  .booking-hero-copy > p {
    font-size: 13px;
  }

  .booking-stepper {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .booking-trip-form {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

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

  .booking-summary-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
    margin-bottom: 14px;
  }

  .booking-vehicle-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .booking-vehicle-grid::-webkit-scrollbar {
    display: none;
  }

  .booking-vehicle-card {
    flex: 0 0 190px;
    scroll-snap-align: start;
  }

  .booking-assurance-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .booking-assurance-copy,
  .booking-payment-block {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .booking-secure-block {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .booking-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .booking-hero-content {
    padding-top: 56px;
    padding-bottom: 42px;
  }

  .booking-hero-copy h1 {
    font-size: 43px;
  }

  .booking-hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 18px;
    max-width: 360px;
  }

  .booking-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .booking-stepper::before {
    display: none;
  }

  .booking-step span {
    margin-bottom: 9px;
  }

  .booking-step p {
    font-size: 11px;
  }

  .booking-trip-form,
  .booking-aside {
    padding: 24px 18px;
  }

  .booking-field-row,
  .booking-toggle-row,
  .booking-aside {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-toggle-row {
    gap: 12px;
  }

  .booking-summary-card,
  .booking-reasons-card {
    padding: 22px 18px;
  }

  .booking-vehicle-panel {
    padding: 20px 14px 16px;
  }

  .booking-assurance-panel {
    padding: 22px 18px;
  }

  .booking-assurance-copy,
  .booking-secure-block,
  .booking-help-copy {
    align-items: flex-start;
    gap: 15px;
  }

  .booking-shield-icon {
    width: 58px;
    height: 58px;
    font-size: 33px;
  }

  .booking-payment-block {
    text-align: left;
  }

  .payment-logos {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .booking-help-panel {
    align-items: stretch;
    flex-direction: column;
    padding: 20px 18px;
  }

  .booking-help-panel .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .booking-hero-copy h1 {
    font-size: 38px;
  }

  .booking-hero-copy > p {
    font-size: 12px;
  }

  .booking-hero-benefits {
    grid-template-columns: 1fr;
    gap: 13px;
  }

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

  .booking-step {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    text-align: left;
  }

  .booking-step span {
    margin-bottom: 0;
  }

  .booking-trip-form h2,
  .booking-summary-card h2,
  .booking-reasons-card h2,
  .booking-vehicle-panel h2 {
    letter-spacing: 1.4px;
  }
}

/* =========================================================
   Contact Page
   ========================================================= */
.contact-page {
  background: #080a0b;
}

.contact-page .page-container {
  max-width: 1200px;
}

.contact-page .nav-menu .nav-link.active {
  color: var(--gold-light);
  position: relative;
}

.contact-page .nav-menu .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
}

.contact-hero-section {
  position: relative;
  min-height: 596px;
  overflow: hidden;
  /* background-image: url("images/contact-hero-luxury-support.jpg"); */
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid rgba(210, 160, 87, 0.34);
}

.contact-hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 54%, rgba(210, 160, 87, 0.08), transparent 26%),
    linear-gradient(90deg, rgba(4, 5, 6, 0.72) 0%, rgba(4, 5, 6, 0.42) 41%, rgba(4, 5, 6, 0.5) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.48) 0%, rgba(5, 6, 7, 0.1) 33%, rgba(5, 6, 7, 0.75) 100%);
}

.contact-hero-section .site-navbar {
  position: relative;
  z-index: 5;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 375px;
  align-items: center;
  gap: 42px;
  padding-top: 70px;
  padding-bottom: 78px;
}

.contact-hero-copy {
  max-width: 610px;
}

.contact-hero-copy h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(56px, 7.4vw, 82px);
  line-height: 0.9;
  text-shadow: 0 12px 42px rgba(0, 0, 0, 0.68);
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.72;
}

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

.contact-hero-actions .btn {
  min-width: 160px;
}

.contact-hero-card {
  align-self: end;
  padding: 25px 24px 23px;
  background: rgba(11, 12, 14, 0.9);
  border: 1px solid rgba(210, 160, 87, 0.38);
  border-radius: 7px;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-card-status span {
  width: 8px;
  height: 8px;
  background: #4ee37a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(78, 227, 122, 0.12);
}

.contact-hero-card h2 {
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1;
}

.contact-hero-card > a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.contact-hero-card > a i {
  color: var(--gold);
  font-size: 16px;
}

.contact-hero-card > a:hover {
  color: var(--gold-light);
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 20px;
}

.contact-mini-grid div {
  min-height: 72px;
  padding: 13px 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 4px;
}

.contact-mini-grid strong,
.contact-mini-grid span {
  display: block;
}

.contact-mini-grid strong {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.contact-mini-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  line-height: 1.35;
}

.contact-main-section {
  padding: 42px 0 38px;
  background:
    radial-gradient(circle at 17% 30%, rgba(210, 160, 87, 0.075), transparent 26%),
    linear-gradient(180deg, #111315 0%, #0a0c0d 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.24);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(345px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.contact-message-form,
.contact-info-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.026));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.24);
}

.contact-message-form {
  padding: 31px 30px 27px;
}

.contact-message-form h2 {
  max-width: 570px;
  margin-bottom: 12px;
  font-size: clamp(34px, 3.2vw, 44px);
}

.contact-form-intro {
  max-width: 600px;
  margin-bottom: 21px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.6;
}

.contact-channel-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.contact-channel-tab {
  min-height: 43px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 3px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  transition: all 0.22s ease;
}

.contact-channel-tab:hover,
.contact-channel-tab.active {
  color: #111;
  background: var(--gold);
  border-color: var(--gold-light);
}

.contact-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.contact-field-group {
  display: block;
  margin-bottom: 16px;
}

.contact-field-group span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  color: #fff;
  background: rgba(7, 8, 9, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 3px;
  outline: 0;
  font-size: 12px;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.contact-field-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-field-group input::placeholder,
.contact-field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-field-group input:focus,
.contact-field-group select:focus,
.contact-field-group textarea:focus {
  background: rgba(7, 8, 9, 0.82);
  border-color: rgba(210, 160, 87, 0.78);
  box-shadow: 0 0 0 3px rgba(210, 160, 87, 0.1);
}

.contact-field-group textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-submit-btn {
  width: 100%;
  margin-top: 2px;
  padding-top: 17px;
  padding-bottom: 17px;
}

.contact-secure-note {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-align: center;
}

.contact-secure-note i {
  margin-right: 7px;
  color: var(--gold);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.contact-info-featured {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
  padding: 22px 20px;
  background: linear-gradient(145deg, rgba(210, 160, 87, 0.13), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(210, 160, 87, 0.26);
  border-radius: 5px;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 25px;
}

.contact-info-featured h2 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 29px;
  line-height: 0.98;
}

.contact-info-featured p:not(.eyebrow) {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.55;
}

.contact-info-featured .btn {
  width: 100%;
  padding: 13px 18px;
}

.contact-detail-stack {
  display: grid;
  gap: 10px;
}

.contact-detail-card {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 66px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.contact-detail-card > i {
  color: var(--gold);
  font-size: 23px;
}

.contact-detail-card strong,
.contact-detail-card a,
.contact-detail-card span {
  display: block;
}

.contact-detail-card strong {
  margin-bottom: 3px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.contact-detail-card a,
.contact-detail-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.42;
}

.contact-detail-card a:hover {
  color: var(--gold-light);
}

.contact-support-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 160, 87, 0.22);
  border-radius: 5px;
}

.contact-support-image img {
  width: 100%;
  height: 214px;
  object-fit: cover;
}

.contact-coverage-section {
  padding: 34px 0 35px;
  background:
    radial-gradient(circle at 82% 18%, rgba(210, 160, 87, 0.06), transparent 25%),
    linear-gradient(180deg, #0b0d0e 0%, #111315 100%);
  border-bottom: 1px solid rgba(210, 160, 87, 0.25);
}

.contact-coverage-head {
  margin-bottom: 23px;
}

.contact-coverage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: 18px;
}

.contact-map-card {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.contact-map-card img {
  width: 100%;
  height: 100%;
  min-height: 386px;
  object-fit: cover;
}

.contact-airport-panel {
  display: grid;
  gap: 10px;
}

.airport-contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 89px;
  padding: 18px 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
}

.airport-contact-card i {
  color: var(--gold);
  font-size: 33px;
  line-height: 1;
}

.airport-contact-card strong,
.airport-contact-card span {
  display: block;
}

.airport-contact-card strong {
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.airport-contact-card span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  line-height: 1.48;
}

.contact-cta-section {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.45) 58%, rgba(5, 6, 7, 0.82)), url("images/contact-cta-arrival.jpg");
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 188px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.contact-cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 42px);
}

.contact-cta-inner p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-cta-actions .btn {
  min-width: 146px;
}

@media (max-width: 1199.98px) {
  .contact-page .page-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .contact-hero-content {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
  }

  .contact-main-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  .contact-message-form {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-coverage-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }
}

@media (max-width: 991.98px) {
  .contact-hero-section {
    min-height: auto;
    background-position: 62% center;
  }

  .contact-hero-content {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 55px;
  }

  .contact-hero-card {
    width: min(100%, 500px);
    align-self: start;
  }

  .contact-main-grid,
  .contact-coverage-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .contact-info-featured,
  .contact-support-image {
    grid-column: 1 / -1;
  }

  .contact-support-image img {
    height: 300px;
  }

  .contact-map-card img {
    min-height: 330px;
  }

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

  .contact-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .contact-page .page-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-hero-content {
    padding-top: 52px;
    padding-bottom: 45px;
  }

  .contact-hero-copy h1 {
    font-size: 48px;
  }

  .contact-hero-copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .contact-hero-actions .btn,
  .contact-cta-actions .btn,
  .contact-coverage-head .btn {
    width: 100%;
  }

  .contact-hero-card {
    padding: 22px 18px;
  }

  .contact-message-form,
  .contact-info-panel {
    padding: 22px 18px;
  }

  .contact-field-row,
  .contact-channel-tabs,
  .contact-info-panel,
  .contact-airport-panel {
    grid-template-columns: 1fr;
  }

  .contact-info-featured {
    grid-template-columns: 1fr;
  }

  .contact-support-image img {
    height: 230px;
  }

  .contact-map-card img {
    min-height: 270px;
  }

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

@media (max-width: 480px) {
  .contact-hero-copy h1 {
    font-size: 40px;
  }

  .contact-mini-grid {
    grid-template-columns: 1fr;
  }

  .contact-message-form h2 {
    font-size: 30px;
  }

  .contact-hero-card h2,
  .contact-info-featured h2 {
    font-size: 25px;
  }
}


/* =========================================================
   Final build connection + carousel fixes
   Keeps the existing visual system intact while adding
   smooth looping behavior and shared page states.
   ========================================================= */
.nav-menu .nav-link.active {
  color: var(--gold-light);
}

.home-vehicle-carousel .fleet-viewport,
.testimonial-carousel .testimonial-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.home-vehicle-carousel .fleet-track,
.testimonial-carousel .testimonial-grid {
  display: flex;
  align-items: stretch;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-vehicle-carousel .fleet-track {
  gap: 8px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.home-vehicle-carousel .vehicle-card {
  flex: 0 0 calc((100% - 24px) / 4);
  min-width: 0;
}

.testimonial-carousel .testimonial-grid {
  gap: 10px;
}

.testimonial-carousel .testimonial-card {
  flex: 0 0 calc((100% - 30px) / 4);
  min-width: 0;
}

.testimonial-dots span {
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease, opacity 0.25s ease;
}

.testimonial-dots span:hover {
  opacity: 0.9;
}

@media (max-width: 1199.98px) {
  .testimonial-carousel .testimonial-card {
    flex-basis: calc((100% - 10px) / 2);
  }
}

@media (max-width: 991.98px) {
  .home-vehicle-carousel .fleet-track {
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .home-vehicle-carousel .vehicle-card {
    flex: 0 0 calc((100% - 12px) / 2);
    scroll-snap-align: none;
  }
}

@media (max-width: 767.98px) {
  .home-vehicle-carousel .vehicle-card,
  .testimonial-carousel .testimonial-card {
    flex-basis: 100%;
  }
}

/* =========================================================
   100% browser zoom scale normalization
   Visual-only sizing correction: no redesign, no CSS zoom,
   no body/site transform scaling. Keeps the same layout style.
   ========================================================= */
html {
  font-size: 16px;
}

body {
  font-size: 16px;
  line-height: 1.55;
}

@media (min-width: 1200px) {
  :root {
    --container: 1360px;
  }

  .page-container,
  .about-page .page-container,
  .fleet-page .page-container,
  .booking-page .page-container,
  .contact-page .page-container {
    max-width: var(--container);
    padding-left: 58px;
    padding-right: 58px;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 12px;
    letter-spacing: 2.8px;
  }

  h2 {
    font-size: clamp(42px, 3.8vw, 60px);
    line-height: 0.98;
  }

  .btn {
    padding: 17px 34px;
    font-size: 13px;
    letter-spacing: 1.25px;
  }

  .btn i {
    margin-left: 16px;
  }

  .site-navbar {
    min-height: 92px;
    padding-top: 22px;
  }

  .brand-main,
  .footer-brand .brand-main {
    font-size: 43px;
  }

  .brand-sub,
  .footer-brand .brand-sub {
    margin-top: 7px;
    font-size: 8.5px;
    letter-spacing: 1.5px;
  }

  .nav-menu {
    gap: 26px;
  }

  .nav-menu .nav-link {
    padding: 13px 0 !important;
    font-size: 12px;
    letter-spacing: 1.15px;
  }

  .phone-link {
    font-size: 14px;
  }

  .btn-book {
    min-width: 145px;
    padding: 17px 30px;
  }

  /* Home page scale correction */
  .hero-section {
    min-height: 820px;
  }

  .hero-inner {
    padding-top: 78px;
    padding-bottom: 76px;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .hero-copy h1 {
    max-width: 680px;
    margin-bottom: 34px;
    font-size: clamp(76px, 7.4vw, 104px);
    line-height: 0.88;
  }

  .hero-services {
    margin-bottom: 36px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-actions .btn {
    min-width: 220px;
  }

  .quote-card {
    width: min(100%, 425px);
    min-height: 560px;
    padding: 34px 30px 24px;
  }

  .quote-card h2 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .quote-tab {
    padding-bottom: 13px;
    font-size: 12px;
  }

  .quote-field {
    min-height: 64px;
    margin-bottom: 16px;
    padding: 13px 15px;
  }

  .field-icon {
    font-size: 20px;
  }

  .field-copy small {
    font-size: 9.5px;
  }

  .field-copy input,
  .input-text {
    font-size: 13px;
  }

  .calendar-icon {
    font-size: 16px;
  }

  .quote-submit {
    padding: 18px 24px;
  }

  .secure-note {
    font-size: 13px;
  }

  .trust-grid {
    min-height: 124px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .stars {
    font-size: 15px;
  }

  .stars strong,
  .stars span,
  .rating-block p,
  .trust-item p {
    font-size: 13.5px;
  }

  .trust-item {
    min-height: 66px;
    gap: 16px;
    padding: 0 28px;
  }

  .trust-item span {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }

  .details-section {
    padding: 62px 0 58px;
  }

  .details-image-wrap img {
    height: 410px;
  }

  .detail-list {
    gap: 18px;
  }

  .detail-item {
    grid-template-columns: 62px 1fr;
    gap: 16px;
  }

  .detail-icon {
    width: 54px;
    height: 54px;
    font-size: 35px;
  }

  .detail-item h3 {
    font-size: 17px;
  }

  .detail-item p {
    max-width: 560px;
    font-size: 13.5px;
  }

  .fleet-section {
    padding: 52px 0 50px;
  }

  .section-heading-row {
    margin-bottom: 30px;
  }

  .fleet-track,
  .home-vehicle-carousel .fleet-track {
    gap: 14px;
  }

  .home-vehicle-carousel .vehicle-card {
    flex-basis: calc((100% - 42px) / 4);
  }

  .vehicle-card img {
    height: 205px;
  }

  .vehicle-body {
    min-height: 158px;
    padding: 20px 22px;
  }

  .vehicle-icon {
    font-size: 22px;
  }

  .vehicle-type {
    font-size: 12px;
  }

  .vehicle-card h3 {
    font-size: 29px;
  }

  .vehicle-capacity {
    font-size: 13px;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .slider-prev {
    left: -25px;
  }

  .slider-next {
    right: -25px;
  }

  .services-section {
    padding: 54px 0 52px;
  }

  .services-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .service-card {
    min-height: 205px;
    padding: 34px 16px 24px;
  }

  .service-card i {
    margin-bottom: 21px;
    font-size: 54px;
  }

  .service-card h3 {
    font-size: 13px;
  }

  .service-card p {
    font-size: 13px;
  }

  .corporate-section {
    min-height: 360px;
  }

  .corporate-inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .corporate-benefits li {
    margin-bottom: 11px;
    font-size: 13.5px;
  }

  .testimonials-section {
    padding: 52px 0 48px;
  }

  .testimonial-grid,
  .testimonial-carousel .testimonial-grid {
    gap: 16px;
  }

  .testimonial-card {
    min-height: 220px;
    padding: 26px 28px 22px;
  }

  .testimonial-carousel .testimonial-card {
    flex-basis: calc((100% - 48px) / 4);
  }

  .testimonial-card > i {
    font-size: 36px;
  }

  .testimonial-card p {
    min-height: 86px;
    font-size: 13.5px;
  }

  .client-row img {
    width: 48px;
    height: 48px;
  }

  .client-row strong {
    font-size: 12px;
  }

  .client-row span {
    font-size: 11px;
  }

  .testimonial-dots span {
    height: 9px;
  }

  .affiliate-section {
    padding: 45px 0 38px;
  }

  .affiliate-features div {
    min-height: 58px;
    gap: 15px;
  }

  .affiliate-features i {
    font-size: 34px;
  }

  .affiliate-features span {
    font-size: 13px;
  }

  .confidence-section {
    min-height: 210px;
  }

  .confidence-inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .confidence-copy h2 {
    max-width: 700px;
    font-size: 20px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 220px 1fr auto auto;
    min-height: 104px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .footer-nav {
    gap: 34px;
  }

  .footer-nav a,
  .footer-bottom,
  .footer-contact {
    font-size: 11px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  /* Inner page scale correction */
  .about-hero-section,
  .fleet-hero-section,
  .services-hero-section,
  .quote-hero-section,
  .booking-hero-section {
    min-height: 520px;
  }

  .about-hero-content,
  .fleet-hero-content,
  .services-hero-content,
  .quote-hero-content,
  .booking-hero-content {
    padding-top: 115px;
    padding-bottom: 95px;
  }

  .about-hero-copy,
  .fleet-hero-copy,
  .services-hero-copy,
  .quote-hero-copy,
  .booking-hero-copy {
    max-width: 540px;
  }

  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1 {
    font-size: clamp(66px, 6vw, 86px);
    line-height: 0.92;
  }

  .about-hero-copy h2 {
    font-size: 18px;
  }

  .about-hero-copy p,
  .fleet-hero-copy p,
  .services-hero-copy p,
  .quote-hero-copy > p,
  .booking-hero-copy > p {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.65;
  }

  .fleet-highlights-grid,
  .services-benefits-grid {
    min-height: 84px;
  }

  .fleet-highlight-item,
  .services-benefit-item {
    min-height: 64px;
    gap: 18px;
    padding: 0 30px;
  }

  .fleet-highlight-icon,
  .services-benefit-icon,
  .fleet-highlight-item i,
  .services-benefit-item i {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .fleet-highlight-item span,
  .services-benefit-item span {
    font-size: 12px;
  }

  .fleet-main-section,
  .services-main-section,
  .about-story-section,
  .quote-main-section,
  .booking-main-section,
  .contact-main-section,
  .contact-coverage-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .fleet-showcase-card,
  .services-feature-card {
    min-height: 270px;
  }

  .fleet-showcase-media,
  .services-feature-media {
    min-height: 270px;
  }

  .fleet-card-body,
  .services-feature-copy {
    padding: 30px 34px;
  }

  .fleet-card-kicker,
  .services-feature-kicker,
  .quote-form-step,
  .booking-step-label {
    font-size: 11px;
  }

  .fleet-card-title,
  .services-feature-copy h3 {
    font-size: 38px;
  }

  .fleet-card-copy,
  .services-feature-copy p,
  .fleet-card-meta span,
  .services-feature-list li {
    font-size: 13.5px;
  }

  .fleet-cta-panel,
  .services-cta-panel,
  .quote-summary-card,
  .booking-summary-card,
  .contact-message-form,
  .contact-info-panel {
    padding: 36px 38px;
  }

  .quote-benefit-card,
  .booking-hero-benefit,
  .booking-summary-item,
  .contact-mini-card,
  .contact-channel-card {
    min-height: 96px;
  }

  .quote-benefit-card h3,
  .booking-summary-card h3,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: 32px;
  }

  .quote-benefit-card p,
  .quote-form-card p,
  .booking-summary-card p,
  .contact-message-form p,
  .contact-info-panel p,
  .contact-mini-card span,
  .contact-channel-card span {
    font-size: 13.5px;
  }

  .quote-form-card,
  .booking-form-card {
    padding: 36px 38px;
  }

  .quote-input,
  .quote-select,
  .quote-textarea,
  .booking-input,
  .booking-select,
  .booking-textarea,
  .contact-input,
  .contact-select,
  .contact-textarea {
    min-height: 56px;
    font-size: 14px;
  }

  .quote-label,
  .booking-label,
  .contact-label {
    font-size: 12px;
  }

  .contact-hero-section {
    min-height: 700px;
  }

  .contact-hero-content {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 56px;
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(76px, 7.2vw, 104px);
  }

  .contact-hero-copy > p:not(.eyebrow) {
    max-width: 650px;
    font-size: 16px;
    line-height: 1.65;
  }

  .contact-hero-card {
    width: min(100%, 430px);
    padding: 34px 32px;
  }

  .contact-hero-card h2 {
    font-size: 34px;
  }

  .contact-support-image img {
    height: 390px;
  }

  .contact-map-card img {
    min-height: 430px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --container: 1140px;
  }

  .page-container,
  .about-page .page-container,
  .fleet-page .page-container,
  .booking-page .page-container,
  .contact-page .page-container {
    max-width: var(--container);
    padding-left: 34px;
    padding-right: 34px;
  }

  body {
    font-size: 15.5px;
  }

  .nav-menu .nav-link {
    font-size: 10.5px;
  }

  .brand-main,
  .footer-brand .brand-main {
    font-size: 38px;
  }

  .hero-copy h1 {
    font-size: 70px;
  }

  .btn {
    padding: 15px 28px;
    font-size: 12px;
  }

  .vehicle-card img {
    height: 180px;
  }

  .vehicle-body {
    min-height: 145px;
  }

  .testimonial-card p,
  .service-card p,
  .detail-item p {
    font-size: 12.5px;
  }
}

/* ========================================================================== 
   Typography readability refinement
   Purpose: keep the approved design unchanged while making all text readable
   at normal 100% browser zoom. No zoom/scale transforms are used.
   ========================================================================== */
html {
  font-size: 16px !important;
}

body {
  font-size: 16px !important;
  line-height: 1.6 !important;
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li,
dt,
dd,
label,
input,
select,
textarea,
.field-copy input,
.input-text,
.about-story-copy p,
.commitment-copy p,
.mission-card p,
.about-hero-copy p,
.fleet-hero-copy p,
.services-hero-copy p,
.quote-hero-copy > p,
.booking-hero-copy > p,
.contact-hero-copy > p:not(.eyebrow),
.contact-form-intro,
.contact-info-featured p:not(.eyebrow),
.booking-assurance-panel p,
.booking-help-panel p,
.booking-vehicle-panel > p,
.quote-form-card p,
.booking-summary-card p,
.contact-message-form p,
.contact-info-panel p {
  font-size: 16px !important;
  line-height: 1.65 !important;
  font-weight: 400;
}

/* Keep muted text readable without changing the gold/dark design language. */
.hero-services,
.rating-block p,
.trust-item p,
.detail-item p,
.vehicle-capacity,
.service-card p,
.corporate-benefits li,
.testimonial-card p,
.client-row span,
.affiliate-features span,
.confidence-copy h2,
.footer-about-brand p,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom,
.value-card p,
.check-list li,
.stat-item span,
.fleet-highlight-item p,
.fleet-card-copy,
.fleet-card-meta span,
.services-feature-copy p,
.services-feature-list li,
.services-benefit-item p,
.quote-benefit-card p,
.quote-summary-card p,
.quote-info-card p,
.booking-step p,
.booking-summary-card dt,
.booking-summary-card dd,
.booking-reasons-card li,
.booking-vehicle-card p,
.contact-mini-grid span,
.contact-detail-card a,
.contact-detail-card span,
.contact-secure-note {
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Navbar and header text */
.nav-menu {
  gap: 20px;
}

.nav-menu .nav-link {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.55px !important;
  line-height: 1.25 !important;
}

.nav-menu .nav-link i {
  font-size: 12px !important;
}

.phone-link {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.45px !important;
}

.brand-main,
.footer-brand .brand-main,
.footer-about-brand .brand-main {
  font-size: 42px !important;
}

.brand-sub,
.footer-brand .brand-sub,
.footer-about-brand .brand-sub {
  font-size: 10.5px !important;
  letter-spacing: 1.15px !important;
}

/* Buttons */
.btn,
.btn-book,
.quote-submit,
.contact-submit-btn,
.booking-next-btn,
.booking-vehicle-card button,
.contact-channel-tab,
.booking-toggle {
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0.65px !important;
}

.btn,
.btn-book {
  padding: 17px 32px !important;
}

.quote-submit,
.contact-submit-btn,
.booking-next-btn {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

/* Eyebrows, labels, tabs, and meta text should never feel microscopic. */
.eyebrow,
.quote-tab,
.field-copy small,
.vehicle-type,
.booking-trip-form h2,
.booking-summary-card h2,
.booking-reasons-card h2,
.booking-vehicle-panel h2,
.booking-field-group label,
.booking-field-group small,
.booking-vehicle-card strong,
.contact-field-group span,
.hero-card-status,
.about-footer-col h3,
.fleet-card-kicker,
.services-feature-kicker,
.quote-form-step,
.booking-step-label,
.quote-label,
.booking-label,
.contact-label,
.contact-detail-card strong,
.footer-nav a,
.footer-bottom,
.footer-contact,
.about-footer-bottom,
.client-row strong {
  font-size: 14px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.9px !important;
}

.field-copy small,
.booking-field-group label,
.contact-field-group span,
.quote-label,
.booking-label,
.contact-label,
.contact-detail-card strong,
.about-footer-col h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

.eyebrow,
.vehicle-type,
.booking-trip-form h2,
.booking-summary-card h2,
.booking-reasons-card h2,
.booking-vehicle-panel h2,
.about-footer-col h3,
.fleet-card-kicker,
.services-feature-kicker,
.quote-form-step {
  color: var(--gold) !important;
}

/* Headings */
h2 {
  font-size: clamp(42px, 3.8vw, 58px) !important;
  line-height: 1.05 !important;
}

.hero-copy h1 {
  font-size: clamp(72px, 7.4vw, 96px) !important;
  line-height: 0.92 !important;
}

.about-hero-copy h1,
.fleet-hero-copy h1,
.services-hero-copy h1,
.quote-hero-copy h1,
.booking-hero-copy h1,
.contact-hero-copy h1 {
  font-size: clamp(62px, 6.8vw, 92px) !important;
  line-height: 0.95 !important;
}

.about-story-copy h2,
.center-title h2,
.why-link-copy h2,
.mission-card h2,
.commitment-copy h2,
.contact-message-form h2,
.contact-info-featured h2,
.booking-assurance-panel h2,
.booking-help-panel h2,
.contact-hero-card h2 {
  font-size: clamp(34px, 3vw, 46px) !important;
  line-height: 1.08 !important;
}

.detail-item h3,
.service-card h3,
.value-card h3,
.fleet-card-title,
.services-feature-copy h3,
.quote-benefit-card h3,
.booking-summary-card h3,
.booking-vehicle-card h3,
.contact-mini-grid strong,
.contact-channel-card strong,
.contact-info-featured h2 {
  font-size: 22px !important;
  line-height: 1.18 !important;
  font-weight: 700 !important;
}

.vehicle-card h3 {
  font-size: 30px !important;
  line-height: 1.06 !important;
}

/* Forms */
.quote-field,
.booking-input-wrap,
.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea,
.quote-input,
.quote-select,
.quote-textarea,
.booking-input,
.booking-select,
.booking-textarea,
.contact-input,
.contact-select,
.contact-textarea {
  min-height: 58px !important;
}

.field-copy input,
.input-text,
.booking-input-wrap input,
.booking-input-wrap select,
.booking-field-group textarea,
.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea,
.quote-input,
.quote-select,
.quote-textarea,
.booking-input,
.booking-select,
.booking-textarea,
.contact-input,
.contact-select,
.contact-textarea {
  font-size: 16px !important;
  line-height: 1.45 !important;
}

.quote-card h2 {
  font-size: 20px !important;
  line-height: 1.25 !important;
}

.secure-note,
.contact-secure-note {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Cards and repeated content blocks */
.detail-item p,
.about-story-copy p,
.commitment-copy p,
.value-card p,
.service-card p,
.testimonial-card p,
.fleet-card-copy,
.services-feature-copy p,
.quote-benefit-card p,
.booking-vehicle-card p,
.contact-info-featured p:not(.eyebrow),
.contact-detail-card a,
.contact-detail-card span {
  font-weight: 400 !important;
}

.service-card {
  min-height: 190px !important;
}

.vehicle-card img {
  height: 195px !important;
}

.vehicle-body {
  min-height: 170px !important;
  padding: 20px 20px 22px !important;
}

.testimonial-card {
  min-height: 235px !important;
}

.client-row strong {
  font-weight: 800 !important;
}

.client-row span {
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.footer-nav a,
.footer-bottom,
.footer-contact,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom {
  color: rgba(255, 255, 255, 0.78) !important;
}

/* Page-specific readable sizing */
.fleet-highlight-item p,
.services-benefit-item p,
.booking-step p,
.booking-summary-card dt,
.booking-summary-card dd,
.booking-reasons-card li,
.contact-mini-grid span,
.contact-detail-card a,
.contact-detail-card span {
  font-size: 15px !important;
}

.stat-item strong {
  font-size: 28px !important;
}

.stat-item span {
  font-size: 15px !important;
}

.booking-step span {
  font-size: 17px !important;
}

.booking-vehicle-card {
  min-height: 330px !important;
}

.booking-vehicle-card strong span {
  font-size: 24px !important;
}

.booking-vehicle-card button {
  width: min(100%, 145px) !important;
  min-height: 46px !important;
}

.contact-channel-tab,
.booking-toggle {
  min-height: 54px !important;
}

/* Keep readability on medium screens without forcing desktop overflow. */
@media (max-width: 1199.98px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-menu .nav-link {
    font-size: 14px !important;
    letter-spacing: 0.45px !important;
  }

  .phone-link,
  .btn,
  .btn-book {
    font-size: 14px !important;
  }

  .brand-main,
  .footer-brand .brand-main,
  .footer-about-brand .brand-main {
    font-size: 38px !important;
  }
}

@media (max-width: 991.98px) {
  body,
  p,
  li,
  dt,
  dd,
  label,
  input,
  select,
  textarea {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .nav-menu .nav-link,
  .phone-link,
  .btn,
  .btn-book {
    font-size: 15px !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(48px, 8vw, 68px) !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2 {
    font-size: clamp(34px, 5.4vw, 48px) !important;
  }

  .vehicle-card img {
    height: 180px !important;
  }
}

@media (max-width: 767.98px) {
  .eyebrow,
  .quote-tab,
  .field-copy small,
  .vehicle-type,
  .footer-nav a,
  .footer-bottom,
  .footer-contact,
  .about-footer-col h3,
  .about-footer-col a,
  .about-footer-col span,
  .about-footer-bottom {
    font-size: 14px !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px) !important;
    line-height: 1 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(31px, 8vw, 42px) !important;
  }

  .service-card,
  .testimonial-card,
  .booking-vehicle-card {
    min-height: auto !important;
  }
}

/* ==========================================================================
   Final modern typography standard pass
   Keeps the approved visual design and layout intact. This pass only balances
   font-size, line-height, font-weight, letter-spacing, and readable contrast.
   ========================================================================== */
html {
  font-size: 16px !important;
}

body {
  font-size: 16px !important;
  line-height: 1.58 !important;
  font-weight: 400 !important;
}

p,
li,
dt,
dd,
label,
input,
select,
textarea,
.about-story-copy p,
.commitment-copy p,
.mission-card p,
.about-hero-copy p,
.fleet-hero-copy p,
.services-hero-copy p,
.quote-hero-copy > p,
.booking-hero-copy > p,
.contact-hero-copy > p:not(.eyebrow),
.quote-form-card p,
.booking-summary-card p,
.booking-assurance-panel p,
.booking-help-panel p,
.contact-message-form p,
.contact-info-panel p,
.contact-info-featured p:not(.eyebrow) {
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.hero-services,
.rating-block p,
.trust-item p,
.detail-item p,
.vehicle-capacity,
.service-card p,
.corporate-benefits li,
.testimonial-card p,
.affiliate-features span,
.confidence-copy h2,
.footer-about-brand p,
.value-card p,
.check-list li,
.fleet-highlight-item p,
.fleet-card-copy,
.fleet-card-meta span,
.services-feature-copy p,
.services-feature-list li,
.services-benefit-item p,
.quote-benefit-card p,
.quote-summary-card p,
.quote-info-card p,
.booking-step p,
.booking-summary-card dt,
.booking-summary-card dd,
.booking-reasons-card li,
.booking-vehicle-card p,
.contact-mini-grid span,
.contact-detail-card a,
.contact-detail-card span,
.contact-secure-note,
.secure-note {
  font-size: 15px !important;
  line-height: 1.58 !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Small but readable text: no text below 13px. */
.eyebrow,
.quote-tab,
.field-copy small,
.vehicle-type,
.client-row strong,
.client-row span,
.booking-trip-form h2,
.booking-summary-card h2,
.booking-reasons-card h2,
.booking-vehicle-panel h2,
.booking-field-group label,
.booking-field-group small,
.booking-vehicle-card strong,
.contact-field-group span,
.hero-card-status,
.about-footer-col h3,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom,
.fleet-card-kicker,
.services-feature-kicker,
.quote-form-step,
.booking-step-label,
.quote-label,
.booking-label,
.contact-label,
.contact-detail-card strong,
.footer-nav a,
.footer-bottom,
.footer-contact,
.stat-item span {
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  letter-spacing: 0.55px !important;
}

/* Navigation should be clear, compact, and professional. */
.nav-menu .nav-link {
  font-size: 14.5px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: 0.35px !important;
}

.nav-menu .nav-link i {
  font-size: 11px !important;
}

.phone-link {
  font-size: 14.5px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: 0.25px !important;
}

/* Buttons: readable but not oversized. */
.btn,
.btn-book,
.quote-submit,
.contact-submit-btn,
.booking-next-btn,
.booking-vehicle-card button,
.contact-channel-tab,
.booking-toggle {
  font-size: 14.5px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: 0.45px !important;
}

.btn,
.btn-book {
  padding: 15px 28px !important;
}

.quote-submit,
.contact-submit-btn,
.booking-next-btn {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

/* Professional heading scale. */
.hero-copy h1 {
  font-size: clamp(42px, 4.7vw, 56px) !important;
  line-height: 1.02 !important;
  font-weight: 600 !important;
}

.about-hero-copy h1,
.fleet-hero-copy h1,
.services-hero-copy h1,
.quote-hero-copy h1,
.booking-hero-copy h1,
.contact-hero-copy h1 {
  font-size: clamp(36px, 4.2vw, 48px) !important;
  line-height: 1.05 !important;
  font-weight: 600 !important;
}

h2,
.about-story-copy h2,
.center-title h2,
.why-link-copy h2,
.mission-card h2,
.commitment-copy h2,
.contact-message-form h2,
.contact-info-featured h2,
.booking-assurance-panel h2,
.booking-help-panel h2,
.contact-hero-card h2 {
  font-size: clamp(28px, 3vw, 38px) !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
}

.detail-item h3,
.service-card h3,
.value-card h3,
.fleet-card-title,
.services-feature-copy h3,
.quote-benefit-card h3,
.booking-summary-card h3,
.booking-vehicle-card h3,
.contact-mini-grid strong,
.contact-channel-card strong,
.contact-info-featured h2,
.vehicle-card h3 {
  font-size: clamp(20px, 1.9vw, 26px) !important;
  line-height: 1.18 !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

.quote-card h2 {
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
}

.stat-item strong {
  font-size: 26px !important;
  line-height: 1.1 !important;
}

.booking-step span,
.booking-vehicle-card strong span {
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}

/* Form text stays comfortable without making the controls visually bulky. */
.field-copy input,
.input-text,
.booking-input-wrap input,
.booking-input-wrap select,
.booking-field-group textarea,
.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea,
.quote-input,
.quote-select,
.quote-textarea,
.booking-input,
.booking-select,
.booking-textarea,
.contact-input,
.contact-select,
.contact-textarea {
  font-size: 15.5px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
}

/* Balanced footer readability. */
.footer-nav a,
.footer-bottom,
.footer-contact,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom {
  color: rgba(255, 255, 255, 0.76) !important;
  font-weight: 500 !important;
}

@media (max-width: 1199.98px) {
  .nav-menu .nav-link,
  .phone-link {
    font-size: 14px !important;
  }

  .btn,
  .btn-book,
  .quote-submit,
  .contact-submit-btn,
  .booking-next-btn {
    font-size: 14px !important;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 5.3vw, 54px) !important;
  }

  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(36px, 4.8vw, 46px) !important;
  }
}

@media (max-width: 991.98px) {
  body,
  p,
  li,
  dt,
  dd,
  label,
  input,
  select,
  textarea {
    font-size: 15.5px !important;
    line-height: 1.58 !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(34px, 8vw, 46px) !important;
    line-height: 1.06 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(26px, 5vw, 34px) !important;
  }
}

@media (max-width: 767.98px) {
  p,
  li,
  dt,
  dd,
  label,
  input,
  select,
  textarea,
  .field-copy input,
  .input-text {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .eyebrow,
  .quote-tab,
  .field-copy small,
  .vehicle-type,
  .footer-nav a,
  .footer-bottom,
  .footer-contact,
  .about-footer-col h3,
  .about-footer-col a,
  .about-footer-col span,
  .about-footer-bottom,
  .client-row span {
    font-size: 13px !important;
  }

  .nav-menu .nav-link,
  .phone-link,
  .btn,
  .btn-book,
  .quote-submit,
  .contact-submit-btn,
  .booking-next-btn {
    font-size: 14px !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(32px, 9.5vw, 42px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(25px, 7vw, 32px) !important;
    line-height: 1.12 !important;
  }

  .detail-item h3,
  .service-card h3,
  .value-card h3,
  .fleet-card-title,
  .services-feature-copy h3,
  .quote-benefit-card h3,
  .booking-summary-card h3,
  .booking-vehicle-card h3,
  .contact-mini-grid strong,
  .contact-channel-card strong,
  .vehicle-card h3 {
    font-size: clamp(19px, 5.5vw, 24px) !important;
  }
}

/* =========================================================
   Final typography polish
   Professional readable type scale at 100% browser zoom.
   Design, colors, layout, cards, sections, images and spacing
   are preserved; only font-size, line-height, font-weight,
   letter-spacing and text contrast are balanced here.
========================================================= */
html {
  font-size: 16px !important;
}

body {
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 400 !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li,
dd,
dt,
label,
.contact-form-intro,
.about-story-copy p,
.why-link-copy p,
.commitment-copy p,
.fleet-hero-copy p,
.services-hero-copy p,
.quote-hero-copy p,
.booking-hero-copy p,
.contact-hero-copy p,
.services-feature-copy p,
.services-cta-copy p,
.quote-summary-card p,
.quote-help-card p,
.booking-assurance-copy p,
.booking-help-copy p,
.contact-info-featured p,
.contact-coverage-head p,
.contact-hero-card p {
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  letter-spacing: 0 !important;
}

.hero-services,
.confidence-copy h2,
.services-cta-copy .lead,
.quote-panel-heading p,
.booking-summary-card > p,
.contact-message-form > p,
.contact-info-panel > p {
  font-size: 15.5px !important;
  line-height: 1.58 !important;
  color: rgba(255, 255, 255, 0.84) !important;
  letter-spacing: 0.25px !important;
}

/* Premium but balanced heading hierarchy. */
.hero-copy h1 {
  font-size: clamp(44px, 4.9vw, 56px) !important;
  line-height: 1.03 !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
}

.about-hero-copy h1,
.fleet-hero-copy h1,
.services-hero-copy h1,
.quote-hero-copy h1,
.booking-hero-copy h1,
.contact-hero-copy h1 {
  font-size: clamp(38px, 4.3vw, 48px) !important;
  line-height: 1.07 !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
}

h2,
.about-story-copy h2,
.center-title h2,
.why-link-copy h2,
.mission-card h2,
.commitment-copy h2,
.fleet-vehicle-info h2,
.fleet-recommend-copy h2,
.services-section-heading h2,
.services-cta-copy h2,
.quote-panel-heading h2,
.quote-summary-card h2,
.booking-assurance-panel h2,
.booking-help-panel h2,
.contact-message-form h2,
.contact-info-featured h2,
.contact-coverage-head h2,
.contact-hero-card h2 {
  font-size: clamp(30px, 3vw, 38px) !important;
  line-height: 1.12 !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
}

h3,
.detail-item h3,
.service-card h3,
.testimonial-card h3,
.value-card h3,
.fleet-card-title,
.fleet-showcase-card h3,
.services-feature-copy h3,
.services-benefit-item h3,
.quote-benefit-card h3,
.quote-process-card h3,
.quote-info-card h3,
.quote-reasons-card h3,
.booking-summary-card h3,
.booking-vehicle-card h3,
.booking-reasons-card h3,
.contact-detail-card h3,
.contact-channel-card strong,
.contact-mini-grid strong,
.vehicle-card h3 {
  font-size: clamp(20px, 1.65vw, 24px) !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
}

h4,
.booking-step span,
.booking-step-label,
.booking-vehicle-card strong span,
.quote-form-step strong,
.service-title-row strong {
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}

/* Readable navigation and calls-to-action. */
.nav-menu .nav-link,
.phone-link {
  font-size: 14.5px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
  letter-spacing: 0.45px !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.phone-link {
  color: var(--gold-light) !important;
}

.nav-menu .nav-link i {
  font-size: 12px !important;
}

.btn,
.btn-book,
.btn-gold-primary,
.btn-outline-gold,
.btn-outline-gold-dark,
.fleet-book-btn,
.quote-call-btn,
.quote-request-submit,
.booking-next-btn,
.contact-submit-btn {
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  letter-spacing: 0.55px !important;
  padding: 13px 23px !important;
}

.btn-book,
.quote-submit,
.booking-next-btn,
.contact-submit-btn,
.quote-request-submit {
  min-height: 44px !important;
}

/* Form labels, inputs and placeholder visibility. */
.field-copy small,
.quote-label,
.booking-label,
.contact-label,
.quote-form-group label,
.booking-field-group label,
.contact-field-group label,
.quote-card label small,
.booking-payment-block label,
.booking-toggle,
.contact-channel-tab,
.quote-tab {
  font-size: 13.5px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  letter-spacing: 0.55px !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.field-copy input,
.input-text,
.quote-input,
.quote-select,
.quote-textarea,
.booking-input,
.booking-select,
.booking-textarea,
.booking-input-wrap input,
.booking-input-wrap select,
.booking-field-group textarea,
.contact-input,
.contact-select,
.contact-textarea,
.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea {
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.field-copy input::placeholder,
.quote-input::placeholder,
.quote-textarea::placeholder,
.booking-input::placeholder,
.booking-textarea::placeholder,
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  opacity: 1 !important;
}

.quote-card h2,
.quote-form-card h2,
.booking-form-card h2 {
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
}

/* Small/meta text: readable, not oversized. */
.eyebrow,
.brand-sub,
.secure-note,
.quote-secure-note,
.contact-secure-note,
.vehicle-type,
.vehicle-capacity,
.fleet-category,
.fleet-card-kicker,
.fleet-card-meta,
.fleet-specs strong,
.fleet-specs small,
.fleet-highlight-item p,
.fleet-service-grid span,
.services-feature-kicker,
.service-number,
.quote-code,
.quote-flag,
.quote-hero-benefit span,
.booking-hero-benefit span,
.booking-vehicle-meta,
.booking-summary-item span,
.client-row strong,
.client-row span,
.footer-nav a,
.footer-bottom,
.footer-contact,
.about-footer-col h3,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom,
.about-footer-col p,
.stars,
.stars strong,
.stars span {
  font-size: 13.5px !important;
  line-height: 1.45 !important;
  font-weight: 500 !important;
  letter-spacing: 0.35px !important;
}

.eyebrow,
.vehicle-type,
.fleet-category,
.fleet-card-kicker,
.services-feature-kicker {
  color: var(--gold) !important;
  font-weight: 700 !important;
  letter-spacing: 1.1px !important;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px !important;
  letter-spacing: 0.7px !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Card and panel descriptions. */
.detail-item p,
.service-card p,
.testimonial-card p,
.value-card p,
.vehicle-card p,
.fleet-description,
.fleet-recommend-copy p,
.fleet-card-copy,
.services-benefit-item p,
.services-feature-list li,
.quote-benefit-card p,
.quote-info-card p,
.quote-process-item p,
.quote-reasons-card p,
.booking-summary-item strong,
.booking-summary-item small,
.booking-reasons-card p,
.booking-vehicle-card p,
.contact-detail-card p,
.contact-channel-card p,
.contact-mini-card span,
.contact-airport-panel p,
.contact-map-card p {
  font-size: 15px !important;
  line-height: 1.58 !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.trust-item p,
.rating-block p,
.affiliate-features span,
.services-support-grid span,
.services-benefit-item span,
.contact-mini-card small {
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-nav a,
.footer-contact,
.footer-bottom,
.about-footer-bottom,
.about-footer-col a,
.about-footer-col span {
  font-size: 14px !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.78) !important;
}

.about-footer-col h3 {
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  color: #fff !important;
}

@media (max-width: 1199.98px) {
  .nav-menu .nav-link,
  .phone-link {
    font-size: 14px !important;
    letter-spacing: 0.35px !important;
  }

  .btn,
  .btn-book,
  .fleet-book-btn,
  .quote-request-submit,
  .booking-next-btn,
  .contact-submit-btn {
    font-size: 14px !important;
    padding: 12px 21px !important;
  }
}

@media (max-width: 991.98px) {
  body,
  p,
  li,
  label,
  input,
  select,
  textarea {
    font-size: 15.5px !important;
    line-height: 1.58 !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(34px, 7.4vw, 46px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(27px, 5vw, 34px) !important;
    line-height: 1.14 !important;
  }
}

@media (max-width: 767.98px) {
  body,
  p,
  li,
  label,
  input,
  select,
  textarea,
  .field-copy input,
  .input-text {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  .nav-menu .nav-link,
  .phone-link {
    font-size: 14px !important;
  }

  .btn,
  .btn-book,
  .fleet-book-btn,
  .quote-request-submit,
  .booking-next-btn,
  .contact-submit-btn {
    font-size: 14px !important;
    padding: 12px 18px !important;
  }

  .eyebrow,
  .field-copy small,
  .quote-label,
  .booking-label,
  .contact-label,
  .vehicle-type,
  .fleet-category,
  .footer-nav a,
  .footer-bottom,
  .footer-contact,
  .about-footer-col h3,
  .about-footer-col a,
  .about-footer-col span,
  .about-footer-bottom {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(32px, 9vw, 42px) !important;
    line-height: 1.1 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(25px, 7vw, 32px) !important;
    line-height: 1.15 !important;
  }

  h3,
  .detail-item h3,
  .service-card h3,
  .value-card h3,
  .fleet-card-title,
  .services-feature-copy h3,
  .quote-benefit-card h3,
  .booking-summary-card h3,
  .booking-vehicle-card h3,
  .contact-channel-card strong,
  .contact-mini-grid strong,
  .vehicle-card h3 {
    font-size: clamp(19px, 5.3vw, 23px) !important;
  }
}

/* =========================================================
   Final 100% browser-size correction
   Goal: make the approved 100% view visually match the earlier 90% browser view.
   This uses real CSS sizing only: font sizes, spacing, widths and heights.
   ========================================================= */
html {
  font-size: 16px !important;
}

body {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

p,
li,
dd,
dt,
label,
.contact-form-intro,
.about-story-copy p,
.why-link-copy p,
.commitment-copy p,
.fleet-hero-copy p,
.services-hero-copy p,
.quote-hero-copy p,
.booking-hero-copy p,
.contact-hero-copy p,
.services-feature-copy p,
.services-cta-copy p,
.quote-summary-card p,
.quote-help-card p,
.booking-assurance-copy p,
.booking-help-copy p,
.contact-info-featured p,
.contact-coverage-head p,
.contact-hero-card p {
  font-size: 15px !important;
  line-height: 1.56 !important;
}

.hero-services,
.confidence-copy h2,
.services-cta-copy .lead,
.quote-panel-heading p,
.booking-summary-card > p,
.contact-message-form > p,
.contact-info-panel > p,
.detail-item p,
.service-card p,
.testimonial-card p,
.value-card p,
.vehicle-card p,
.fleet-description,
.fleet-recommend-copy p,
.fleet-card-copy,
.services-benefit-item p,
.services-feature-list li,
.quote-benefit-card p,
.quote-info-card p,
.quote-process-item p,
.quote-reasons-card p,
.booking-summary-item strong,
.booking-summary-item small,
.booking-reasons-card p,
.booking-vehicle-card p,
.contact-detail-card p,
.contact-channel-card p,
.contact-mini-card span,
.contact-airport-panel p,
.contact-map-card p {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.eyebrow,
.brand-sub,
.secure-note,
.quote-secure-note,
.contact-secure-note,
.vehicle-type,
.vehicle-capacity,
.fleet-category,
.fleet-card-kicker,
.fleet-card-meta,
.fleet-specs strong,
.fleet-specs small,
.fleet-highlight-item p,
.fleet-service-grid span,
.services-feature-kicker,
.service-number,
.quote-code,
.quote-flag,
.quote-hero-benefit span,
.booking-hero-benefit span,
.booking-vehicle-meta,
.booking-summary-item span,
.client-row strong,
.client-row span,
.footer-nav a,
.footer-bottom,
.footer-contact,
.about-footer-col h3,
.about-footer-col a,
.about-footer-col span,
.about-footer-bottom,
.about-footer-col p,
.stars,
.stars strong,
.stars span,
.trust-item p,
.rating-block p,
.affiliate-features span,
.services-support-grid span,
.services-benefit-item span,
.contact-mini-card small,
.field-copy small,
.quote-label,
.booking-label,
.contact-label,
.quote-form-group label,
.booking-field-group label,
.contact-field-group label,
.quote-card label small,
.booking-payment-block label,
.booking-toggle,
.contact-channel-tab,
.quote-tab {
  font-size: 13px !important;
  line-height: 1.42 !important;
}

.nav-menu .nav-link,
.phone-link {
  font-size: 13.5px !important;
  line-height: 1.22 !important;
  font-weight: 600 !important;
  letter-spacing: 0.35px !important;
}

.nav-menu .nav-link i {
  font-size: 10.5px !important;
}

.btn,
.btn-book,
.btn-gold-primary,
.btn-outline-gold,
.btn-outline-gold-dark,
.fleet-book-btn,
.quote-call-btn,
.quote-request-submit,
.booking-next-btn,
.contact-submit-btn,
.quote-submit,
.booking-vehicle-card button {
  font-size: 13.5px !important;
  line-height: 1.15 !important;
  padding: 12px 21px !important;
}

.btn-book,
.quote-submit,
.booking-next-btn,
.contact-submit-btn,
.quote-request-submit {
  min-height: 40px !important;
}

.hero-copy h1 {
  font-size: clamp(40px, 4.4vw, 50px) !important;
  line-height: 1.03 !important;
}

.about-hero-copy h1,
.fleet-hero-copy h1,
.services-hero-copy h1,
.quote-hero-copy h1,
.booking-hero-copy h1,
.contact-hero-copy h1 {
  font-size: clamp(34px, 3.9vw, 43px) !important;
  line-height: 1.07 !important;
}

h2,
.about-story-copy h2,
.center-title h2,
.why-link-copy h2,
.mission-card h2,
.commitment-copy h2,
.fleet-vehicle-info h2,
.fleet-recommend-copy h2,
.services-section-heading h2,
.services-cta-copy h2,
.quote-panel-heading h2,
.quote-summary-card h2,
.booking-assurance-panel h2,
.booking-help-panel h2,
.contact-message-form h2,
.contact-info-featured h2,
.contact-coverage-head h2,
.contact-hero-card h2 {
  font-size: clamp(27px, 2.7vw, 34px) !important;
  line-height: 1.12 !important;
}

h3,
.detail-item h3,
.service-card h3,
.testimonial-card h3,
.value-card h3,
.fleet-card-title,
.fleet-showcase-card h3,
.services-feature-copy h3,
.services-benefit-item h3,
.quote-benefit-card h3,
.quote-process-card h3,
.quote-info-card h3,
.quote-reasons-card h3,
.booking-summary-card h3,
.booking-vehicle-card h3,
.booking-reasons-card h3,
.contact-detail-card h3,
.contact-channel-card strong,
.contact-mini-grid strong,
.vehicle-card h3 {
  font-size: clamp(18px, 1.5vw, 22px) !important;
  line-height: 1.2 !important;
}

h4,
.booking-step span,
.booking-step-label,
.booking-vehicle-card strong span,
.quote-form-step strong,
.service-title-row strong {
  font-size: 16px !important;
}

.field-copy input,
.input-text,
.quote-input,
.quote-select,
.quote-textarea,
.booking-input,
.booking-select,
.booking-textarea,
.booking-input-wrap input,
.booking-input-wrap select,
.booking-field-group textarea,
.contact-input,
.contact-select,
.contact-textarea,
.contact-field-group input,
.contact-field-group select,
.contact-field-group textarea {
  font-size: 14px !important;
  line-height: 1.42 !important;
}

.quote-card h2,
.quote-form-card h2,
.booking-form-card h2 {
  font-size: 16.5px !important;
  line-height: 1.25 !important;
}

.brand-main,
.footer-brand .brand-main,
.footer-about-brand .brand-main {
  font-size: 38px !important;
}

.brand-sub,
.footer-brand .brand-sub,
.footer-about-brand .brand-sub {
  font-size: 9.5px !important;
}

@media (min-width: 1200px) {
  :root {
    --container: 1225px;
  }

  .page-container,
  .about-page .page-container,
  .fleet-page .page-container,
  .booking-page .page-container,
  .contact-page .page-container {
    max-width: var(--container) !important;
    padding-left: 52px !important;
    padding-right: 52px !important;
  }

  .site-navbar {
    min-height: 83px !important;
    padding-top: 20px !important;
  }

  .nav-menu {
    gap: 23px !important;
  }

  .btn-book {
    min-width: 130px !important;
    padding: 14px 27px !important;
  }

  .hero-section {
    min-height: 738px !important;
  }

  .hero-inner {
    padding-top: 70px !important;
    padding-bottom: 68px !important;
  }

  .hero-copy h1 {
    max-width: 612px !important;
    margin-bottom: 30px !important;
  }

  .hero-services {
    margin-bottom: 32px !important;
  }

  .hero-actions .btn {
    min-width: 198px !important;
  }

  .quote-card {
    width: min(100%, 383px) !important;
    min-height: 504px !important;
    padding: 31px 27px 22px !important;
  }

  .quote-card h2 {
    margin-bottom: 25px !important;
  }

  .quote-field {
    min-height: 58px !important;
    margin-bottom: 14px !important;
    padding: 12px 14px !important;
  }

  .trust-grid {
    min-height: 112px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .trust-item {
    min-height: 59px !important;
    gap: 14px !important;
    padding: 0 25px !important;
  }

  .trust-item span {
    width: 38px !important;
    height: 38px !important;
    font-size: 19px !important;
  }

  .details-section,
  .fleet-section,
  .services-section,
  .testimonials-section,
  .affiliate-section,
  .fleet-main-section,
  .services-main-section,
  .about-story-section,
  .quote-main-section,
  .booking-main-section,
  .contact-main-section,
  .contact-coverage-section {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }

  .details-image-wrap img {
    height: 369px !important;
  }

  .detail-list {
    gap: 16px !important;
  }

  .detail-item {
    grid-template-columns: 56px 1fr !important;
    gap: 14px !important;
  }

  .detail-icon {
    width: 49px !important;
    height: 49px !important;
    font-size: 32px !important;
  }

  .section-heading-row {
    margin-bottom: 27px !important;
  }

  .fleet-track,
  .home-vehicle-carousel .fleet-track,
  .testimonial-grid,
  .testimonial-carousel .testimonial-grid {
    gap: 13px !important;
  }

  .home-vehicle-carousel .vehicle-card {
    flex-basis: calc((100% - 39px) / 4) !important;
  }

  .vehicle-card img {
    height: 185px !important;
  }

  .vehicle-body {
    min-height: 142px !important;
    padding: 18px 20px !important;
  }

  .vehicle-icon {
    font-size: 20px !important;
  }

  .slider-arrow {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
  }

  .slider-prev {
    left: -22px !important;
  }

  .slider-next {
    right: -22px !important;
  }

  .services-grid {
    gap: 13px !important;
    margin-top: 25px !important;
  }

  .service-card {
    min-height: 185px !important;
    padding: 31px 15px 22px !important;
  }

  .service-card i {
    margin-bottom: 19px !important;
    font-size: 49px !important;
  }

  .corporate-section {
    min-height: 324px !important;
  }

  .corporate-inner {
    padding-top: 47px !important;
    padding-bottom: 47px !important;
  }

  .testimonial-card {
    min-height: 198px !important;
    padding: 23px 25px 20px !important;
  }

  .testimonial-carousel .testimonial-card {
    flex-basis: calc((100% - 43px) / 4) !important;
  }

  .testimonial-card > i {
    font-size: 32px !important;
  }

  .client-row img {
    width: 43px !important;
    height: 43px !important;
  }

  .affiliate-features div {
    min-height: 52px !important;
    gap: 14px !important;
  }

  .affiliate-features i {
    font-size: 31px !important;
  }

  .confidence-section {
    min-height: 189px !important;
  }

  .confidence-inner {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .site-footer .footer-grid {
    grid-template-columns: 198px 1fr auto auto !important;
    min-height: 94px !important;
    padding-top: 20px !important;
    padding-bottom: 18px !important;
  }

  .footer-nav {
    gap: 31px !important;
  }

  .footer-social a {
    width: 31px !important;
    height: 31px !important;
    font-size: 14px !important;
  }

  .about-hero-section,
  .fleet-hero-section,
  .services-hero-section,
  .quote-hero-section,
  .booking-hero-section {
    min-height: 468px !important;
  }

  .about-hero-content,
  .fleet-hero-content,
  .services-hero-content,
  .quote-hero-content,
  .booking-hero-content {
    padding-top: 104px !important;
    padding-bottom: 86px !important;
  }

  .fleet-highlights-grid,
  .services-benefits-grid {
    min-height: 76px !important;
  }

  .fleet-highlight-item,
  .services-benefit-item {
    min-height: 58px !important;
    gap: 16px !important;
    padding: 0 27px !important;
  }

  .fleet-highlight-icon,
  .services-benefit-icon,
  .fleet-highlight-item i,
  .services-benefit-item i {
    width: 34px !important;
    height: 34px !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .fleet-showcase-card,
  .services-feature-card,
  .fleet-showcase-media,
  .services-feature-media {
    min-height: 243px !important;
  }

  .fleet-card-body,
  .services-feature-copy {
    padding: 27px 31px !important;
  }

  .fleet-cta-panel,
  .services-cta-panel,
  .quote-summary-card,
  .booking-summary-card,
  .contact-message-form,
  .contact-info-panel,
  .quote-form-card,
  .booking-form-card {
    padding: 32px 34px !important;
  }

  .quote-benefit-card,
  .booking-hero-benefit,
  .booking-summary-item,
  .contact-mini-card,
  .contact-channel-card {
    min-height: 86px !important;
  }

  .quote-input,
  .quote-select,
  .quote-textarea,
  .booking-input,
  .booking-select,
  .booking-textarea,
  .contact-input,
  .contact-select,
  .contact-textarea {
    min-height: 50px !important;
  }

  .contact-hero-section {
    min-height: 630px !important;
  }

  .contact-hero-content {
    grid-template-columns: minmax(0, 1fr) 387px !important;
    gap: 50px !important;
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .contact-hero-card {
    width: min(100%, 387px) !important;
    padding: 31px 29px !important;
  }

  .contact-support-image img {
    height: 351px !important;
  }

  .contact-map-card img {
    min-height: 387px !important;
  }
}

@media (max-width: 1199.98px) {
  .page-container,
  .about-page .page-container,
  .fleet-page .page-container,
  .booking-page .page-container,
  .contact-page .page-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  body,
  p,
  li,
  label,
  input,
  select,
  textarea {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(31px, 6.7vw, 41px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(24px, 4.5vw, 31px) !important;
    line-height: 1.14 !important;
  }

  .btn,
  .btn-book,
  .fleet-book-btn,
  .quote-request-submit,
  .booking-next-btn,
  .contact-submit-btn {
    font-size: 13px !important;
    padding: 11px 19px !important;
  }
}

@media (max-width: 767.98px) {
  body,
  p,
  li,
  label,
  input,
  select,
  textarea,
  .field-copy input,
  .input-text {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  .page-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-copy h1,
  .about-hero-copy h1,
  .fleet-hero-copy h1,
  .services-hero-copy h1,
  .quote-hero-copy h1,
  .booking-hero-copy h1,
  .contact-hero-copy h1 {
    font-size: clamp(29px, 8.5vw, 38px) !important;
    line-height: 1.08 !important;
  }

  h2,
  .about-story-copy h2,
  .center-title h2,
  .why-link-copy h2,
  .mission-card h2,
  .commitment-copy h2,
  .contact-message-form h2,
  .contact-info-featured h2 {
    font-size: clamp(23px, 6.5vw, 29px) !important;
  }

  h3,
  .detail-item h3,
  .service-card h3,
  .value-card h3,
  .fleet-card-title,
  .services-feature-copy h3,
  .quote-benefit-card h3,
  .booking-summary-card h3,
  .booking-vehicle-card h3,
  .contact-channel-card strong,
  .contact-mini-grid strong,
  .vehicle-card h3 {
    font-size: clamp(17px, 5vw, 21px) !important;
  }

  .btn,
  .btn-book,
  .fleet-book-btn,
  .quote-request-submit,
  .booking-next-btn,
  .contact-submit-btn {
    font-size: 13px !important;
    padding: 11px 16px !important;
  }
}

/* Quote form picker/dropdown refinements */
.quote-input-wrap input[type="number"]::-webkit-outer-spin-button,
.quote-input-wrap input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.quote-input-wrap input[type="number"] {
  appearance: textfield;
}

.quote-input-wrap select {
  padding-right: 24px;
  color-scheme: dark;
}

.quote-input-wrap select:required:invalid,
.quote-input-wrap select option[value=""] {
  color: rgba(255, 255, 255, 0.5);
}

.quote-input-wrap select option {
  background: #16120f;
  color: rgba(255, 255, 255, 0.92);
}

.quote-select-wrap > i:last-child {
  pointer-events: none;
}

.flatpickr-calendar.quote-picker-calendar {
  background: #16120f;
  border: 1px solid rgba(210, 160, 87, 0.45);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
}

.flatpickr-calendar.quote-picker-calendar::before,
.flatpickr-calendar.quote-picker-calendar::after {
  border-bottom-color: rgba(210, 160, 87, 0.45);
}

.quote-picker-calendar .flatpickr-months,
.quote-picker-calendar .flatpickr-weekdays {
  background: #16120f;
}

.quote-picker-calendar .flatpickr-current-month,
.quote-picker-calendar .flatpickr-current-month input.cur-year,
.quote-picker-calendar .flatpickr-monthDropdown-months,
.quote-picker-calendar .flatpickr-weekday,
.quote-picker-calendar .flatpickr-day,
.quote-picker-calendar .numInputWrapper span.arrowUp::after,
.quote-picker-calendar .numInputWrapper span.arrowDown::after {
  color: rgba(255, 255, 255, 0.9);
}

.quote-picker-calendar .flatpickr-monthDropdown-months,
.quote-picker-calendar .flatpickr-current-month input.cur-year,
.quote-picker-calendar .flatpickr-time input,
.quote-picker-calendar .flatpickr-time .flatpickr-am-pm {
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
}

.quote-picker-calendar .flatpickr-day:hover,
.quote-picker-calendar .flatpickr-day:focus,
.quote-picker-calendar .flatpickr-time input:hover,
.quote-picker-calendar .flatpickr-time .flatpickr-am-pm:hover {
  background: rgba(210, 160, 87, 0.18);
  border-color: rgba(210, 160, 87, 0.32);
}

.quote-picker-calendar .flatpickr-day.today {
  border-color: var(--gold);
}

.quote-picker-calendar .flatpickr-day.selected,
.quote-picker-calendar .flatpickr-day.startRange,
.quote-picker-calendar .flatpickr-day.endRange,
.quote-picker-calendar .flatpickr-day.selected:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1d160f;
}

.quote-picker-calendar .flatpickr-day.prevMonthDay,
.quote-picker-calendar .flatpickr-day.nextMonthDay,
.quote-picker-calendar .flatpickr-day.flatpickr-disabled {
  color: rgba(255, 255, 255, 0.28);
}

.quote-picker-calendar .flatpickr-time {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.quote-picker-calendar .flatpickr-time .numInputWrapper span.arrowUp::after {
  border-bottom-color: var(--gold);
}

.quote-picker-calendar .flatpickr-time .numInputWrapper span.arrowDown::after {
  border-top-color: var(--gold);
}

/* Booking backend wizard updates */
.booking-wizard-step {
  display: none;
}

.booking-wizard-step.active {
  display: block;
  animation: bookingFadeIn 0.25s ease-in-out;
}

@keyframes bookingFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-step.completed span {
  color: #111;
  background: rgba(210, 160, 87, 0.86);
  border-color: rgba(245, 203, 136, 0.76);
}

.booking-step.completed p {
  color: rgba(239, 194, 124, 0.94);
}

.booking-field-group label em {
  color: var(--gold-light);
  font-style: normal;
}

.booking-step-intro {
  margin: -8px 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.booking-input-wrap select option {
  color: #111;
  background: #fff;
}

.booking-input-wrap input[type="date"],
.booking-input-wrap input[type="time"] {
  color-scheme: dark;
}

.booking-counter-box {
  display: flex;
  align-items: stretch;
  min-height: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.booking-counter-btn,
.booking-counter-value {
  height: 50px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  text-align: center;
}

.booking-counter-btn {
  width: 58px;
  color: var(--gold-light);
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease;
}

.booking-counter-btn:hover:not(:disabled) {
  color: #111;
  background: var(--gold);
}

.booking-counter-btn:disabled {
  color: rgba(255, 255, 255, 0.26);
  cursor: not-allowed;
}

.booking-counter-value {
  flex: 1;
  min-width: 0;
  font-size: 14px;
}

.booking-counter-btn:last-child {
  border-right: 0;
}

.booking-map-field {
  margin-top: 4px;
}

.booking-map {
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.034);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 18px;
}

.booking-actions.single-action {
  justify-content: flex-end;
}

.booking-actions .btn {
  min-width: 164px;
}

.booking-actions.single-action .btn {
  width: 100%;
}

.booking-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.booking-alert.success {
  border-color: rgba(94, 201, 134, 0.44);
  background: rgba(94, 201, 134, 0.12);
}

.booking-alert.warning {
  border-color: rgba(239, 194, 124, 0.44);
  background: rgba(239, 194, 124, 0.12);
}

.booking-vehicle-grid.in-wizard {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card {
  min-height: 286px;
}

.booking-vehicle-card .capacity-limit-message {
  display: block;
  min-height: 14px;
  margin-top: 8px;
  color: #ffb4a8;
  font-size: 10px;
  line-height: 1.35;
}

.booking-vehicle-card.is-disabled {
  opacity: 0.56;
}

.booking-vehicle-card.is-disabled button {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  cursor: not-allowed;
}

.booking-vehicle-card .booking-vehicle-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.booking-review-panel {
  display: grid;
  gap: 20px;
}

.booking-review-vehicle {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.booking-review-vehicle img {
  width: 148px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55));
}

.booking-review-vehicle h3 {
  margin: 0 0 5px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.booking-review-vehicle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.booking-review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
}

.booking-review-list div {
  min-height: 58px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.booking-review-list dt {
  margin-bottom: 6px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.booking-review-list dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.45;
}

.booking-charges-box {
  padding: 17px 18px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(210, 160, 87, 0.24);
  border-radius: 5px;
}

.booking-charges-box p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.booking-total-line {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-light) !important;
  font-weight: 800;
}

.meet-greet-btn {
  width: 100%;
  min-height: 42px;
  margin-bottom: 9px;
  color: var(--gold-light);
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.meet-greet-btn.active,
.meet-greet-btn:hover {
  color: #111;
  background: var(--gold);
}

.booking-terms-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 14px 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.booking-terms-line input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--gold);
  flex: 0 0 auto;
}

.is-invalid-wrap {
  border-color: rgba(255, 90, 70, 0.8) !important;
  box-shadow: 0 0 0 1px rgba(255, 90, 70, 0.18);
}

.booking-preloader {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.58);
}

.booking-preloader span {
  width: 46px;
  height: 46px;
  border: 4px solid rgba(255, 255, 255, 0.26);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: bookingSpin 0.8s linear infinite;
}

@keyframes bookingSpin {
  to { transform: rotate(360deg); }
}

.pac-container {
  z-index: 99999 !important;
}

@media (max-width: 991.98px) {
  .booking-vehicle-grid.in-wizard,
  .booking-review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .booking-actions {
    flex-direction: column;
  }

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

  .booking-review-vehicle {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-review-vehicle img {
    width: 100%;
  }
}


/* Booking: keep the vehicle select area static/full-width while preserving wizard backend behavior */
.booking-main-grid.vehicle-step-active {
  grid-template-columns: 1fr;
}

.booking-main-grid.vehicle-step-active .booking-trip-form {
  border-right: 0;
}

.booking-main-grid.vehicle-step-active .booking-aside {
  display: none;
}

.booking-main-grid.vehicle-step-active #booking-vehicle-heading {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 22px;
  letter-spacing: 2px;
}

.booking-main-grid.vehicle-step-active #step2 .booking-step-intro {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 25px;
  line-height: 1.35;
}

.booking-vehicle-grid.in-wizard {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card {
  min-height: 496px;
  padding: 25px 16px 28px;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card img {
  height: 112px;
  margin-bottom: 18px;
  object-fit: cover;
  filter: none;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: 27px;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card p {
  min-height: 48px;
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.45;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card strong {
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 19px;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card strong span {
  font-size: 22px;
}

.booking-vehicle-grid.in-wizard .booking-vehicle-card button {
  width: min(100%, 218px);
  min-height: 69px;
  font-size: 20px;
  letter-spacing: 1.5px;
}

@media (max-width: 1399.98px) {
  .booking-vehicle-grid.in-wizard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .booking-vehicle-grid.in-wizard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .booking-vehicle-grid.in-wizard .booking-vehicle-card {
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .booking-main-grid.vehicle-step-active #step2 .booking-step-intro {
    font-size: 18px;
  }

  .booking-vehicle-grid.in-wizard {
    grid-template-columns: 1fr;
  }
}


/* Toastr validation states for quote/contact forms */
.quote-input-wrap.is-invalid-wrap,
.quote-textarea-group.is-invalid-wrap textarea,
.contact-field-group.is-invalid-wrap input,
.contact-field-group.is-invalid-wrap select,
.contact-field-group.is-invalid-wrap textarea {
  border-color: rgba(255, 90, 70, 0.86) !important;
  box-shadow: 0 0 0 1px rgba(255, 90, 70, 0.22), 0 0 18px rgba(255, 90, 70, 0.08) !important;
}

.quote-input-wrap .is-invalid,
.quote-textarea-group .is-invalid,
.contact-field-group .is-invalid {
  color: rgba(255, 255, 255, 0.96);
}

/* Template styled payment result pages */
.payment-result-page .site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgba(210, 160, 87, 0.12), transparent 28%),
    radial-gradient(circle at 16% 70%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(180deg, #090b0c 0%, #050607 100%);
}

.payment-result-nav {
  padding-top: 22px;
  padding-bottom: 22px;
}

.payment-result-section {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.payment-result-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(16, 18, 20, 0.94);
  border: 1px solid rgba(210, 160, 87, 0.28);
  border-radius: 12px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.payment-result-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--gold);
  pointer-events: none;
}

.payment-result-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  color: #101010;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  font-size: 38px;
  box-shadow: 0 18px 44px rgba(210, 160, 87, 0.24);
}

.payment-result-icon.error,
.payment-result-icon.warning {
  color: #fff;
  background: linear-gradient(135deg, #d86b54, #8f2d24);
  box-shadow: 0 18px 44px rgba(216, 107, 84, 0.2);
}

.payment-result-icon.warning {
  background: linear-gradient(135deg, #e6bd78, #b77b2c);
  color: #17110a;
}

.payment-result-card h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.95;
}

.payment-result-card .lead {
  max-width: 590px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.payment-result-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
  text-align: left;
}

.payment-result-detail {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
}

.payment-result-detail span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.payment-result-detail strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  word-break: break-word;
}

.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.payment-result-support {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.payment-result-support a {
  color: var(--gold-light);
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .payment-result-details {
    grid-template-columns: 1fr;
  }
}


/* Contact page image removal */
.contact-page .contact-support-image,
.contact-page .contact-map-card {
  display: none !important;
}
.contact-page .contact-coverage-grid {
  grid-template-columns: 1fr;
}

/* Requested targeted changes: match Booking select dropdowns to Quote select styling */
.booking-input-wrap select {
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1.2;
  padding-right: 24px;
  color-scheme: dark;
}

.booking-input-wrap select:required:invalid,
.booking-input-wrap select option[value=""] {
  color: rgba(255, 255, 255, 0.5);
}

.booking-input-wrap select option {
  background: #16120f;
  color: rgba(255, 255, 255, 0.92);
}

/* Requested correction: align Quote page select dropdown styling with the approved Booking select styling only. */
.quote-page .quote-select-wrap {
  min-height: 50px;
  padding: 0;
  background: rgba(255, 255, 255, 0.034);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.quote-page .quote-select-wrap select {
  height: 48px;
  padding: 0 43px 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  line-height: 1.2;
  appearance: none;
  cursor: pointer;
  color-scheme: dark;
}

.quote-page .quote-select-wrap > i:last-child {
  position: absolute;
  right: 17px;
  margin-left: 0;
  color: var(--gold);
  font-size: 16px;
  pointer-events: none;
}

.quote-page .quote-select-wrap select:required:invalid,
.quote-page .quote-select-wrap select option[value=""] {
  color: rgba(255, 255, 255, 0.5);
}

.quote-page .quote-select-wrap select option {
  background: #16120f;
  color: rgba(255, 255, 255, 0.92);
}
