/* ── Reset & Variables ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #F59E0B;
  --primary-dark: #D97706;
  --primary-light: #FEF3C7;
  --secondary: #0F172A;
  --text: #1E293B;
  --text-muted: #64748B;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-dark: #0F172A;
  --border: #E2E8F0;
  --success: #10B981;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, .12);
  --font: 'Inter', system-ui, sans-serif;
  --transition: 0.22s ease;
  --max-w: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Animations ─────────────────────────────────────────────────────────────── */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

.animate--delay {
  transition-delay: .15s;
}

.animate--delay2 {
  transition-delay: .30s;
}

.animate--delay3 {
  transition-delay: .45s;
}

.animate--in {
  opacity: 1;
  transform: none;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #000;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, .35);
}

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

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

.btn--dark {
  background: var(--secondary);
  color: #fff;
}

.btn--dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.btn--lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── Header ──────────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--secondary);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.header__top {
  background: rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: .8125rem;
  color: rgba(255, 255, 255, .75);
}

.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header__top-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.header__top-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__top-badge {
  color: var(--primary);
  font-weight: 600;
}

.header__lang {
  display: flex;
  gap: 4px;
}

.lang-btn {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  transition: all var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary);
  color: #000;
}

/* Mobile-only menu elements — hidden on desktop */
.mm-head,
.mm-cta,
.mm-footer {
  display: none;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-text-wrap {
  line-height: 1.2;
}

.nav__logo-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.nav__logo-sub {
  display: block;
  font-size: .7rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
}

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

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, .85);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
  background: rgba(255, 255, 255, .06);
}

/* dropdown */
.nav__item--has-dropdown {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  padding: 8px;
  border: 1px solid var(--border);
}

.nav__item--has-dropdown.open .nav__dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.nav__dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}

.nav__dropdown li a small {
  color: var(--text-muted);
  margin-left: auto;
  font-size: .75rem;
}

.nav__dropdown li a:hover {
  background: var(--bg-soft);
  color: var(--primary);
}

.nav__cta {
  margin-left: 8px;
}

/* mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: var(--secondary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: .28;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, .95) 45%, rgba(15, 23, 42, .55) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 80px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, .15);
  border: 1px solid rgba(245, 158, 11, .3);
  color: var(--primary);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: .03em;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.hero__title span {
  color: var(--primary);
}

.hero__desc {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 480px;
}

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .875rem;
}

.hero__trust-icon {
  color: var(--primary);
}

/* Booking card in hero */
.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.booking-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-card__title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--primary);
  border-radius: 2px;
}

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

.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: .02em;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-soft);
  transition: border-color var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background: #fff;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.trip-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.trip-tab {
  flex: 1;
  padding: 9px;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted);
  background: var(--bg-soft);
  transition: all var(--transition);
}

.trip-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
}

/* Hero card — transfer type tabs */
.hc-types {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 4px;
  border: 1.5px solid var(--border);
}

.hc-type {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  border-radius: 6px;
  border: none;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.hc-type svg {
  opacity: .55;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.hc-type:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .04);
}

.hc-type.active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
}

.hc-type.active svg {
  opacity: 1;
}

/* Hero card — passenger stepper */
.hc-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 2px;
}

.hc-counter__btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}

.hc-counter__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

#quickPaxVal {
  font-size: .9375rem;
  font-weight: 700;
  min-width: 18px;
  text-align: center;
}

/* ── Stats bar ───────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 22px 0;
  overflow: hidden;
}

.stats-ticker {
  overflow: hidden;
}

.stats-ticker__track {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hide duplicates on desktop */
.stats-ticker__track > *:nth-child(n+9) { display: none; }

@keyframes statsTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.stat {
  padding: 0 52px;
  text-align: center;
  flex-shrink: 0;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,.2);
  flex-shrink: 0;
}

.stat__number {
  font-size: 1.9rem;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.stat__label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(0, 0, 0, .65);
  margin-top: 4px;
}

/* ── Section commons ─────────────────────────────────────────────────────────── */
.section {
  padding: 40px 0;
}

.section--bg {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.section__tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 30px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 14px;
}

