:root {
  --bg: #f5f5f7;
  --bg-soft: #f1f2f6;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --ink: #111827;
  --ink-soft: #6b7280;
  --ink-muted: #9ca3af;
  --line: #e5e7eb;
  --brand: #f5be12;
  --brand-soft: #fef3c7;
  --brand-strong: #e4ad03;
  --danger: #ef4444;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.18);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 190, 18, 0.18), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(244, 211, 94, 0.18), transparent 52%),
    linear-gradient(160deg, #f9fafb 0%, #eef1f7 100%);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2200;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 190, 18, 0.65);
  outline-offset: 2px;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px 40px;
  max-width: 1180px;
}

html.js-enabled .page-shell {
  opacity: 1;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

html.js-enabled:not(.page-ready) .page-shell {
  filter: blur(8px);
  transform: scale(1.01);
}

html.js-enabled.page-ready .page-shell {
  opacity: 1;
  filter: none;
  transform: none;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5be12;
  color: #111827;
  font-size: 12px;
  box-shadow: 0 12px 22px rgba(17, 22, 30, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e4ad03;
}

.ux-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  min-width: 280px;
  width: 92vw;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, rgba(17, 24, 39, 0.97), rgba(31, 41, 55, 0.96));
  color: #f9fafb;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 2000;
  pointer-events: none;
}

/* Toast card style override (theme-matched) */
.ux-toast {
  left: 50% !important;
  bottom: 26px !important;
  transform: translate(-50%, 24px) scale(0.96) !important;
  width: 260px !important;
  max-width: 90vw !important;
  min-width: 0 !important;
  padding: 20px 16px 14px !important;
  border-radius: 12px !important;
  border: 2px solid #111827 !important;
  background: #ffffff !important;
  color: #111827 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-direction: column !important;
  text-align: center !important;
  pointer-events: auto !important;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.3) !important;
}

.ux-toast.show {
  transform: translate(-50%, 0) scale(1) !important;
}

.ux-toast-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 999px !important;
  margin-top: -38px !important;
  margin-bottom: 8px !important;
  font-size: 22px !important;
  color: #fff !important;
}

.ux-toast-body {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  align-items: center !important;
}

.ux-toast-title {
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ux-toast-message {
  font-size: 10px !important;
  color: #6b7280 !important;
  min-height: 28px;
}

.ux-toast-btn {
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 7px 22px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: #111827;
  background: var(--brand);
  box-shadow: 0 6px 14px rgba(245, 190, 18, 0.35);
}

.ux-toast-btn:hover {
  background: var(--brand-strong);
}

.ux-toast.toast-success .ux-toast-icon {
  background: #f5be12 !important;
}

.ux-toast.toast-error .ux-toast-icon {
  background: #ef4444 !important;
}

.ux-toast.toast-error .ux-toast-btn {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.35);
}

.ux-toast.toast-error .ux-toast-btn:hover {
  background: #dc2626;
}

.ux-toast.toast-info .ux-toast-icon {
  background: #111827 !important;
}

.ux-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Ensure booking result toast is centered with larger text */
.ux-toast.toast-center {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -46%);
}

.ux-toast.toast-center.show {
  transform: translate(-50%, -50%);
}

.ux-toast.toast-center .ux-toast-title {
  font-size: 16px;
}

.ux-toast.toast-center .ux-toast-message {
  font-size: 15px;
  line-height: 1.6;
}

/* Airport route fields: location icon + alignment */
#airport-pickup,
#airport-drop {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
  padding-left: 40px !important;
}

#airport-pickup {
  margin-bottom: 10px;
}

.ux-toast.toast-center {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -46%);
}

.ux-toast.toast-center.show {
  transform: translate(-50%, -50%);
}

.ux-toast.toast-center .ux-toast-title {
  font-size: 16px;
}

.ux-toast.toast-center .ux-toast-message {
  font-size: 15px;
  line-height: 1.6;
}

.ux-toast.toast-center {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -46%);
}

.ux-toast.toast-center.show {
  transform: translate(-50%, -50%);
}

.ux-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ux-toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ux-toast-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ux-toast-message {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(249, 250, 251, 0.92);
  word-break: break-word;
}

.ux-toast.toast-center {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -46%);
}

.ux-toast.toast-center.show {
  transform: translate(-50%, -50%);
}

.ux-toast.toast-center .ux-toast-title {
  font-size: 16px;
}

.ux-toast.toast-center .ux-toast-message {
  font-size: 15px;
  line-height: 1.6;
}

.ux-toast.toast-success .ux-toast-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.ux-toast.toast-error .ux-toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.ux-toast.toast-info .ux-toast-icon {
  background: rgba(245, 190, 18, 0.24);
  color: #fcd34d;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.34);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 100% - 32px);
  z-index: 1000;
  margin-bottom: 0;
  padding: 18px 26px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5be12 0%, #f7c63a 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 22, 30, 0.14);
}

.topbar.container-fluid {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 18px;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  justify-self: start;
  transform: none;
}

.brand-mark {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: none;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(11px, 0.85vw, 16px);
  line-height: 1;
  white-space: nowrap;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 30px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid rgba(27, 32, 44, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 252, 0.82));
  box-shadow: 0 8px 18px rgba(17, 22, 30, 0.14);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.2);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 22, 30, 0.2), 0 8px 18px rgba(17, 22, 30, 0.14);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.4px;
  border-radius: 999px;
  background: #1b202c;
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.16s ease, background 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: #1b202c;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: #ffffff;
  border-bottom-color: #f39f05;
}

.app-download-section {
  margin: 22px 0 30px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  background: transparent;
  border: 0;
}

.app-download-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

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

.app-download-content {
  margin-left: clamp(8px, 2vw, 28px);
}

.app-download-content h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  color: #04070d;
}

.app-download-content p {
  margin: 14px 0 0;
  color: #526179;
  font-size: 14px;
  line-height: 1.55;
  max-width: 48ch;
}

.app-download-group {
  margin-top: 20px;
}

.app-download-group h3 {
  margin: 0 0 10px;
  color: #243246;
  font-size: 22px;
  font-weight: 700;
}

.app-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.store-badge.disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #131722;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.social a i {
  display: inline-block;
  animation: icon-bob 2.8s ease-in-out infinite;
}

.social a:nth-child(2) i {
  animation-delay: 0.2s;
}

.social a:nth-child(3) i {
  animation-delay: 0.4s;
}

.social a:hover {
  color: #131722;
  background: var(--brand);
  border-color: var(--brand-strong);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.24);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr minmax(340px, 400px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.about-section {
  position: relative;
  scroll-margin-top: 110px;
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 2.8vw, 30px);
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -56% auto;
  width: clamp(260px, 34vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 190, 18, 0.22), rgba(245, 190, 18, 0));
  pointer-events: none;
}

.about-content {
  border-right: 1px solid rgba(245, 190, 18, 0.55);
  padding-right: clamp(14px, 2.3vw, 24px);
}

.page-heading {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: 0 14px 26px rgba(169, 117, 6, 0.22);
}

.page-heading .about-eyebrow,
.page-heading .services-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-heading .about-title,
.page-heading .services-title,
.page-heading .about-subtitle {
  color: #ffffff;
}

.about-eyebrow,
.about-title,
.about-subtitle,
.about-lead,
.about-list,
.about-footnote {
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-title {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.04;
}

.about-subtitle {
  margin: 0 0 2px;
  color: #232b3b;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
}

.about-lead {
  margin: 12px 0 0;
  max-width: 70ch;
  color: #3b4458;
  font-size: 13px;
  line-height: 1.58;
}

.about-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 43, 59, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.about-list i {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a2130;
  font-size: 11px;
  background: #f5be12;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-pulse-soft 2.6s ease-in-out infinite;
}

.about-list span {
  color: #2f3749;
  font-size: 12px;
  line-height: 1.5;
}

.about-list li:hover,
.about-list li:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.12);
}

.about-list li:hover i,
.about-list li:focus-within i {
  background: #1f2229;
  color: #f2c316;
  animation: none;
  transform: scale(1.08);
}

.about-footnote {
  margin: 14px 0 0;
  color: #1d2434;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.about-visual {
  position: relative;
  border-radius: 18px;
  padding: 14px 14px 10px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #2a2c30 0%, #1a1c21 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #f7f8fb;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-badges i {
  color: #f5be12;
}

.about-visual img {
  width: 100%;
  max-width: 460px;
  margin: 10px auto 0;
  display: block;
  object-fit: contain;
  transform: translateY(4px) scale(1.08);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.services-section {
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.services-eyebrow {
  margin: 0;
  color: #6a7388;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.services-title {
  margin: 8px 0 0;
  color: #121722;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.04;
}

.services-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 32, 44, 0.08);
  border-radius: 24px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 4px auto 10px;
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
  border-radius: 50%;
  background: #1f2229;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3.1s ease-in-out infinite;
}

.service-card h2 {
  margin: 0;
  color: #1a2232;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
}

.service-card p {
  margin: 10px 0 0;
  color: #3b4458;
  font-size: 12px;
  line-height: 1.56;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(17, 22, 30, 0.14);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: #f2c316;
  color: #1f2229;
  animation: none;
  transform: scale(1.08);
}

.choose-section {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px 26px;
  align-items: start;
}

.choose-title {
  margin: 0;
  color: #121826;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.2px;
}

.choose-list {
  display: grid;
  gap: 18px;
}

.choose-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.choose-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f5f7fb;
  font-size: 32px;
  background: #23252b;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3s ease-in-out infinite;
}

.choose-copy h3 {
  margin: 0;
  color: #0f1624;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.02;
}

