.package-card,
.destination-card,
.vehicle-card,
.route-card,
.attraction-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--ease), box-shadow var(--ease);
}

.package-card:hover,
.destination-card:hover,
.vehicle-card:hover,
.route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.card-title {
  font-size: 1.05rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.highlight-row {
  color: var(--muted);
  font-size: 0.86rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.price-row strong {
  font-size: 1.05rem;
}

.vehicle-card .media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, #e8eef6, #d5deea);
  position: relative;
}

.badge-media {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(17, 19, 24, 0.82);
  color: #fff;
}

.package-card .media {
  position: relative;
}

.ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-from {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
}

.feature-list li {
  list-style: none;
}

.feature-list {
  margin: 0;
  padding: 0;
}

.check {
  color: var(--accent);
  font-weight: 800;
  margin-right: 6px;
}

.trust-grid,
.stats-lite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.trust-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.stepper {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 8px 0 16px;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e2e8f0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.85rem;
}

.step-dot.active {
  background: var(--secondary);
  color: var(--primary);
}

.step-dot.done {
  background: var(--primary);
  color: #fff;
}

.booking-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.type-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  min-height: 88px;
  padding: 14px;
  text-align: left;
  background: #fff;
}

.type-card strong {
  display: block;
}

.type-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.type-card.selected,
.vehicle-option.selected,
.location-item.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 31, 61, 0.12);
}

.location-item,
.search-item {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: none;
}

.location-item small,
.search-item small {
  color: var(--muted);
}

.pin {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--secondary-100);
  color: var(--primary);
  flex-shrink: 0;
}

.passenger-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 0;
}

.passenger-stepper button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.4rem;
}

.passenger-stepper output {
  font-size: 2rem;
  font-weight: 800;
  min-width: 48px;
  text-align: center;
}

.summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--border);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.summary-row span {
  color: var(--muted);
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  z-index: 77;
  transform: translateX(100%);
  transition: transform var(--ease);
  padding: 20px 16px 32px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--border);
  font-weight: 650;
}

.filter-bar {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding: 4px 0 12px;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar {
  display: none;
}

.itinerary-day {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.day-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.list-checks {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.list-checks li {
  list-style: none;
  padding-left: 4px;
}

.hero-booking .field-control svg {
  flex-shrink: 0;
}

.search-head {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.search-head input {
  flex: 1;
  min-height: 48px;
  border: 0;
  outline: none;
}

.search-results {
  overflow: auto;
  padding: 8px 16px 24px;
}

.popular-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-banner {
  background: linear-gradient(135deg, #071f3d, #0f766e);
  color: #fff;
  border-radius: 24px;
  padding: 28px 20px;
  display: grid;
  gap: 14px;
}

.cta-banner .btn-primary {
  justify-self: start;
}

.trip-connector {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  background: #f3f4f6;
  border-radius: 16px;
  padding: 12px 14px;
  margin: 12px 0 16px;
}

.trip-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}

.dot-pickup {
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 2px;
}

.dot-line {
  width: 2px;
  flex: 1;
  min-height: 22px;
  background: #c4c4c4;
  margin: 4px 0;
}

.dot-drop {
  width: 10px;
  height: 10px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
}

.trip-fields {
  display: grid;
  gap: 2px;
}

.trip-stop {
  display: grid;
  gap: 2px;
  text-align: left;
  min-height: 48px;
  padding: 8px 6px;
  background: transparent;
  border-bottom: 1px solid #e5e7eb;
}

.trip-stop:last-child {
  border-bottom: 0;
}

.trip-stop small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ride-list {
  display: grid;
  gap: 8px;
}

.ride-option {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 80px;
  padding: 10px 12px;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  text-align: left;
}

.ride-option:hover {
  background: #f8fafc;
}

.ride-option.selected,
.ride-option[aria-pressed="true"] {
  border-color: #111;
  background: #f3f4f6;
}

.ride-car {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  background: #e2e8f0;
}

.ride-copy {
  display: grid;
  gap: 2px;
}

.ride-copy strong,
.ride-copy .card-title {
  font-size: 0.98rem;
}

.ride-copy small,
.ride-option .card-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.ride-price {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.ride-price strong {
  font-size: 0.98rem;
}

.ride-price small {
  color: var(--muted);
  font-size: 0.72rem;
}

.ride-option-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.ride-sheet {
  background: #fff;
  border-radius: 24px 24px 0 0;
  padding: 8px 16px 20px;
  margin: -28px -16px 0;
  box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.12);
  position: relative;
  z-index: 2;
}

.map-stage {
  height: 168px;
  margin: 8px -16px 0;
  background:
    linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45)),
    repeating-linear-gradient(90deg, #e8eef4 0 18px, #f8fafc 18px 72px),
    repeating-linear-gradient(0deg, #e8eef4 0 18px, #eef3f8 18px 64px);
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
}

.map-pin-from {
  left: 28%;
  top: 58%;
  background: #111;
  border-radius: 2px;
}

.map-pin-to {
  left: 62%;
  top: 28%;
  border: 3px solid #111;
  border-radius: 50%;
  background: #fff;
  width: 16px;
  height: 16px;
}

.map-route {
  position: absolute;
  left: 30%;
  top: 34%;
  width: 34%;
  height: 28%;
  border: 3px solid #111;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 18px 0 0;
}

@media (min-width: 768px) {
  .ride-sheet {
    margin: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
  }

  .map-stage {
    margin: 0 0 16px;
    height: 220px;
    border-radius: 20px;
  }

  .ride-option-card {
    grid-template-columns: 120px 1fr auto;
  }
}