.section--dark .section__title {
  color: #fff;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1.0625rem;
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width .35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card:hover::before {
  width: 100%;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card__desc {
  color: var(--text-muted);
  font-size: .9375rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card__link {
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ── How it works ────────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 10px);
  right: calc(16.67% + 10px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
}

.step-card {
  text-align: center;
}

.step-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--primary-light);
}

.step-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card__desc {
  color: var(--text-muted);
  font-size: .9375rem;
}

/* ── Slider dots (mobile only) ───────────────────────────────────────────────── */
.steps-dots,
.slider-dots {
  display: none;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.steps-dot,
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.steps-dot.active,
.slider-dot.active { background: var(--primary); transform: scale(1.3); }
/* dark-bg variant */
.slider-dot--dark { background: rgba(255,255,255,.25); }
.slider-dot--dark.active { background: #fff; }

/* ── Popular routes ──────────────────────────────────────────────────────────── */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.route-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all var(--transition);
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.route-card__header {
  background: var(--secondary);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-card__cities {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.route-card__arrow {
  color: var(--primary);
  font-size: 1.2rem;
}

.route-card__body {
  padding: 18px 20px;
}

.route-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.route-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .875rem;
  color: var(--text-muted);
}

.route-card__price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.route-card__price small {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.route-card__book {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .875rem;
  transition: all var(--transition);
}

.route-card__book:hover {
  background: var(--primary);
  color: #000;
}

/* ── Map booking section ─────────────────────────────────────────────────────── */
.booking-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.booking-section__inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 28px;
  align-items: start;
}

.booking-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: sticky;
  top: 100px;
}

.booking-panel__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.booking-panel__sub {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 22px;
}

.input-with-btn {
  display: flex;
  gap: 8px;
}

.input-with-btn .form-control {
  flex: 1;
}

.input-with-btn .btn-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  color: var(--primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.input-with-btn .btn-icon:hover {
  background: var(--primary);
  color: #000;
}

.airport-quick {
  margin: 10px 0 18px;
}

.airport-quick label {
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
  margin-bottom: 8px;
}

.airport-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.airport-chip {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
}

.airport-chip:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

#vehicleCards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.vehicle-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--bg-soft);
}

.vehicle-card.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}

.vehicle-icon {
  font-size: 1.5rem;
}

.vehicle-card strong {
  font-size: .9rem;
  color: var(--text);
}

.vehicle-card .vehicle-desc {
  font-size: .8rem;
  color: var(--text-muted);
  display: block;
}

.vehicle-card .vehicle-meta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  font-size: .8rem;
  color: var(--text-muted);
}

/* map hint */
.map-hint-bar {
  background: var(--secondary);
  color: rgba(255, 255, 255, .85);
  padding: 10px 16px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-hint-bar svg {
  color: var(--primary);
  flex-shrink: 0;
}

#bookingMap {
  height: 440px;
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1.5px solid var(--border);
  border-top: none;
}

/* price result */
#priceResult {
  margin-top: 16px;
}

.price-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: var(--text-muted);
}

.spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  border-top-color: var(--primary);
  animation: spin .6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.price-card {
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-card__main {
  background: var(--primary);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price-label {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .7);
}

.price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
  margin-left: auto;
  line-height: 1;
}

.price-value small {
  font-size: .9rem;
  font-weight: 600;
}

.price-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  background: rgba(0, 0, 0, .15);
}

.price-badge--night {
  color: #000;
}

.price-card__details {
  display: flex;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.price-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  color: var(--text-muted);
}

.price-card .btn--primary {
  border-radius: 0;
  padding: 14px;
}

.price-note {
  font-size: .75rem;
  color: var(--text-muted);
  padding: 8px 16px;
  text-align: center;
}

/* map pins */
.map-pin {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.map-pin svg {
  transform: rotate(45deg);
  width: 22px;
  height: 22px;
}

.map-pin--pickup {
  background: var(--primary);
  color: #000;
}

.map-pin--dropoff {
  background: #EF4444;
  color: #fff;
}

/* ── Why us ──────────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
}

.why-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(245, 158, 11, .1);
  border: 2px solid rgba(245, 158, 11, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  transition: all var(--transition);
}

.why-card:hover .why-card__icon {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.why-card__desc {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  color: var(--text);
  font-size: .9375rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: .9375rem;
}

.testimonial-card__loc {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ── City hero (inner pages) ─────────────────────────────────────────────────── */
.city-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.city-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.city-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, .75) 40%, rgba(15, 23, 42, .2) 70%, transparent 100%);
}

.city-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.city-hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.city-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}

.city-hero__sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  max-width: 520px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .55);
  transition: color var(--transition);
}

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

.breadcrumb__sep {
  color: rgba(255, 255, 255, .3);
}

/* ── City page zones table ───────────────────────────────────────────────────── */
.zones-table {
  width: 100%;
  border-collapse: collapse;
}

.zones-table th {
  background: var(--secondary);
  color: rgba(255, 255, 255, .7);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}

.zones-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  vertical-align: middle;
}

.zones-table tr:last-child td {
  border-bottom: none;
}