.choose-copy p {
  margin: 6px 0 0;
  color: #252d3d;
  font-size: clamp(13px, 1.0vw, 16px);
  line-height: 1.4;
}

.choose-item:hover,
.choose-item:focus-within {
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 24, 38, 0.12);
}

.choose-item:hover .choose-icon,
.choose-item:focus-within .choose-icon {
  background: #f39f05;
  color: #121826;
  animation: none;
  transform: scale(1.04);
}

.site-footer {
  margin-top: 34px;
  padding: 16px 0 0;
  border-radius: 20px 20px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.site-footer.container-fluid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 10px 14px 22px;
}

.footer-links a {
  color: #ffffff;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f5be12;
}

.footer-bottom-bar {
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  padding: 8px 12px;
  border-top: 1px solid rgba(248, 250, 252, 0.15);
}

.footer-copyright {
  margin: 0;
  color: #111111;
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 500;
  letter-spacing: 0.1px;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-bottom-bar {
    padding: 8px 10px;
  }

  .footer-copyright {
    font-size: 8px;
    white-space: nowrap;
  }
}

.footer-copyright strong {
  font-weight: 800;
}

.footer-copyright a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: #b06c00;
}

.choose-item:hover .choose-copy h3,
.choose-item:focus-within .choose-copy h3 {
  color: #111827;
}

.choose-item:hover .choose-copy p,
.choose-item:focus-within .choose-copy p {
  color: #3d2a00;
}

.testimonials-section {
  margin-top: 34px;
}

.testimonials-title {
  margin: 0;
  color: #121826;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.testimonial-carousel {
  margin-top: 16px;
  max-width: 1120px;
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
}

.testimonial-page {
  flex: 0 0 50%;
  display: flex;
  scroll-snap-align: start;
}

.testimonial-page .testimonial-card {
  width: 100%;
}

.testimonial-card {
  margin-top: 0;
  width: auto;
  max-width: none;
  height: auto;
  min-height: 220px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(245, 190, 18, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.avatar-circle::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #f5be12, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  margin: 0 0 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.user-rating {
  display: flex;
  gap: 3px;
  color: #f5be12;
  font-size: 12px;
  filter: drop-shadow(0 2px 4px rgba(245, 190, 18, 0.2));
}

.post-date {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  background: #f9fafb;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
}

.card-body {
  flex: 1;
  margin-bottom: 20px;
  position: relative;
}

.card-body p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.posted-on {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  background: #f9fafb;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.testimonial-card:hover .platform-logo {
  background: #f3f4f6;
}

.platform-logo i {
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  position: static;
  justify-content: flex-start;
}

.testimonial-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 32, 44, 0.24);
  padding: 0;
  cursor: pointer;
  background: rgba(27, 32, 44, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 1;
  text-indent: -999px;
}

.testimonial-dot.active,
.testimonial-dot[aria-current="true"] {
  background: #f2c316;
  border-color: #f2c316;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(242, 195, 22, 0.26);
}

.testimonial-dot:hover {
  background: rgba(27, 32, 44, 0.44);
  border-color: rgba(27, 32, 44, 0.5);
}

.testimonial-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 34, 50, 0.22);
}

.testimonial-arrow {
  width: 46px;
  opacity: 1;
}

/* Hide arrows on mobile and small tablets */
@media (max-width: 768px) {
  .testimonial-arrow {
    display: none;
  }
}

.testimonial-arrow.carousel-control-prev {
  left: -24px;
}

.testimonial-arrow.carousel-control-next {
  right: -24px;
}

.testimonial-arrow-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #1d2431;
  background: #f2c316;
  border: 1px solid rgba(29, 36, 49, 0.12);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-arrow:hover .testimonial-arrow-icon {
  background: #e4ad03;
  transform: translateY(-1px);
}

.testimonial-arrow:focus-visible {
  outline: none;
}

.testimonial-arrow:focus-visible .testimonial-arrow-icon {
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.35), 0 10px 18px rgba(17, 22, 30, 0.2);
}


.queries-section {
  margin-top: 34px;
}

.queries-title {
  margin: 0;
  color: #121826;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.queries-subtitle {
  margin: 6px 0 0;
  color: #495267;
  font-size: clamp(14px, 1.2vw, 17px);
}

.queries-wrap {
  margin-top: 14px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.queries-card {
  margin-top: 0;
  max-width: 100%;
  padding: 24px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #262a33 0%, #1b1f28 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(14, 18, 24, 0.22);
}

.queries-visual {
  align-self: stretch;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 8px;
}

.queries-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.queries-content {
  min-width: 0;
}

.queries-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
}

.queries-form {
  display: grid;
  gap: 12px;
}

.queries-form input,
.queries-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: #ffffff;
  color: #2a2e37;
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Keep form controls consistent across booking and query forms */
.booking-form input,
.booking-form select,
.queries-form input,
.queries-form textarea {
  font-size: 13px;
}

.queries-form input {
  height: 48px;
}

.queries-form textarea {
  height: 104px;
  resize: none;
  padding-top: 12px;
}

.queries-form input::placeholder,
.queries-form textarea::placeholder {
  color: #6a7183;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}

.queries-form input:focus,
.queries-form textarea:focus {
  outline: none;
  border-color: #f2c316;
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.18);
}

.queries-form button {
  width: 114px;
  height: 42px;
  border: 0;
  background: #f2c316;
  color: #111111;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.queries-form button:hover {
  background: #e8b806;
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(232, 184, 6, 0.3);
}


.hero-copy {
  position: relative;
  padding: clamp(16px, 2.8vw, 30px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: var(--shadow-soft);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -22% -40% 12%;
  height: 55%;
  border-radius: 55% 45% 0 0;
  background: rgba(255, 255, 255, 0.24);
}

.eyebrow,
h1,
.subtitle,
.hero-points,
.call-box,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-title-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.6vw, 28px);
}

.hero-title-text {
  min-width: 0;
}

.hero-logo-video {
  width: clamp(88px, 13vw, 168px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.5px;
  max-width: none;
  white-space: nowrap;
}

.subtitle {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.93);
  max-width: 47ch;
  font-size: 15px;
  line-height: 1.55;
}

.hero-points {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.hero-points p {
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
}

.call-box {
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #151922;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.call-box span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.call-box strong {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
}

.hero-art {
  margin-top: -18px;
  display: grid;
  justify-items: center;
  gap: 0;
}

.hero-art-static {
  margin-top: 20px;
}

.taxi-pill {
  display: none;
}

.car-showcase {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.car-showcase-static {
  position: relative;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-carousel {
  position: relative;
  width: min(760px, 100%);
  height: clamp(190px, 25vw, 270px);
  overflow: visible;
}

.car-carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: clamp(180px, 32vw, 320px);
  height: clamp(20px, 4vw, 34px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 24, 31, 0.4) 0%, rgba(20, 24, 31, 0) 72%);
  pointer-events: none;
}

.car-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateX(12px) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.car-slide.active {
  opacity: 1;
  transform: translateX(0) translateY(-1px) scale(1);
  animation: car-float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
}

.hero-car-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
  animation: car-float 3.2s ease-in-out infinite;
}

@keyframes car-float {

  0%,
  100% {
    transform: translateX(0) translateY(-1px) scale(1);
  }

  50% {
    transform: translateX(0) translateY(-3px) scale(1);
  }
}