.zones-table tr:hover td {
  background: var(--bg-soft);
}

.zones-table .price-col {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  white-space: nowrap;
}

.zones-table .book-col a {
  font-weight: 600;
  color: var(--primary);
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .75);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding: 64px 24px 48px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer__desc {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.footer__heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

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

.footer__links a {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
  transition: color var(--transition);
}

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

.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .65);
}

.footer__contact-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .45);
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255, 255, 255, .45);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--primary);
}

.footer__payments {
  display: flex;
  gap: 6px;
}

.payment-badge {
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .booking-panel {
    position: static;
  }

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

@media (max-width: 768px) {

  /* ── Header top bar — hide on mobile, info shown in menu ── */
  .header__top {
    display: none;
  }

  /* ── Hero mobile — form only, keep background ── */
  .hero {
    min-height: auto;
    background: var(--secondary);
  }

  .hero__bg {
    opacity: .35;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(15, 23, 42, .82) 0%, rgba(15, 23, 42, .72) 100%);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 20px 16px 28px;
    gap: 0;
  }

  /* Hide entire text/left side on mobile */
  .hero__left {
    display: none;
  }

  /* Show booking card on mobile — plain white card, no hero background */
  .hero__right {
    display: block;
    padding-top: 4px;
  }

  .booking-card {
    padding: 20px 16px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
    border: 1.5px solid var(--border);
  }

  .booking-card__title {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  /* Tighter form fields */
  .form-group {
    margin-bottom: 10px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: .9rem;
  }

  .form-label {
    font-size: .75rem;
    margin-bottom: 4px;
  }

  /* Transfer type tabs */
  .hc-type {
    font-size: .72rem;
    padding: 7px 3px;
    gap: 3px;
  }

  /* ── Mobile horizontal sliders ── */
  .services-grid,
  .why-grid,
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
  }
  .services-grid::-webkit-scrollbar,
  .why-grid::-webkit-scrollbar,
  .testimonials-grid::-webkit-scrollbar { display: none; }

  .service-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
  }
  .why-card {
    flex: 0 0 72vw;
    max-width: 260px;
    scroll-snap-align: center;
    border-radius: 14px;
    padding: 24px 20px;
    background: rgba(255,255,255,.06);
  }
  .testimonial-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  /* stats bar: enable ticker on mobile */
  .stats-ticker {
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }
  .stats-ticker__track {
    width: max-content;
    justify-content: flex-start;
    animation: statsTicker 20s linear infinite;
  }
  .stats-ticker__track:hover { animation-play-state: paused; }
  .stats-ticker__track > *:nth-child(n+9) { display: flex; }

  /* shared slider dots */
  .slider-dots { display: flex; }

  .steps-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: none;
  }
  .steps-grid::-webkit-scrollbar { display: none; }
  .steps-grid::before { display: none; }
  .step-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px 24px;
    box-shadow: 0 2px 12px rgba(15,23,42,.07);
  }
  .steps-dots { display: flex; }

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

  .footer__main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* ── Nav mobile ── */
  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--secondary);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .22s ease, transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
  }

  .nav__menu--open {
    opacity: 1;
    pointer-events: all;
    transform: none;
  }

  /* Show mobile-only elements */
  .mm-head,
  .mm-footer {
    display: flex;
  }

  /* Menu header */
  .mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    flex-shrink: 0;
  }

  .mm-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .8);
    cursor: pointer;
    transition: all var(--transition);
  }

  .mm-close:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
  }

  /* Nav items */
  .nav__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 6px 0;
    flex-shrink: 0;
  }

  .nav__list li {
    width: 100%;
  }

  .nav__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-size: .9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    justify-content: flex-start;
    width: 100%;
  }

  .nav__link--active {
    color: var(--primary);
  }

  .nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
  }

  .mm-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(245, 158, 11, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mm-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, .25);
    flex-shrink: 0;
  }

  .mm-chevron {
    margin-left: auto;
    color: rgba(255, 255, 255, .25);
    flex-shrink: 0;
    transition: transform var(--transition);
  }

  .nav__item--has-dropdown.open .mm-chevron {
    transform: rotate(180deg);
  }

  /* Dropdown in mobile */
  .nav__dropdown {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, .18);
    padding: 0;
    display: none;
  }

  .nav__item--has-dropdown.open .nav__dropdown {
    display: block;
  }

  .nav__dropdown li a {
    color: rgba(255, 255, 255, .6);
    font-size: .875rem;
    padding: 11px 20px 11px 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    justify-content: space-between;
  }

  .nav__dropdown li a small {
    color: var(--primary);
    font-size: .78rem;
  }

  .nav__dropdown li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
  }

  /* CTA */
  .mm-cta {
    display: block;
    padding: 16px 20px;
    flex-shrink: 0;
  }

  /* Footer */
  .mm-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
  }

  .mm-footer__item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
  }

  .mm-footer__item:hover {
    color: var(--primary);
  }

  .mm-footer__icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
    background: rgba(245, 158, 11, .12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mm-footer__lang {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mm-footer__lang-label {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .35);
    text-transform: uppercase;
    letter-spacing: .06em;
  }

  /* Hide desktop-only */
  .header__top-badge {
    display: none;
  }

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

  #bookingMap {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .booking-card {
    padding: 20px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BOOKING PANEL V2
═══════════════════════════════════════════════════════════════════════════════ */

/* Panel wrapper */
.bk-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
  border: 1.5px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

/* ── Transfer type tabs ── */
.bk-types {
  display: flex;
  background: var(--bg-soft);
  border-bottom: 1.5px solid var(--border);
}

.bk-type {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1.5px;
}

.bk-type svg {
  opacity: .6;
  transition: opacity var(--transition);
}

.bk-type:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .03);
}

.bk-type.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
  background: #fff;
}

.bk-type.active svg {
  opacity: 1;
}

/* ── Route section ── */
.bk-route {
  padding: 20px 20px 8px;
  position: relative;
}

.bk-route__line {
  position: absolute;
  left: 30px;
  top: 44px;
  bottom: 56px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--border) 0, var(--border) 5px, transparent 5px, transparent 9px);
}

.bk-route__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.bk-route__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 26px;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 2px currentColor;
}

.bk-route__dot--a {
  color: #22C55E;
  background: #22C55E;
}

.bk-route__dot--b {
  color: #EF4444;
  background: #EF4444;
}

.bk-route__field {
  flex: 1;
}

.bk-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 5px;
}

.bk-input-wrap {
  display: flex;
  gap: 6px;
}

.bk-input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-soft);
  outline: none;
  transition: all var(--transition);
}

.bk-input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, .12);
}

.bk-search-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.bk-search-btn:hover {
  background: var(--primary);
  color: #000;
}

/* Swap button */
.bk-swap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  margin: 6px 0 6px 0;
  position: relative;
  z-index: 2;
  align-self: center;
}

.bk-swap:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(180deg);
}

.bk-swap svg:last-child {
  margin-left: -8px;
}

/* ── Meta row (date/time/pax) ── */
.bk-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
}

.bk-meta__item {
  padding: 14px 16px;
  border-right: 1.5px solid var(--border);
}

.bk-meta__item:last-child {
  border-right: none;
}

.bk-meta__item .bk-input {
  width: 100%;
  padding: 6px 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-size: .9rem;
}

.bk-meta__item .bk-input:focus {
  box-shadow: none;
}

/* Passenger stepper */
.bk-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 3px 0;
}

.bk-counter__btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg-soft);
  font-size: 1rem;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.bk-counter__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.bk-counter__val {
  font-size: .95rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

/* ── Map wrapper ── */
.bk-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

#bookingMap {
  height: 540px;
  display: block;
}

.bk-map-hint {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: var(--secondary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: .83rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
  white-space: nowrap;
  pointer-events: none;
}

.bk-map-hint__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .3);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(34, 197, 94, .3);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .1);
  }
}

/* ── Price result card ── */
.pr-card {
  border-top: 1.5px solid var(--border);
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pr-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 12px;
  gap: 12px;
}

.pr-card__label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}

.pr-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pr-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pr-pill--night {
  background: #1e1b4b;
  color: #a5b4fc;
  border-color: #3730a3;
}

.pr-card__amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.pr-card__amount span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 3px;
}

/* Breakdown */
.pr-breakdown {
  margin: 0 20px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  overflow: hidden;
}

.pr-breakdown__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 14px;
  font-size: .84rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.pr-breakdown__row:last-child {
  border-bottom: none;
}

.pr-breakdown__row--night {
  color: #6366f1;
  background: #eef2ff;
}

.pr-breakdown__row--total {
  font-weight: 800;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
}

.pr-breakdown__row--total span:last-child {
  color: var(--primary-dark);
}

/* Actions */
.pr-actions {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .35);
}

/* Loading state */
.price-loading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  color: var(--text-muted);
}

/* ── Responsive for new panel ── */
@media (max-width: 1024px) {
  .bk-panel {
    position: static;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BOOKING MODAL
═══════════════════════════════════════════════════════════════════════════════ */
.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 15, 28, .7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.bm-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.bm-overlay.open .bm-box {
  transform: none;
}

.bm-box {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .35);
  transform: translateY(20px) scale(.98);
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
}

/* Header */
.bm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1.5px solid var(--border);
  background: var(--bg-soft);
  flex-shrink: 0;
}