.car-name {
  margin: 0;
  margin-top: -4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 18px rgba(20, 24, 31, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
}

.booking-card {
  --booking-accent: var(--brand);
  --booking-accent-strong: var(--brand-strong);
  --booking-accent-soft: rgba(245, 190, 18, 0.18);
  --booking-accent-ring: rgba(245, 190, 18, 0.22);
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #242730 0%, #171a22 100%);
  box-shadow:
    0 20px 30px rgba(18, 18, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.booking-card h2 {
  margin: 0 0 18px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Select2 size/style alignment with booking form inputs */
.booking-form .select2-container {
  width: 100% !important;
}

.booking-form .select2-container .select2-selection--single {
  height: 48px !important;
  border: 1px solid #e3e7ee !important;
  border-radius: 11px !important;
  background: #f2f4f8 !important;
}

.booking-form .select2-container .select2-selection__rendered {
  height: 48px !important;
  line-height: 48px !important;
  padding-left: 14px !important;
  padding-right: 36px !important;
  color: #2f3a4a !important;
  font-size: 16px !important;
}

.booking-form .select2-container .select2-selection__placeholder {
  color: #6a7388 !important;
}

.booking-form .select2-container .select2-selection__arrow {
  height: 48px !important;
  right: 10px !important;
}

.booking-form .select2-container--default.select2-container--open .select2-selection--single,
.booking-form .select2-container--default .select2-selection--single:focus {
  border-color: rgba(245, 190, 18, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(245, 190, 18, 0.2) !important;
}

/* Inline form validation style */
.booking-form .field-invalid,
.queries-form .field-invalid,
.booking-form input.field-invalid,
.booking-form select.field-invalid,
.booking-form textarea.field-invalid,
.queries-form input.field-invalid,
.queries-form textarea.field-invalid,
.queries-form select.field-invalid {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23ff6b6b' stroke-width='2'/%3E%3Cline x1='12' y1='7' x2='12' y2='13' stroke='%23ff6b6b' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='17' r='1.2' fill='%23ff6b6b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  padding-right: 40px !important;
}

.booking-form .select2.field-invalid .select2-selection--single,
.queries-form .select2.field-invalid .select2-selection--single {
  border-color: #ff6b6b !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.15) !important;
}

.field-error-msg {
  margin-top: -5px;
  margin-bottom: 4px;
  color: #ff6b6b;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}

/* Input icons */
.booking-form input,
.queries-form input,
.booking-form textarea,
.queries-form textarea {
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px 16px;
  padding-left: 40px !important;
}

#airport-location {
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 16px 16px;
  padding-left: 40px !important;
}

.booking-form input[id$="-phone"],
.queries-form input[id$="-phone"],
#contact-phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.booking-form input[id$="-name"],
.queries-form input[id$="-name"],
#contact-name {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.booking-form input[type='email'],
.queries-form input[type='email'],
#contact-email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

#local-pickup,
#local-drop,
#outstation-from,
#outstation-drop,
#airport-location,
#rental-pickup,
#rental-drop {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

#local-date,
#outstation-date,
#airport-date,
#rental-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

#query-message,
#contact-message {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-position: left 12px top 12px;
}

/* Icon color change on focus to match theme */
.booking-form input[id$="-phone"]:focus,
.queries-form input[id$="-phone"]:focus,
#contact-phone:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.booking-form input[id$="-name"]:focus,
.queries-form input[id$="-name"]:focus,
#contact-name:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
}

.booking-form input[type='email']:focus,
.queries-form input[type='email']:focus,
#contact-email:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

#local-pickup:focus,
#local-drop:focus,
#outstation-from:focus,
#outstation-drop:focus,
#airport-location:focus,
#rental-pickup:focus,
#rental-drop:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

#local-date:focus,
#outstation-date:focus,
#airport-date:focus,
#rental-date:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

#query-message:focus,
#contact-message:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

/* Final override: prevent tiled/repeated icons */
.booking-form input,
.queries-form input,
.booking-form textarea,
.queries-form textarea {
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
}

#airport-location {
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
}

#query-message,
#contact-message {
  background-position: 12px 12px !important;
}

/* Final header brand alignment */
.topbar .brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.topbar .brand-mark {
  width: 62px !important;
  height: 62px !important;
  border-radius: 50% !important;
  background: #ffffff;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
  flex-shrink: 0;
}

.topbar .brand-mark img {
  width: 82% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

.topbar .brand-text {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1.1 !important;
  margin: 0 !important;
}

@media (max-width: 576px) {
  .topbar .brand-mark {
    width: 56px !important;
    height: 56px !important;
  }
}

.form-tagline {
  margin: -8px 0 14px;
  text-align: center;
  color: rgba(236, 240, 248, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.trip-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.trip-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #f4f6fb;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trip-tab i {
  font-size: 13px;
  display: inline-block;
  animation: icon-pulse-soft 2.4s ease-in-out infinite;
}

@keyframes icon-bob {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes icon-pulse-soft {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {

  .social a i,
  .about-list i,
  .service-icon,
  .choose-icon,
  .trip-tab i {
    animation: none;
  }
}

.trip-tab:hover {
  border-color: var(--booking-accent);
}

.trip-tab.active {
  color: #1a202b;
  background: var(--booking-accent);
  border-color: transparent;
}

.trip-tab:hover i,
.trip-tab.active i {
  animation: none;
}

.booking-form {
  display: block;
}

.trip-panel {
  display: grid;
  gap: 11px;
}

.trip-panel[hidden] {
  display: none;
}

.js-enabled .vehicle-select-native {
  position: static;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #e3e7ee;
  overflow: visible;
  clip: auto;
}

.vehicle-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-option {
  width: 100%;
  min-height: 90px;
  padding: 8px 6px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-option img {
  width: 100%;
  max-width: 90px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
}

.vehicle-option span {
  color: #f1f4fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.2;
}

.vehicle-option:hover {
  border-color: var(--booking-accent);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.vehicle-option.active {
  border-color: var(--booking-accent);
  background: var(--booking-accent-soft);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

.vehicle-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
}

.car-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 11, 16, 0.65);
  backdrop-filter: blur(3px);
}

.car-confirm-dialog {
  --modal-accent: var(--brand);
  --modal-accent-strong: var(--brand-strong);
  width: min(420px, 100%);
  border-radius: 14px;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, #242730 0%, #1b1e26 100%);
  border: 1px solid var(--modal-accent);
  box-shadow: 0 18px 34px rgba(10, 12, 18, 0.36);
  text-align: center;
}

.car-confirm-dialog h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
}

.car-confirm-dialog img {
  width: min(180px, 80%);
  height: 90px;
  margin-top: 10px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.car-confirm-dialog p {
  margin: 10px 0 0;
  color: #e9edf5;
  font-size: 14px;
}

.car-confirm-details {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.car-confirm-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.car-confirm-details span {
  color: #d6deec;
  font-size: 13px;
  font-weight: 600;
}

.car-confirm-details strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.car-confirm-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.car-confirm-btn {
  min-width: 108px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.car-confirm-btn.secondary {
  color: #f1f4fb;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.car-confirm-btn.primary {
  color: #1a202b;
  background: var(--modal-accent);
}

.car-confirm-btn.primary:hover {
  background: var(--modal-accent-strong);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-form button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  resize: vertical;
  color: #22293a;
  background: #f6f7f9;
  border: 1px solid #e3e7ee;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form textarea {
  min-height: 96px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #848b99;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--booking-accent);
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
  background: #ffffff;
}

.choice-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2f4f8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.choice-row input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.choice-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.booking-form button {
  background: var(--booking-accent);
  color: #1a202b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form button:hover {
  background: var(--booking-accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

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

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    top: 10px;
    width: calc(100% - 20px);
    padding: 14px 16px 6px;
  }

  .brand {
    padding: 4px 6px;
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .topbar.menu-open .menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    font-size: 14px;
    padding: 7px 0;
  }

  .app-download-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .app-download-content {
    margin-left: 0;
    order: 1;
  }

  .app-download-phone {
    order: 2;
  }

  .app-download-content p {
    max-width: 60ch;
  }

  .app-badge-row {
    justify-content: center;
  }

  .social {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .topbar.menu-open .social {
    display: flex;
    padding-bottom: 8px;
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
  }

  .topbar.menu-open .menu-toggle {
    background: #1b202c;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .topbar.menu-open .menu-toggle span {
    background: #ffffff;
  }

  body.menu-open-lock {
    overflow: hidden;
  }

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

  .hero-copy {
    min-height: 460px;
  }

  .booking-card {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .about-section {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-content {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 190, 18, 0.5);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .about-visual {
    min-height: 260px;
  }

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

  .testimonial-card {
    max-width: 100%;
  }

  .queries-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding-bottom: 3px;
  }

  .page-shell {
    padding: 110px 12px 0;
  }

  .menu {
    padding: 10px;
  }

  .app-download-section {
    margin: 18px 0 24px;
    padding: 14px;
    gap: 14px;
  }

  .phone-mockup {
    width: min(200px, 65vw);
  }

  .app-download-content h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .app-download-content p {
    font-size: 16px;
    margin-top: 10px;
  }

  .app-download-group {
    margin-top: 16px;
  }

  .app-download-group h3 {
    font-size: 27px;
    margin-bottom: 8px;
  }

  .store-badge {
    border-radius: 8px;
  }

  .store-badge img {
    width: 180px;
    border-radius: 8px;
  }

  .hero-copy {
    min-height: 0;
    border-radius: 20px;
    padding: 16px 12px 14px;
  }

  .eyebrow {
    font-size: 22px;
  }

  h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .subtitle {
    font-size: 15px;
  }

  .hero-title-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-logo-video {
    width: clamp(80px, 24vw, 120px);
    display: block;
    margin: 8px auto 0;
    mix-blend-mode: screen;
    opacity: 1;
    visibility: visible;
  }

  .call-box strong {
    font-size: clamp(22px, 8vw, 34px);
  }

  .car-carousel {
    width: min(560px, 100%);
    height: clamp(150px, 44vw, 200px);
  }

  .car-showcase {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hero-art {
    margin-top: -12px;
  }

  .car-slide.active {
    transform: translateX(0) translateY(-2px) scale(1.03);
    animation: car-float-mobile 3s ease-in-out infinite;
  }

  @keyframes car-float-mobile {

    0%,
    100% {
      transform: translateX(0) translateY(-2px) scale(1.03);
    }

    50% {
      transform: translateX(0) translateY(-4px) scale(1.03);
    }
  }

  .booking-card {
    border-radius: 12px;
    padding: 18px 14px;
  }

  .booking-card h2 {
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .form-tagline {
    margin: -6px 0 12px;
    font-size: 13px;
  }

  .trip-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .trip-tab {
    height: 40px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form button {
    height: 44px;
    font-size: 15px;
  }

  .vehicle-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-option {
    min-height: 84px;
  }

  .vehicle-option img {
    max-width: 84px;
    height: 40px;
  }

  .choice-row label {
    font-size: 16px;
  }

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

  .booking-form button {
    font-size: 16px;
  }

  .about-section {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .about-eyebrow {
    font-size: 12px;
  }

  .about-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .about-subtitle {
    font-size: 17px;
  }

  .about-lead {
    font-size: 15px;
  }

  .about-list li {
    padding: 9px 10px;
  }

  .about-list i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .about-list span,
  .about-footnote {
    font-size: 14px;
  }

  .about-visual {
    padding: 10px 10px 8px;
    min-height: 220px;
  }

  .about-badges {
    gap: 6px;
  }

  .about-badges span {
    height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .about-visual img {
    transform: translateY(3px) scale(1.06);
  }

  .services-section {
    margin-top: 16px;
    border-radius: 16px;
    padding: 16px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .services-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 32, 44, 0.08);
    box-shadow: 0 10px 18px rgba(17, 22, 30, 0.08);
    border-radius: 20px;
    padding: 12px 10px 10px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    font-size: 44px;
  }

  .service-card h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .service-card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .choose-section {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .choose-title {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 0.98;
  }

  .choose-list {
    gap: 12px;
  }

  .choose-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .choose-icon {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }

  .choose-copy h3 {
    font-size: clamp(18px, 5.2vw, 26px);
  }

  .choose-copy p {
    margin-top: 5px;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.4;
  }

  .site-footer {
    margin-top: 22px;
    padding: 14px 0 0;
    border-radius: 14px 14px 0 0;
  }

  .footer-links {
    gap: 18px;
    padding: 4px 12px 18px;
  }

  .footer-links a {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .footer-bottom-bar {
    padding: 8px 10px;
  }

  .footer-copyright {
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .testimonials-section {
    margin-top: 22px;
  }

  .testimonials-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .testimonial-carousel {
    margin-top: 14px;
  }

  .testimonial-viewport {
    padding-bottom: 4px;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-page {
    flex-basis: 100%;
  }

  .testimonial-card {
    margin-top: 0;
    height: 210px;
    border-radius: 14px;
  }

  .testimonial-top-band {
    height: 64px;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
    margin: -36px 0 0 16px;
    font-size: 42px;
    box-shadow: -5px 5px 0 #1f2229;
  }

  .testimonial-content {
    padding: 10px 14px 14px;
    height: calc(100% - 112px);
    row-gap: 8px;
  }

  .testimonial-content h3 {
    font-size: clamp(18px, 5vw, 22px);
    min-height: 2.2em;
  }

  .testimonial-content p {
    font-size: clamp(12px, 3.4vw, 15px);
    -webkit-line-clamp: 3;
  }

  .testimonial-quote {
    margin-top: 8px;
    font-size: 22px;
  }

  .queries-section {
    margin-top: 22px;
  }

  .queries-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .queries-subtitle {
    margin-top: 8px;
    font-size: clamp(15px, 4.8vw, 18px);
  }

  .queries-card {
    padding: 16px 12px 12px;
    border-radius: 14px;
  }

  .queries-wrap {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .queries-visual {
    max-width: 100%;
  }

  .queries-visual img {
    max-height: 260px;
  }

  .queries-card h3 {
    font-size: clamp(22px, 8vw, 28px);
  }

  .queries-form {
    gap: 10px;
  }

  .queries-form input,
  .queries-form textarea {
    font-size: 16px;
    padding: 0 12px;
  }

  .queries-form input {
    height: 44px;
  }

  .queries-form textarea {
    height: 96px;
    padding-top: 10px;
  }

  .queries-form button {
    width: 102px;
    height: 40px;
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .page-shell {
    max-width: 1360px;
    padding: 128px 24px 0;
  }

  .topbar.container-fluid {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1360px, calc(100% - 48px));
    border-radius: 16px;
    padding: 18px 30px 8px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(420px, 460px);
    gap: clamp(30px, 3.4vw, 56px);
  }

  .car-carousel {
    width: min(860px, 100%);
    height: clamp(220px, 24vw, 300px);
  }

  .vehicle-option img {
    max-width: 124px;
    height: 64px;
  }

  .hero-copy {
    min-height: 700px;
    border-radius: 32px;
  }

  .booking-card {
    border-radius: 20px;
    padding: 30px 24px;
  }

  .testimonials-section {
    margin-top: 40px;
  }

  .testimonial-carousel {
    max-width: 1120px;
  }

  .testimonial-card {
    height: 210px;
  }

  .queries-section {
    margin-top: 40px;
  }

  .queries-wrap {
    max-width: 1120px;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
  }

  .queries-card {
    padding: 28px 24px 24px;
  }

  .queries-visual img {
    max-height: 480px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 16px 0 0;
  }

  .site-footer.container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.brand-text {
  font-size: clamp(16px, 1.1vw, 22px);
  letter-spacing: 0.6px;
}

.menu a,
.hero-points p,
.service-card p,
.choose-copy p,
.about-lead,
.queries-subtitle,
.app-download-content p,
.booking-form input,
.booking-form select,
.booking-form button,
.queries-form input,
.queries-form textarea,
.queries-form button {
  font-size: 14px;
}

p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px;
  color: #111827;
  letter-spacing: 0.02em;
}

h1,
.about-title,
.services-title,
.choose-title,
.testimonials-title,
.queries-title,
#app-download-title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.booking-card h2 {
  font-size: clamp(22px, 2.1vw, 30px);
}

.app-download-group h3 {
  font-size: 22px;
}

.store-badge-text small {
  font-size: 8px;
}

.store-badge-text strong {
  font-size: 16px;
}

@media (max-width: 768px) {
  .brand-text {
    font-size: clamp(12px, 3.6vw, 15px);
  }

  h1 {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .about-title,
  .services-title,
  .choose-title,
  .testimonials-title,
  .queries-title,
  #app-download-title {
    font-size: clamp(16px, 5vw, 21px);
  }

  .app-download-group h3 {
    font-size: 20px;
  }
}

/* Phone alignment fix */
@media (max-width: 480px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 12px;
    align-items: center;
  }

  .brand {
    gap: 8px;
    padding: 0;
    min-width: 0;
  }

  .topbar .brand-mark {
    width: 36px;
    height: 36px;
  }

  .topbar .brand-mark img {
    width: 84% !important;
  }

  .topbar .brand-text {
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .page-shell {
    padding-top: 92px;
  }

  .hero-copy {
    border-radius: 20px;
    padding: 14px 10px 12px;
  }

  .hero-copy::before {
    inset: auto -8% -34% -8%;
    height: 52%;
    border-radius: 50% 50% 0 0;
  }

  .hero-title-row {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-title-text {
    flex: 1;
    min-width: 0;
  }

  .hero-logo-video {
    width: 78px;
    margin: 0;
  }

  h1 {
    white-space: normal;
  }

  .subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }

  .call-box {
    max-width: 220px;
  }

  .hero-art {
    margin-top: 6px;
  }

  .car-showcase {
    margin-top: 4px;
  }

  .car-carousel {
    width: 100%;
    height: clamp(140px, 48vw, 182px);
  }
}

/* Header logo crop to remove white inner padding ring */
.topbar .brand-mark {
  overflow: hidden;
}

.topbar .brand-mark img {
  object-fit: cover;
  transform: scale(1.22);
  transform-origin: center;
}

/* Header brand size boost */
.topbar .brand {
  gap: 12px;
}

.topbar .brand-mark {
  width: 72px;
  height: 54px;
}

.topbar .brand-text {
  font-size: clamp(20px, 1.5vw, 28px);
  letter-spacing: 0.7px;
}

@media (max-width: 768px) {
  .topbar .brand-mark {
    width: 64px;
    height: 48px;
  }

  .topbar .brand-text {
    font-size: clamp(15px, 4.6vw, 20px);
  }
}

/* Blur background while page loader is visible */
.page-loader {
  background: rgba(17, 24, 39, 0.32);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
}

:root {
  --bg: #f5f5f7;
  --bg-soft: #f1f2f6;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --ink: #111827;
  --ink-soft: #6b7280;
  --ink-muted: #9ca3af;
  --line: #e5e7eb;
  --brand: #f5be12;
  --brand-soft: #fef3c7;
  --brand-strong: #e4ad03;
  --danger: #ef4444;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.18);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 190, 18, 0.18), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(244, 211, 94, 0.18), transparent 52%),
    linear-gradient(160deg, #f9fafb 0%, #eef1f7 100%);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2200;
  padding: 10px 12px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 190, 18, 0.65);
  outline-offset: 2px;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px 40px;
  max-width: 1180px;
}

html.js-enabled .page-shell {
  opacity: 1;
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

html.js-enabled:not(.page-ready) .page-shell {
  filter: blur(8px);
  transform: scale(1.01);
}

html.js-enabled.page-ready .page-shell {
  opacity: 1;
  filter: none;
  transform: none;
}

.container-fluid {
  width: 100%;
  max-width: 100%;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5be12;
  color: #111827;
  font-size: 12px;
  box-shadow: 0 12px 22px rgba(17, 22, 30, 0.22);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #e4ad03;
}

.ux-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 24px);
  min-width: 280px;
  width: 92vw;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, rgba(17, 24, 39, 0.97), rgba(31, 41, 55, 0.96));
  color: #f9fafb;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.32);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 2000;
  pointer-events: none;
}

.ux-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.ux-toast-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ux-toast-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ux-toast-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.ux-toast-message {
  font-size: 11px;
  line-height: 1.45;
  color: rgba(249, 250, 251, 0.92);
  word-break: break-word;
}

.ux-toast.toast-success .ux-toast-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.ux-toast.toast-error .ux-toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
}

.ux-toast.toast-info .ux-toast-icon {
  background: rgba(245, 190, 18, 0.24);
  color: #fcd34d;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0.34);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  backdrop-filter: blur(6px) saturate(120%);
  z-index: 2500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 100% - 32px);
  z-index: 1000;
  margin-bottom: 0;
  padding: 18px 26px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5be12 0%, #f7c63a 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(17, 22, 30, 0.14);
}

.topbar.container-fluid {
  top: -4px;
  left: 0;
  transform: none;
  width: 100%;
  border-radius: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 18px;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  justify-self: start;
  transform: none;
}

.brand-mark {
  width: 56px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: none;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: clamp(11px, 0.85vw, 16px);
  line-height: 1;
  white-space: nowrap;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.8vw, 30px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  position: relative;
  border: 1px solid rgba(27, 32, 44, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 252, 0.82));
  box-shadow: 0 8px 18px rgba(17, 22, 30, 0.14);
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.2);
}

.menu-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(17, 22, 30, 0.2), 0 8px 18px rgba(17, 22, 30, 0.14);
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2.4px;
  border-radius: 999px;
  background: #1b202c;
  transition: top 0.2s ease, transform 0.2s ease, opacity 0.16s ease, background 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu a {
  text-decoration: none;
  text-transform: uppercase;
  color: #1b202c;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: #ffffff;
  border-bottom-color: #f39f05;
}

.app-download-section {
  margin: 22px 0 30px;
  padding: clamp(18px, 2.5vw, 28px);
  border-radius: 22px;
  display: grid;
  grid-template-columns: minmax(180px, 290px) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: center;
  background: transparent;
  border: 0;
}

.app-download-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

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

.app-download-content {
  margin-left: clamp(8px, 2vw, 28px);
}

.app-download-content h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
  color: #04070d;
}

.app-download-content p {
  margin: 14px 0 0;
  color: #526179;
  font-size: 14px;
  line-height: 1.55;
  max-width: 48ch;
}

.app-download-group {
  margin-top: 20px;
}

.app-download-group h3 {
  margin: 0 0 10px;
  color: #243246;
  font-size: 22px;
  font-weight: 700;
}

.app-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-block;
  border-radius: 10px;
  text-decoration: none;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.store-badge img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.store-badge.disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #131722;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.social a i {
  display: inline-block;
  animation: icon-bob 2.8s ease-in-out infinite;
}

.social a:nth-child(2) i {
  animation-delay: 0.2s;
}

.social a:nth-child(3) i {
  animation-delay: 0.4s;
}

.social a:hover {
  color: #131722;
  background: var(--brand);
  border-color: var(--brand-strong);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.24);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr minmax(340px, 400px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.about-section {
  position: relative;
  scroll-margin-top: 110px;
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 2.8vw, 30px);
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -56% auto;
  width: clamp(260px, 34vw, 420px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 190, 18, 0.22), rgba(245, 190, 18, 0));
  pointer-events: none;
}

.about-content {
  border-right: 1px solid rgba(245, 190, 18, 0.55);
  padding-right: clamp(14px, 2.3vw, 24px);
}

.page-heading {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: 0 14px 26px rgba(169, 117, 6, 0.22);
}

.page-heading .about-eyebrow,
.page-heading .services-eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-heading .about-title,
.page-heading .services-title,
.page-heading .about-subtitle {
  color: #ffffff;
}

.about-eyebrow,
.about-title,
.about-subtitle,
.about-lead,
.about-list,
.about-footnote {
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  margin: 0;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.about-title {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.04;
}

.about-subtitle {
  margin: 0 0 2px;
  color: #232b3b;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 600;
}

.about-lead {
  margin: 12px 0 0;
  max-width: 70ch;
  color: #3b4458;
  font-size: 13px;
  line-height: 1.58;
}

.about-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(35, 43, 59, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.about-list i {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1a2130;
  font-size: 11px;
  background: #f5be12;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-pulse-soft 2.6s ease-in-out infinite;
}

.about-list span {
  color: #2f3749;
  font-size: 12px;
  line-height: 1.5;
}

.about-list li:hover,
.about-list li:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.12);
}

.about-list li:hover i,
.about-list li:focus-within i {
  background: #1f2229;
  color: #f2c316;
  animation: none;
  transform: scale(1.08);
}

.about-footnote {
  margin: 14px 0 0;
  color: #1d2434;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
}

.about-visual {
  position: relative;
  border-radius: 18px;
  padding: 14px 14px 10px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #2a2c30 0%, #1a1c21 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #f7f8fb;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-badges i {
  color: #f5be12;
}

.about-visual img {
  width: 100%;
  max-width: 460px;
  margin: 10px auto 0;
  display: block;
  object-fit: contain;
  transform: translateY(4px) scale(1.08);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

.services-section {
  margin-top: 30px;
  padding: clamp(18px, 2.8vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fff9e7 100%);
  border: 1px solid rgba(27, 32, 44, 0.08);
  box-shadow: 0 16px 32px rgba(17, 22, 30, 0.1);
}

.services-eyebrow {
  margin: 0;
  color: #6a7388;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.services-title {
  margin: 8px 0 0;
  color: #121722;
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.04;
}

.services-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(27, 32, 44, 0.08);
  border-radius: 24px;
  padding: 14px 14px 12px;
  box-shadow: 0 10px 20px rgba(17, 22, 30, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 4px auto 10px;
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
  border-radius: 50%;
  background: #1f2229;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3.1s ease-in-out infinite;
}

.service-card h2 {
  margin: 0;
  color: #1a2232;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.3;
}

.service-card p {
  margin: 10px 0 0;
  color: #3b4458;
  font-size: 12px;
  line-height: 1.56;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(243, 159, 5, 0.6);
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(17, 22, 30, 0.14);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  background: #f2c316;
  color: #1f2229;
  animation: none;
  transform: scale(1.08);
}

.choose-section {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px 26px;
  align-items: start;
}

.choose-title {
  margin: 0;
  color: #121826;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.2px;
}

.choose-list {
  display: grid;
  gap: 18px;
}

.choose-item {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.choose-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f5f7fb;
  font-size: 32px;
  background: #23252b;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  animation: icon-bob 3s ease-in-out infinite;
}

.choose-copy h3 {
  margin: 0;
  color: #0f1624;
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.02;
}

.choose-copy p {
  margin: 6px 0 0;
  color: #252d3d;
  font-size: clamp(13px, 1.0vw, 16px);
  line-height: 1.4;
}

.choose-item:hover,
.choose-item:focus-within {
  background: #fff6d8;
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(18, 24, 38, 0.12);
}

.choose-item:hover .choose-icon,
.choose-item:focus-within .choose-icon {
  background: #f39f05;
  color: #121826;
  animation: none;
  transform: scale(1.04);
}

.site-footer {
  margin-top: 34px;
  padding: 16px 0 0;
  border-radius: 24px 24px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
}

.site-footer.container-fluid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.footer-links {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 10px 14px 22px;
}

.footer-links a {
  color: #ffffff;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 300;
  text-decoration: none;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #f5be12;
}

.footer-bottom-bar {
  background: linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  padding: 8px 12px;
  border-top: 1px solid rgba(248, 250, 252, 0.15);
}

.footer-copyright {
  margin: 0;
  color: #111111;
  font-size: clamp(9px, 0.85vw, 12px);
  font-weight: 500;
  letter-spacing: 0.1px;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-bottom-bar {
    padding: 8px 10px;
  }

  .footer-copyright {
    font-size: 8px;
    white-space: nowrap;
  }
}

.footer-copyright strong {
  font-weight: 800;
}

.footer-copyright a {
  color: #111111;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-copyright a:hover,
.footer-copyright a:focus-visible {
  color: #b06c00;
}

.choose-item:hover .choose-copy h3,
.choose-item:focus-within .choose-copy h3 {
  color: #111827;
}

.choose-item:hover .choose-copy p,
.choose-item:focus-within .choose-copy p {
  color: #3d2a00;
}

.testimonials-section {
  margin-top: 34px;
}

.testimonials-title {
  margin: 0;
  color: #121826;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.testimonial-carousel {
  margin-top: 16px;
  max-width: 1120px;
  position: relative;
}

.testimonial-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
}

.testimonial-page {
  flex: 0 0 50%;
  display: flex;
  scroll-snap-align: start;
}

.testimonial-page .testimonial-card {
  width: 100%;
}

.testimonial-card {
  margin-top: 0;
  width: auto;
  max-width: none;
  height: auto;
  min-height: 220px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(229, 231, 235, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(245, 190, 18, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  position: relative;
}

.avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.avatar-circle::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #f5be12, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  margin: 0 0 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}

.user-rating {
  display: flex;
  gap: 3px;
  color: #f5be12;
  font-size: 12px;
  filter: drop-shadow(0 2px 4px rgba(245, 190, 18, 0.2));
}

.post-date {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  background: #f9fafb;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
}

.card-body {
  flex: 1;
  margin-bottom: 20px;
  position: relative;
}

.card-body p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.posted-on {
  color: #9ca3af;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #374151;
  font-size: 12px;
  font-weight: 700;
  background: #f9fafb;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.testimonial-card:hover .platform-logo {
  background: #f3f4f6;
}

.platform-logo i {
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  position: static;
  justify-content: flex-start;
}

.testimonial-dot {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 32, 44, 0.24);
  padding: 0;
  cursor: pointer;
  background: rgba(27, 32, 44, 0.24);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 1;
  text-indent: -999px;
}

.testimonial-dot.active,
.testimonial-dot[aria-current="true"] {
  background: #f2c316;
  border-color: #f2c316;
  transform: scale(1.08);
  box-shadow: 0 0 0 4px rgba(242, 195, 22, 0.26);
}

.testimonial-dot:hover {
  background: rgba(27, 32, 44, 0.44);
  border-color: rgba(27, 32, 44, 0.5);
}

.testimonial-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 34, 50, 0.22);
}

.testimonial-arrow {
  width: 46px;
  opacity: 1;
}

/* Hide arrows on mobile and small tablets */
@media (max-width: 768px) {
  .testimonial-arrow {
    display: none;
  }
}

.testimonial-arrow.carousel-control-prev {
  left: -24px;
}

.testimonial-arrow.carousel-control-next {
  right: -24px;
}

.testimonial-arrow-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: #1d2431;
  background: #f2c316;
  border: 1px solid rgba(29, 36, 49, 0.12);
  box-shadow: 0 10px 18px rgba(17, 22, 30, 0.2);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-arrow:hover .testimonial-arrow-icon {
  background: #e4ad03;
  transform: translateY(-1px);
}

.testimonial-arrow:focus-visible {
  outline: none;
}

.testimonial-arrow:focus-visible .testimonial-arrow-icon {
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.35), 0 10px 18px rgba(17, 22, 30, 0.2);
}


.queries-section {
  margin-top: 34px;
}

.queries-title {
  margin: 0;
  color: #121826;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.queries-subtitle {
  margin: 6px 0 0;
  color: #495267;
  font-size: clamp(14px, 1.2vw, 17px);
}

.queries-wrap {
  margin-top: 14px;
  max-width: 980px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.queries-card {
  margin-top: 0;
  max-width: 100%;
  padding: 24px 20px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, #262a33 0%, #1b1f28 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 30px rgba(14, 18, 24, 0.22);
}

.queries-visual {
  align-self: stretch;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 8px;
}

.queries-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.queries-content {
  min-width: 0;
}

.queries-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
}

.queries-form {
  display: grid;
  gap: 12px;
}

.queries-form input,
.queries-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: #ffffff;
  color: #2a2e37;
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Keep form controls consistent across booking and query forms */
.booking-form input,
.booking-form select,
.queries-form input,
.queries-form textarea {
  font-size: 13px;
}

.queries-form input {
  height: 48px;
}

.queries-form textarea {
  height: 104px;
  resize: none;
  padding-top: 12px;
}

.queries-form input::placeholder,
.queries-form textarea::placeholder {
  color: #6a7183;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #999;
}

.queries-form input:focus,
.queries-form textarea:focus {
  outline: none;
  border-color: #f2c316;
  box-shadow: 0 0 0 3px rgba(242, 195, 22, 0.18);
}

.queries-form button {
  width: 114px;
  height: 42px;
  border: 0;
  background: #f2c316;
  color: #111111;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.queries-form button:hover {
  background: #e8b806;
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(232, 184, 6, 0.3);
}


.hero-copy {
  position: relative;
  padding: clamp(16px, 2.8vw, 30px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 520px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.45), transparent 34%),
    linear-gradient(130deg, #f39f05 0%, #ffc40c 58%, #ffd748 100%);
  box-shadow: var(--shadow-soft);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -22% -40% 12%;
  height: 55%;
  border-radius: 55% 45% 0 0;
  background: rgba(255, 255, 255, 0.24);
}

.eyebrow,
h1,
.subtitle,
.hero-points,
.call-box,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-title-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2.6vw, 28px);
}

.hero-title-text {
  min-width: 0;
}

.hero-logo-video {
  width: clamp(88px, 13vw, 168px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: transparent;
  border: none;
  box-shadow: none;
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.eyebrow {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.5px;
  max-width: none;
  white-space: nowrap;
}

.subtitle {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.93);
  max-width: 47ch;
  font-size: 15px;
  line-height: 1.55;
}

.hero-points {
  margin-top: 20px;
  display: grid;
  gap: 8px;
}

.hero-points p {
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
}

.call-box {
  margin-top: 26px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #151922;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.call-box span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.call-box strong {
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1;
}

.hero-art {
  margin-top: -18px;
  display: grid;
  justify-items: center;
  gap: 0;
}

.hero-art-static {
  margin-top: 20px;
}

.taxi-pill {
  display: none;
}

.car-showcase {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.car-showcase-static {
  position: relative;
  width: min(480px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-carousel {
  position: relative;
  width: min(760px, 100%);
  height: clamp(190px, 25vw, 270px);
  overflow: visible;
}

.car-carousel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: clamp(180px, 32vw, 320px);
  height: clamp(20px, 4vw, 34px);
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 24, 31, 0.4) 0%, rgba(20, 24, 31, 0) 72%);
  pointer-events: none;
}

.car-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform-origin: center bottom;
  opacity: 0;
  transform: translateX(12px) scale(1);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.car-slide.active {
  opacity: 1;
  transform: translateX(0) translateY(-1px) scale(1);
  animation: car-float 3.2s ease-in-out infinite;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
}

.hero-car-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.3));
  animation: car-float 3.2s ease-in-out infinite;
}

@keyframes car-float {

  0%,
  100% {
    transform: translateX(0) translateY(-1px) scale(1);
  }

  50% {
    transform: translateX(0) translateY(-3px) scale(1);
  }
}

.car-name {
  margin: 0;
  margin-top: -4px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 18px rgba(20, 24, 31, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  white-space: nowrap;
}

.booking-card {
  --booking-accent: var(--brand);
  --booking-accent-strong: var(--brand-strong);
  --booking-accent-soft: rgba(245, 190, 18, 0.18);
  --booking-accent-ring: rgba(245, 190, 18, 0.22);
  padding: 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #242730 0%, #171a22 100%);
  box-shadow:
    0 20px 30px rgba(18, 18, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.booking-card h2 {
  margin: 0 0 18px;
  text-align: center;
  color: #ffffff;
  font-size: clamp(22px, 1.5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.form-tagline {
  margin: -8px 0 14px;
  text-align: center;
  color: rgba(236, 240, 248, 0.9);
  font-size: 14px;
  line-height: 1.45;
}

.trip-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.trip-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  padding: 0 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #f4f6fb;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trip-tab i {
  font-size: 13px;
  display: inline-block;
  animation: icon-pulse-soft 2.4s ease-in-out infinite;
}

@keyframes icon-bob {

  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes icon-pulse-soft {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {

  .social a i,
  .about-list i,
  .service-icon,
  .choose-icon,
  .trip-tab i {
    animation: none;
  }
}

.trip-tab:hover {
  border-color: var(--booking-accent);
}

.trip-tab.active {
  color: #1a202b;
  background: var(--booking-accent);
  border-color: transparent;
}

.trip-tab:hover i,
.trip-tab.active i {
  animation: none;
}

.booking-form {
  display: block;
}

.trip-panel {
  display: grid;
  gap: 11px;
}

.trip-panel[hidden] {
  display: none;
}

.js-enabled .vehicle-select-native {
  position: static;
  width: 100%;
  height: 48px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid #e3e7ee;
  overflow: visible;
  clip: auto;
}

.vehicle-picker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-option {
  width: 100%;
  min-height: 90px;
  padding: 8px 6px;
  border: 1px solid var(--booking-accent-ring);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.vehicle-option img {
  width: 100%;
  max-width: 90px;
  height: 44px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
}

.vehicle-option span {
  color: #f1f4fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
  line-height: 1.2;
}

.vehicle-option:hover {
  border-color: var(--booking-accent);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.vehicle-option.active {
  border-color: var(--booking-accent);
  background: var(--booking-accent-soft);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

.vehicle-option:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
}

.car-confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 11, 16, 0.65);
  backdrop-filter: blur(3px);
}

.car-confirm-dialog {
  --modal-accent: var(--brand);
  --modal-accent-strong: var(--brand-strong);
  width: min(420px, 100%);
  border-radius: 14px;
  padding: 18px 16px 14px;
  background: linear-gradient(180deg, #242730 0%, #1b1e26 100%);
  border: 1px solid var(--modal-accent);
  box-shadow: 0 18px 34px rgba(10, 12, 18, 0.36);
  text-align: center;
}

.car-confirm-dialog h3 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
}

.car-confirm-dialog img {
  width: min(180px, 80%);
  height: 90px;
  margin-top: 10px;
  object-fit: contain;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.34));
}

.car-confirm-dialog p {
  margin: 10px 0 0;
  color: #e9edf5;
  font-size: 14px;
}

.car-confirm-details {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.car-confirm-details li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.car-confirm-details span {
  color: #d6deec;
  font-size: 13px;
  font-weight: 600;
}

.car-confirm-details strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.car-confirm-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.car-confirm-btn {
  min-width: 108px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.car-confirm-btn.secondary {
  color: #f1f4fb;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.car-confirm-btn.primary {
  color: #1a202b;
  background: var(--modal-accent);
}

.car-confirm-btn.primary:hover {
  background: var(--modal-accent-strong);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.booking-form button {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 12px 14px;
  resize: vertical;
  color: #22293a;
  background: #f6f7f9;
  border: 1px solid #e3e7ee;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form textarea {
  min-height: 96px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #848b99;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--booking-accent);
  box-shadow: 0 0 0 3px var(--booking-accent-ring);
  background: #ffffff;
}

.choice-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f2f4f8;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.choice-row input[type="radio"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.choice-row input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--booking-accent);
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.booking-form button {
  background: var(--booking-accent);
  color: #1a202b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.booking-form button:hover {
  background: var(--booking-accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 8px 16px var(--booking-accent-ring);
}

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

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    top: 10px;
    width: calc(100% - 20px);
    padding: 14px 16px 6px;
  }

  .brand {
    padding: 4px 6px;
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .topbar.menu-open .menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    width: 100%;
    font-size: 14px;
    padding: 7px 0;
  }

  .app-download-section {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .app-download-content {
    margin-left: 0;
    order: 1;
  }

  .app-download-phone {
    order: 2;
  }

  .app-download-content p {
    max-width: 60ch;
  }

  .app-badge-row {
    justify-content: center;
  }

  .social {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    padding-top: 2px;
  }

  .topbar.menu-open .social {
    display: flex;
    padding-bottom: 8px;
  }

  .topbar.menu-open .menu-toggle span:nth-child(1) {
    top: 22px;
    transform: rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(6px);
  }

  .topbar.menu-open .menu-toggle span:nth-child(3) {
    top: 22px;
    transform: rotate(-45deg);
  }

  .topbar.menu-open .menu-toggle {
    background: #1b202c;
    border-color: rgba(255, 255, 255, 0.24);
  }

  .topbar.menu-open .menu-toggle span {
    background: #ffffff;
  }

  body.menu-open-lock {
    overflow: hidden;
  }

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

  .hero-copy {
    min-height: 460px;
  }

  .booking-card {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }

  .about-section {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-content {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 190, 18, 0.5);
    padding-right: 0;
    padding-bottom: 12px;
  }

  .about-visual {
    min-height: 260px;
  }

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

  .testimonial-card {
    max-width: 100%;
  }

  .queries-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding-bottom: 3px;
  }

  .page-shell {
    padding: 110px 12px 0;
  }

  .menu {
    padding: 10px;
  }

  .app-download-section {
    margin: 18px 0 24px;
    padding: 14px;
    gap: 14px;
  }

  .phone-mockup {
    width: min(200px, 65vw);
  }

  .app-download-content h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .app-download-content p {
    font-size: 16px;
    margin-top: 10px;
  }

  .app-download-group {
    margin-top: 16px;
  }

  .app-download-group h3 {
    font-size: 27px;
    margin-bottom: 8px;
  }

  .store-badge {
    border-radius: 8px;
  }

  .store-badge img {
    width: 180px;
    border-radius: 8px;
  }

  .hero-copy {
    min-height: 0;
    border-radius: 20px;
    padding: 16px 12px 14px;
  }

  .eyebrow {
    font-size: 22px;
  }

  h1 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .subtitle {
    font-size: 15px;
  }

  .hero-title-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-logo-video {
    width: clamp(80px, 24vw, 120px);
    display: block;
    margin: 8px auto 0;
    mix-blend-mode: screen;
    opacity: 1;
    visibility: visible;
  }

  .call-box strong {
    font-size: clamp(22px, 8vw, 34px);
  }

  .car-carousel {
    width: min(560px, 100%);
    height: clamp(150px, 44vw, 200px);
  }

  .car-showcase {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hero-art {
    margin-top: -12px;
  }

  .car-slide.active {
    transform: translateX(0) translateY(-2px) scale(1.03);
    animation: car-float-mobile 3s ease-in-out infinite;
  }

  @keyframes car-float-mobile {

    0%,
    100% {
      transform: translateX(0) translateY(-2px) scale(1.03);
    }

    50% {
      transform: translateX(0) translateY(-4px) scale(1.03);
    }
  }

  .booking-card {
    border-radius: 12px;
    padding: 18px 14px;
  }

  .booking-card h2 {
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .form-tagline {
    margin: -6px 0 12px;
    font-size: 13px;
  }

  .trip-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .trip-tab {
    height: 40px;
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
  }

  .booking-form input,
  .booking-form select,
  .booking-form button {
    height: 44px;
    font-size: 15px;
  }

  .vehicle-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vehicle-option {
    min-height: 84px;
  }

  .vehicle-option img {
    max-width: 84px;
    height: 40px;
  }

  .choice-row label {
    font-size: 16px;
  }

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

  .booking-form button {
    font-size: 16px;
  }

  .about-section {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .about-eyebrow {
    font-size: 12px;
  }

  .about-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .about-subtitle {
    font-size: 17px;
  }

  .about-lead {
    font-size: 15px;
  }

  .about-list li {
    padding: 9px 10px;
  }

  .about-list i {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .about-list span,
  .about-footnote {
    font-size: 14px;
  }

  .about-visual {
    padding: 10px 10px 8px;
    min-height: 220px;
  }

  .about-badges {
    gap: 6px;
  }

  .about-badges span {
    height: 28px;
    padding: 0 9px;
    font-size: 11px;
  }

  .about-visual img {
    transform: translateY(3px) scale(1.06);
  }

  .services-section {
    margin-top: 16px;
    border-radius: 16px;
    padding: 16px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .services-title {
    font-size: clamp(24px, 9vw, 34px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 32, 44, 0.08);
    box-shadow: 0 10px 18px rgba(17, 22, 30, 0.08);
    border-radius: 20px;
    padding: 12px 10px 10px;
  }

  .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 8px;
    font-size: 44px;
  }

  .service-card h2 {
    font-size: clamp(26px, 7.2vw, 34px);
  }

  .service-card p {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.4;
  }

  .choose-section {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .choose-title {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 0.98;
  }

  .choose-list {
    gap: 12px;
  }

  .choose-item {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .choose-icon {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }

  .choose-copy h3 {
    font-size: clamp(18px, 5.2vw, 26px);
  }

  .choose-copy p {
    margin-top: 5px;
    font-size: clamp(13px, 3.8vw, 16px);
    line-height: 1.4;
  }

  .site-footer {
    margin-top: 22px;
    padding: 14px 0 0;
    border-radius: 14px 14px 0 0;
  }

  .footer-links {
    gap: 18px;
    padding: 4px 12px 18px;
  }

  .footer-links a {
    font-size: clamp(24px, 7.5vw, 32px);
  }

  .footer-bottom-bar {
    padding: 8px 10px;
  }

  .footer-copyright {
    font-size: clamp(11px, 3.2vw, 14px);
  }

  .testimonials-section {
    margin-top: 22px;
  }

  .testimonials-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .testimonial-carousel {
    margin-top: 14px;
  }

  .testimonial-viewport {
    padding-bottom: 4px;
  }

  .testimonial-track {
    gap: 12px;
  }

  .testimonial-page {
    flex-basis: 100%;
  }

  .testimonial-card {
    margin-top: 0;
    height: 210px;
    border-radius: 14px;
  }

  .testimonial-top-band {
    height: 64px;
  }

  .testimonial-avatar {
    width: 70px;
    height: 70px;
    margin: -36px 0 0 16px;
    font-size: 42px;
    box-shadow: -5px 5px 0 #1f2229;
  }

  .testimonial-content {
    padding: 10px 14px 14px;
    height: calc(100% - 112px);
    row-gap: 8px;
  }

  .testimonial-content h3 {
    font-size: clamp(18px, 5vw, 22px);
    min-height: 2.2em;
  }

  .testimonial-content p {
    font-size: clamp(12px, 3.4vw, 15px);
    -webkit-line-clamp: 3;
  }

  .testimonial-quote {
    margin-top: 8px;
    font-size: 22px;
  }

  .queries-section {
    margin-top: 22px;
  }

  .queries-title {
    font-size: clamp(24px, 8.2vw, 32px);
  }

  .queries-subtitle {
    margin-top: 8px;
    font-size: clamp(15px, 4.8vw, 18px);
  }

  .queries-card {
    padding: 16px 12px 12px;
    border-radius: 14px;
  }

  .queries-wrap {
    margin-top: 14px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .queries-visual {
    max-width: 100%;
  }

  .queries-visual img {
    max-height: 260px;
  }

  .queries-card h3 {
    font-size: clamp(22px, 8vw, 28px);
  }

  .queries-form {
    gap: 10px;
  }

  .queries-form input,
  .queries-form textarea {
    font-size: 16px;
    padding: 0 12px;
  }

  .queries-form input {
    height: 44px;
  }

  .queries-form textarea {
    height: 96px;
    padding-top: 10px;
  }

  .queries-form button {
    width: 102px;
    height: 40px;
    font-size: 15px;
  }
}

@media (min-width: 1280px) {
  .page-shell {
    max-width: 1360px;
    padding: 128px 24px 0;
  }

  .topbar.container-fluid {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1360px, calc(100% - 48px));
    border-radius: 16px;
    padding: 18px 30px 8px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.22fr) minmax(420px, 460px);
    gap: clamp(30px, 3.4vw, 56px);
  }

  .car-carousel {
    width: min(860px, 100%);
    height: clamp(220px, 24vw, 300px);
  }

  .vehicle-option img {
    max-width: 124px;
    height: 64px;
  }

  .hero-copy {
    min-height: 700px;
    border-radius: 32px;
  }

  .booking-card {
    border-radius: 20px;
    padding: 30px 24px;
  }

  .testimonials-section {
    margin-top: 40px;
  }

  .testimonial-carousel {
    max-width: 1120px;
  }

  .testimonial-card {
    height: 210px;
  }

  .queries-section {
    margin-top: 40px;
  }

  .queries-wrap {
    max-width: 1120px;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 22px;
  }

  .queries-card {
    padding: 28px 24px 24px;
  }

  .queries-visual img {
    max-height: 480px;
  }

  .site-footer {
    margin-top: 40px;
    padding: 16px 0 0;
  }

  .site-footer.container-fluid {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.brand-text {
  font-size: clamp(16px, 1.1vw, 22px);
  letter-spacing: 0.6px;
}

.menu a,
.hero-points p,
.service-card p,
.choose-copy p,
.about-lead,
.queries-subtitle,
.app-download-content p,
.booking-form input,
.booking-form select,
.booking-form button,
.queries-form input,
.queries-form textarea,
.queries-form button {
  font-size: 14px;
}

p {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 10px;
  color: #111827;
  letter-spacing: 0.02em;
}

h1,
.about-title,
.services-title,
.choose-title,
.testimonials-title,
.queries-title,
#app-download-title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12;
}

.booking-card h2 {
  font-size: clamp(22px, 2.1vw, 30px);
}

.app-download-group h3 {
  font-size: 22px;
}

.store-badge-text small {
  font-size: 8px;
}

.store-badge-text strong {
  font-size: 16px;
}

@media (max-width: 768px) {
  .brand-text {
    font-size: clamp(12px, 3.6vw, 15px);
  }

  h1 {
    font-size: clamp(18px, 5.6vw, 24px);
  }

  .about-title,
  .services-title,
  .choose-title,
  .testimonials-title,
  .queries-title,
  #app-download-title {
    font-size: clamp(16px, 5vw, 21px);
  }

  .app-download-group h3 {
    font-size: 20px;
  }
}

/* Phone alignment fix (final override) */
@media (max-width: 480px) {
  .topbar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px 12px;
    align-items: center;
  }

  .brand {
    gap: 8px;
    padding: 0;
    min-width: 0;
  }

  .topbar .brand-mark {
    width: 40px;
    height: 40px;
  }

  .topbar .brand-text {
    font-size: 18px;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .page-shell {
    padding-top: 92px;
  }

  .hero-copy {
    border-radius: 20px;
    padding: 14px 10px 12px;
  }

  .hero-copy::before {
    inset: auto -8% -34% -8%;
    height: 52%;
    border-radius: 50% 50% 0 0;
  }

  .hero-title-row {
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-title-text {
    flex: 1;
    min-width: 0;
  }

  .hero-logo-video {
    width: 78px;
    margin: 0;
  }

  h1 {
    white-space: normal;
  }

  .subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
  }

  .call-box {
    max-width: 220px;
  }

  .hero-art {
    margin-top: 6px;
  }

  .car-showcase {
    margin-top: 4px;
  }

  .car-carousel {
    width: 100%;
    height: clamp(140px, 48vw, 182px);
  }
}

/* Airport route fields: distinct pickup/drop icons + alignment (final override) */
#airport-pickup,
#airport-drop {
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
  padding-left: 40px !important;
}

#airport-pickup {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Cpath d='M12 7v6'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E") !important;
  margin-bottom: 10px;
}

#airport-drop {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Cpath d='m9 10 2 2 4-4'/%3E%3C/svg%3E") !important;
}

#airport-pickup:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Cpath d='M12 7v6'/%3E%3Cpath d='M9 10h6'/%3E%3C/svg%3E") !important;
}

#airport-drop:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%23f5be12' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Cpath d='m9 10 2 2 4-4'/%3E%3C/svg%3E") !important;
}

/* Toast success: user-friendly green emphasis (final override) */
.ux-toast.toast-success .ux-toast-icon {
  background: rgba(34, 197, 94, 0.22) !important;
  color: #22c55e !important;
}

.ux-toast.toast-success .ux-toast-title {
  color: #22c55e !important;
}

.ux-toast.toast-success .ux-toast-btn {
  background: linear-gradient(135deg, #22c55e, #16a34a) !important;
  color: #ffffff !important;
}

/* Loader label for booking processing */
.page-loader {
  flex-direction: column !important;
  gap: 8px;
}

.page-loader-text {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

/* Toast layout fix: remove extra blank space for centered success/error cards */
.ux-toast.toast-center {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding-bottom: 14px !important;
}

.ux-toast.toast-center .ux-toast-body {
  height: auto !important;
  min-height: 0 !important;
  flex: 0 0 auto !important;
}

.ux-toast.toast-center .ux-toast-message {
  min-height: 0 !important;
  margin-bottom: 4px !important;
}

/* Medium text size for user-friendly centered toasts */
.ux-toast.toast-center .ux-toast-title {
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.ux-toast.toast-center .ux-toast-message {
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* Force centered position on page for booking result toasts */
.ux-toast.toast-center {
  left: 50% !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
}

.ux-toast.toast-center.show {
  transform: translate(-50%, -50%) !important;
}

/* Extra bigger centered toast (mobile-friendly) */
.ux-toast.toast-center {
  width: min(92vw, 420px) !important;
  padding: 20px 18px 18px !important;
  border-radius: 14px !important;
}

.ux-toast.toast-center .ux-toast-icon {
  width: 44px !important;
  height: 44px !important;
  font-size: 20px !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.ux-toast.toast-center .ux-toast-title {
  font-size: 18px !important;
  line-height: 1.3 !important;
}

.ux-toast.toast-center .ux-toast-message {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

.ux-toast.toast-center .ux-toast-btn {
  font-size: 12px !important;
  padding: 9px 24px !important;
}

/* Booking tab loader (in-card taxi loading) */
.booking-card {
  position: relative;
}

.booking-tab-loader {
  position: absolute;
  inset: 84px 10px 10px 10px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.72);
  z-index: 30;
}

.booking-tab-loader.show {
  display: flex;
}

.booking-tab-loader-text {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.booking-tab-loader-anim {
  width: min(72vw, 230px);
  height: min(42vw, 140px);
  max-height: 160px;
  display: block;
  overflow: visible;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1;
}

/* Small-screen alignment fix: welcome section + trip tabs */
@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-copy,
  .booking-card {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-copy {
    padding: 14px 12px !important;
    text-align: left !important;
  }

  .hero-title-row {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }

  .hero-title-text,
  .subtitle {
    max-width: 100% !important;
  }

  .trip-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
  }

  .trip-tab {
    width: 100% !important;
    min-width: 0 !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 8px 6px !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
  }
}

/* Keep quick-booking phone number in one line */
.call-box {
  width: fit-content !important;
  max-width: none !important;
}

.call-box strong {
  white-space: nowrap !important;
  font-size: clamp(28px, 4.8vw, 36px) !important;
  letter-spacing: 0.2px;
}

/* Keep input icons visible even after browser autofill */
.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus,
.queries-form input:-webkit-autofill,
.queries-form input:-webkit-autofill:hover,
.queries-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111827 !important;
  box-shadow: 0 0 0 1000px #e6ecf5 inset !important;
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
  padding-left: 40px !important;
}

.booking-form input[id$='-phone']:-webkit-autofill,
.queries-form input[id$='-phone']:-webkit-autofill,
#contact-phone:-webkit-autofill {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
}

.booking-form input[id$='-name']:-webkit-autofill,
.queries-form input[id$='-name']:-webkit-autofill,
#contact-name:-webkit-autofill {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
}

.booking-form input[type='email']:-webkit-autofill,
.queries-form input[type='email']:-webkit-autofill,
#contact-email:-webkit-autofill {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") !important;
}

#local-pickup:-webkit-autofill,
#local-drop:-webkit-autofill,
#outstation-from:-webkit-autofill,
#outstation-drop:-webkit-autofill,
#airport-location:-webkit-autofill,
#airport-pickup:-webkit-autofill,
#airport-drop:-webkit-autofill,
#rental-pickup:-webkit-autofill,
#rental-drop:-webkit-autofill {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") !important;
}

/* Final contact icon override (normal + autofill) */
#contact-name,
#contact-phone,
#contact-email {
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
  padding-left: 40px !important;
}

#contact-phone,
#contact-phone:-webkit-autofill,
#contact-phone:-webkit-autofill:hover,
#contact-phone:-webkit-autofill:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") !important;
}

#contact-name,
#contact-name:-webkit-autofill,
#contact-name:-webkit-autofill:hover,
#contact-name:-webkit-autofill:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") !important;
}

#contact-email,
#contact-email:-webkit-autofill,
#contact-email:-webkit-autofill:hover,
#contact-email:-webkit-autofill:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") !important;
}

/* Final autofill icon fix (force icons on all autofill states) */
.booking-form input[id$='-phone'],
.queries-form input[id$='-phone'],
#contact-phone { --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }

.booking-form input[id$='-name'],
.queries-form input[id$='-name'],
#contact-name { --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E"); }

.booking-form input[type='email'],
.queries-form input[type='email'],
#contact-email { --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' ry='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E"); }

#local-pickup,
#local-drop,
#outstation-from,
#outstation-drop,
#airport-location,
#airport-pickup,
#airport-drop,
#rental-pickup,
#rental-drop { --field-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='18' height='18' fill='none' stroke='%236a7388' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 1 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); }

.booking-form input:-webkit-autofill,
.booking-form input:-webkit-autofill:hover,
.booking-form input:-webkit-autofill:focus,
.booking-form input:-webkit-autofill:active,
.queries-form input:-webkit-autofill,
.queries-form input:-webkit-autofill:hover,
.queries-form input:-webkit-autofill:focus,
.queries-form input:-webkit-autofill:active,
.booking-form input:autofill,
.queries-form input:autofill {
  background-image: var(--field-icon) !important;
  background-repeat: no-repeat !important;
  background-size: 16px 16px !important;
  background-position: 12px center !important;
  padding-left: 40px !important;
  -webkit-text-fill-color: #111827 !important;
  transition: background-color 99999s ease-out 0s, color 99999s ease-out 0s !important;
  -webkit-box-shadow: 0 0 0 1000px #e6ecf5 inset !important;
  box-shadow: 0 0 0 1000px #e6ecf5 inset !important;
}

/* Home enquiry loader overlay alignment */
.queries-card {
  position: relative;
}

.queries-card .booking-tab-loader {
  inset: 10px !important;
}

/* Contact loader should appear inline only before the submit button */
#contact-tab-loader {
  position: static !important;
  inset: auto !important;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin: 6px 0 4px;
  border-radius: 0;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  z-index: auto;
}

#contact-tab-loader.show {
  display: flex !important;
}

#contact-tab-loader .booking-tab-loader-text {
  font-size: 12px;
  color: #ffffff;
}

/* Final fix: mobile header should not reserve space for collapsed menu */
@media (max-width: 1100px) {
  .topbar .menu {
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-width: 0 !important;
  }

  .topbar.menu-open .menu {
    max-height: 320px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 12px !important;
    margin-top: 8px !important;
    border-width: 1px !important;
  }
}