.bm-header__route {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.bm-header__point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .9375rem;
  min-width: 0;
}

.bm-header__point span:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 260px;
}

.bm-header__arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

.bm-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.bm-dot--a {
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .2);
}

.bm-dot--b {
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .2);
}

.bm-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: all var(--transition);
}

.bm-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #ef4444;
}

/* Body */
.bm-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  flex: 1;
  overflow: hidden;
}

/* Map side */
.bm-map-side {
  position: relative;
}

#modalMap {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* Detail side */
.bm-detail-side {
  border-left: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Empty state */
.bm-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px 24px;
  color: var(--text-muted);
}

.bm-empty svg {
  opacity: .3;
}

.bm-empty p {
  font-size: .95rem;
  line-height: 1.6;
}

/* Error state */
.bm-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  color: #dc2626;
  background: #fef2f2;
  border-bottom: 1px solid #fecaca;
  font-size: .9rem;
}

/* Price panel */
.bm-price {
  padding: 20px;
}

.bm-price__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.bm-price__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.bm-price__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.bm-price__amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

.bm-price__amount span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}

/* Input validation states */
.bm-edit__input.bm-input--error {
  border-color: #EF4444;
  background: #fef2f2;
  animation: shake .35s ease;
}

.bm-edit__input.bm-input--ok {
  border-color: #22C55E;
  background: #f0fdf4;
}

@keyframes shake {

  0%,
  100% {
    transform: none;
  }

  20% {
    transform: translateX(-5px);
  }

  40% {
    transform: translateX(5px);
  }

  60% {
    transform: translateX(-3px);
  }

  80% {
    transform: translateX(3px);
  }
}

.bm-input-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  margin-top: 3px;
  flex-basis: 100%;
  margin-left: 34px;
}

.bm-input-hint--error {
  color: #DC2626;
}

.bm-input-hint--ok {
  color: #16A34A;
}

/* Edit fields at bottom of modal */
.bm-edit {
  padding: 16px 20px 20px;
  border-top: 1.5px solid var(--border);
  background: var(--bg-soft);
  margin-top: auto;
  flex-shrink: 0;
}

.bm-edit__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bm-edit__row+.bm-edit__row {
  margin-top: 8px;
}

.bm-edit__divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 4px 20px;
}

.bm-edit__input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font);
  outline: none;
  background: #fff;
  transition: border-color var(--transition);
}

.bm-edit__input:focus {
  border-color: var(--primary);
}

/* Modal responsive */
@media (max-width: 768px) {
  .bm-box {
    max-height: 95vh;
  }

  .bm-body {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 1fr;
  }

  .bm-detail-side {
    border-left: none;
    border-top: 1.5px solid var(--border);
  }

  #modalMap {
    min-height: 240px;
  }

  .bm-header__point span:last-child {
    max-width: 120px;
  }
}

@media (max-width: 640px) {
  .bk-meta {
    grid-template-columns: 1fr 1fr;
  }

  .bk-meta__item:nth-child(2) {
    border-right: none;
  }

  .bk-meta__item:nth-child(3) {
    grid-column: span 2;
    border-top: 1.5px solid var(--border);
    border-right: none;
  }

  .bk-type span {
    display: none;
  }

  #bookingMap {
    height: 360px;
  }

  .bk-map-hint {
    font-size: .75rem;
    padding: 7px 14px;
  }
}
/* ═══════════════════════════════════════════════════════════════════════════════
   NAV BOOKING MODAL (nb-)
═══════════════════════════════════════════════════════════════════════════════ */
.nb-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 15, 28, .72);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.nb-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nb-box {
  background: #fff;
  border-radius: var(--radius-lg, 16px);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  transform: translateY(20px) scale(.97);
  transition: transform .28s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}

.nb-overlay.open .nb-box {
  transform: none;
}

.nb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-left: 4px solid var(--amber, #F59E0B);
  background: var(--bg-soft, #f8fafc);
}

.nb-head__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark, #0f172a);
}

.nb-head__title svg {
  color: var(--amber, #F59E0B);
}

.nb-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  color: var(--text-muted, #64748b);
  line-height: 0;
  transition: background .15s, color .15s;
}

.nb-close:hover {
  background: var(--border, #e2e8f0);
  color: var(--text-dark, #0f172a);
}

.nb-body {
  padding: 20px 22px 24px;
}

.nb-body .hc-types {
  margin-bottom: 18px;
}
