/* DREAM JOURNEY — Unified booking cards and booking boxes
   Clean travel-marketplace patterns for desktop, tablet and mobile. */

:root {
  --dj-card-bg: #11151b;
  --dj-card-bg-2: #0b0e13;
  --dj-card-raised: #171c23;
  --dj-card-border: rgba(255,255,255,.10);
  --dj-card-border-gold: rgba(212,175,55,.36);
  --dj-card-text: #f7f7f5;
  --dj-card-muted: #aeb5bf;
  --dj-card-gold: #d4af37;
  --dj-card-gold-soft: #f2dd8a;
  --dj-card-radius: 24px;
  --dj-card-shadow: 0 22px 65px rgba(0,0,0,.34);
  --dj-card-shadow-hover: 0 30px 85px rgba(0,0,0,.52);
}

/* ==============================================
   Homepage — global service booking cards
   ============================================== */
#quickBookingCards.booking-showcase-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 20px;
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(212,175,55,.10), transparent 30%),
    radial-gradient(circle at 92% 76%, rgba(44,102,140,.12), transparent 34%),
    linear-gradient(180deg, #07090c 0%, #0b0e12 50%, #07090c 100%);
}

#quickBookingCards.booking-showcase-section::before,
#quickBookingCards.booking-showcase-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.35), transparent);
}
#quickBookingCards.booking-showcase-section::before { top: 0; }
#quickBookingCards.booking-showcase-section::after { bottom: 0; }

.booking-showcase-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-showcase-heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.booking-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 7px 15px;
  margin-bottom: 16px;
  border: 1px solid rgba(212,175,55,.27);
  border-radius: 999px;
  background: rgba(212,175,55,.08);
  color: var(--dj-card-gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-showcase-heading h2 {
  margin: 0 0 14px;
  color: var(--dj-card-text);
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.booking-showcase-heading p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--dj-card-muted);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.75;
}

.booking-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.booking-showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, .82fr) minmax(0, 1.18fr);
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--dj-card-border);
  border-radius: var(--dj-card-radius);
  background: linear-gradient(145deg, rgba(22,27,34,.98), rgba(10,13,18,.99));
  box-shadow: var(--dj-card-shadow);
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.booking-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.045), transparent 32%, transparent 70%, rgba(212,175,55,.045));
}

.booking-showcase-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #111;
}
.booking-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}
.booking-showcase-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,6,9,.08) 20%, rgba(4,6,9,.58) 100%), linear-gradient(180deg, transparent 45%, rgba(4,6,9,.45));
}

.booking-showcase-badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 32px);
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(7,9,12,.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-showcase-badge i { color: var(--dj-card-gold-soft); }

.booking-showcase-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px;
}

.booking-showcase-overline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: var(--dj-card-gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.booking-showcase-overline::before {
  content: "";
  width: 28px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}
.booking-showcase-content h3 {
  margin: 0 0 11px;
  color: #fff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.booking-showcase-content > p {
  margin: 0 0 20px;
  color: var(--dj-card-muted);
  font-size: 14px;
  line-height: 1.68;
}

.booking-showcase-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: auto 0 22px;
}
.booking-showcase-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: #dce1e7;
  font-size: 12px;
  font-weight: 600;
}
.booking-showcase-feature i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(212,175,55,.11);
  color: var(--dj-card-gold-soft);
  font-size: 9px;
}

.booking-showcase-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px 12px 18px;
  border: 1px solid rgba(212,175,55,.48);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dj-card-gold), var(--dj-card-gold-soft));
  color: #090909;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(212,175,55,.16);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.booking-showcase-action i:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.10);
  transition: transform .2s ease;
}

/* ==============================================
   Tours and sea trips — unified marketplace cards
   ============================================== */
.tours-grid,
.tours {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)) !important;
  gap: clamp(20px, 2.8vw, 30px) !important;
}

.tour-card,
.tours .tour {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--dj-card-border) !important;
  border-radius: var(--dj-card-radius) !important;
  background: linear-gradient(160deg, var(--dj-card-bg) 0%, var(--dj-card-bg-2) 100%) !important;
  box-shadow: var(--dj-card-shadow) !important;
  isolation: isolate;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease !important;
}

.tour-card::before,
.tours .tour::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  border-radius: inherit !important;
  background: linear-gradient(145deg, rgba(255,255,255,.035), transparent 35%, transparent 72%, rgba(212,175,55,.035)) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.tour-card .tour-image-wrap,
.tours .tour-image-wrap {
  position: relative;
  height: 245px !important;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.075) !important;
  background: #111;
}
.tour-card .tour-image-wrap::after,
.tours .tour-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4,6,9,.02) 42%, rgba(4,6,9,.62) 100%);
}
.tour-card .tour-image,
.tours .tour-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.7,.2,1), opacity .7s ease !important;
}

.tour-card .tour-badge,
.tours .tour-badge {
  z-index: 4;
  border: 1px solid rgba(255,255,255,.17) !important;
  background: rgba(7,9,12,.74) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff !important;
  box-shadow: none !important;
  font-weight: 750 !important;
  letter-spacing: .04em;
}

.tour-card .tour-content,
.tours .tour-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px !important;
}

.tour-card .tour-location,
.tours .tour .city {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px !important;
  color: var(--dj-card-gold-soft) !important;
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: .08em !important;
  text-transform: uppercase;
}

.tour-card .tour-title,
.tours .tour h3 {
  margin: 0 0 10px !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 21px !important;
  line-height: 1.3;
  letter-spacing: -.015em;
}

.tour-card .tour-desc,
.tours .tour p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 70px;
  margin: 0 0 17px !important;
  color: var(--dj-card-muted) !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
  opacity: 1 !important;
}

.tour-card .tour-features,
.tours .tour-badges,
.tours .tour-card-meta {
  display: flex !important;
  flex-wrap: wrap;
  gap: 7px !important;
  margin: 0 0 17px !important;
}
.tour-card .feature-tag,
.tours .tour-badge,
.tours .tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 5px 9px !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.045) !important;
  color: #d9dee5 !important;
  font-size: 10.5px !important;
  font-weight: 650;
}
.tour-card .feature-tag i { color: var(--dj-card-gold-soft); }

.tour-card .tour-price-line,
.tours .tour-price-line {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: auto 0 17px !important;
  padding-top: 16px !important;
  border-top: 1px solid rgba(255,255,255,.075) !important;
}
.tour-card .tour-price-line span,
.tours .tour-price-line span {
  color: #8f98a4 !important;
  font-size: 10px !important;
  font-weight: 750;
  letter-spacing: .1em !important;
}
.tour-card .tour-price-line strong,
.tours .tour-price-line strong {
  color: var(--dj-card-gold-soft) !important;
  font-size: 21px !important;
  line-height: 1;
}

.tour-card .tour-footer,
.tours .tour-actions {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 10px !important;
  align-items: stretch;
}
.tour-card .tour-btn,
.tour-card .tour-btn-outline,
.tours .tour-actions .main-btn,
.tours .tour-actions .soon-badge {
  min-height: 47px;
  padding: 10px 13px !important;
  border-radius: 13px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-align: center;
  box-shadow: none !important;
  transform: none !important;
}
.tour-card .tour-btn,
.tours .tour-actions .tour-book-btn,
.tours .tour-actions .main-btn:last-child:not(:first-child) {
  border: 1px solid rgba(212,175,55,.48) !important;
  background: linear-gradient(135deg, var(--dj-card-gold), var(--dj-card-gold-soft)) !important;
  color: #080808 !important;
}
.tour-card .tour-btn-outline,
.tours .tour-actions .tour-details-btn,
.tours .tour-actions .main-btn:first-child {
  border: 1px solid rgba(255,255,255,.13) !important;
  background: rgba(255,255,255,.045) !important;
  color: #fff !important;
}
.tours .tour-actions .soon-badge {
  border: 1px dashed rgba(212,175,55,.30) !important;
  background: rgba(212,175,55,.06) !important;
  color: var(--dj-card-gold-soft) !important;
}

.tour-slider-dots {
  z-index: 4 !important;
  gap: 5px !important;
}
.tour-slider-dots span {
  width: 6px !important;
  height: 6px !important;
  border: 0 !important;
  background: rgba(255,255,255,.55) !important;
}
.tour-slider-dots span.active {
  width: 20px !important;
  background: var(--dj-card-gold-soft) !important;
}

/* ==============================================
   Flights — search box and result cards
   ============================================== */
.search-box {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dj-card-border) !important;
  border-radius: 26px !important;
  background: linear-gradient(145deg, rgba(20,25,32,.98), rgba(9,12,16,.99)) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.46) !important;
}
.search-box::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(212,175,55,.11), transparent 33%), linear-gradient(135deg, rgba(255,255,255,.035), transparent 34%);
}
.search-box > * { position: relative; z-index: 1; }

.booking-box-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 25px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.booking-box-heading__title {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.booking-box-heading__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 13px;
  background: rgba(212,175,55,.09);
  color: var(--dj-card-gold-soft);
}
.booking-box-heading h2 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
}
.booking-box-heading p {
  margin: 0;
  color: var(--dj-card-muted);
  font-size: 13px;
  line-height: 1.5;
}
.booking-box-heading__trust {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(57,194,122,.22);
  border-radius: 999px;
  background: rgba(57,194,122,.07);
  color: #8fe0b3;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.trip-type-selector {
  justify-content: flex-start !important;
  padding: 4px;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(0,0,0,.20);
  scrollbar-width: none;
}
.trip-type-selector::-webkit-scrollbar { display: none; }
.trip-type-btn {
  min-height: 42px;
  border: 0 !important;
  border-radius: 10px !important;
  white-space: nowrap;
}
.trip-type-btn.active,
.trip-type-btn:hover {
  background: rgba(212,175,55,.14) !important;
  color: var(--dj-card-gold-soft) !important;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.28);
}

.search-box .form-field label,
.transfer-form .field label {
  display: flex !important;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px !important;
  color: #c8ced6 !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  letter-spacing: .07em !important;
  text-transform: uppercase;
}
.search-box .input-wrapper,
.transfer-form .field input,
.transfer-form .field select {
  min-height: 56px;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;
  background: rgba(3,5,8,.42) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.search-box .input-wrapper:focus-within,
.transfer-form .field input:focus,
.transfer-form .field select:focus {
  outline: none;
  border-color: rgba(212,175,55,.65) !important;
  background: rgba(3,5,8,.64) !important;
  box-shadow: 0 0 0 4px rgba(212,175,55,.09) !important;
}
.search-box .search-btn,
.transfer-form .submit-btn {
  min-height: 56px;
  border: 1px solid rgba(212,175,55,.48) !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, var(--dj-card-gold), var(--dj-card-gold-soft)) !important;
  color: #080808 !important;
  font-weight: 850 !important;
  box-shadow: 0 14px 30px rgba(212,175,55,.16) !important;
}

.flight-card,
.flights-container .flight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dj-card-border) !important;
  border-radius: 20px !important;
  background: linear-gradient(150deg, var(--dj-card-bg), var(--dj-card-bg-2)) !important;
  box-shadow: 0 16px 46px rgba(0,0,0,.27) !important;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}
.flight-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(var(--dj-card-gold-soft), rgba(212,175,55,.16));
}
.flight-card .airline-logo {
  border: 1px solid rgba(255,255,255,.12);
  background: #f7f7f5 !important;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.flight-card .route-time,
.flight-card .time,
.flight-card .total-price { color: #fff !important; }
.flight-card .route-code,
.flight-card .code,
.flight-card .flight-badge { color: var(--dj-card-gold-soft) !important; }
.flight-card .select-btn,
.flight-card .book-btn {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(212,175,55,.48);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dj-card-gold), var(--dj-card-gold-soft));
  color: #080808;
  font-weight: 850;
}

/* ==============================================
   Transfers — booking box and vehicle cards
   ============================================== */
.transfer-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dj-card-border) !important;
  border-radius: 26px !important;
  background: linear-gradient(145deg, rgba(20,25,32,.98), rgba(9,12,16,.99)) !important;
  box-shadow: 0 28px 90px rgba(0,0,0,.44) !important;
}
.transfer-form::before {
  inset: 0 !important;
  border-radius: inherit !important;
  background: radial-gradient(circle at 10% 0%, rgba(212,175,55,.11), transparent 34%), linear-gradient(135deg, rgba(255,255,255,.035), transparent 35%) !important;
}
.transfer-form .form-grid { gap: 18px !important; }
.transfer-form .field input,
.transfer-form .field select { padding: 0 15px !important; }
.transfer-form .map-wrap {
  margin-top: 22px;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}
.transfer-form .submit-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px !important;
}
.transfer-form .submit-btn::before {
  content: "✓";
}

.vehicles .vehicle {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dj-card-border) !important;
  border-radius: 20px !important;
  background: linear-gradient(150deg, var(--dj-card-bg), var(--dj-card-bg-2)) !important;
  box-shadow: 0 16px 45px rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}
.vehicles .vehicle::after {
  content: "";
  position: absolute;
  inset: auto -30px -55px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(212,175,55,.07);
}
.vehicles .vehicle i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px !important;
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 18px;
  background: rgba(212,175,55,.08);
  color: var(--dj-card-gold-soft) !important;
  font-size: 30px !important;
}

/* ==============================================
   Interaction, accessibility and responsive rules
   ============================================== */
.booking-showcase-action:focus-visible,
.tour-card a:focus-visible,
.tours .tour a:focus-visible,
.flight-card button:focus-visible,
.search-box button:focus-visible,
.transfer-form .submit-btn:focus-visible {
  outline: 3px solid rgba(242,221,138,.42);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .booking-showcase-card:hover,
  .tour-card:hover,
  .tours .tour:hover,
  .flight-card:hover,
  .vehicles .vehicle:hover {
    transform: translateY(-7px) !important;
    border-color: var(--dj-card-border-gold) !important;
    box-shadow: var(--dj-card-shadow-hover) !important;
  }
  .booking-showcase-card:hover .booking-showcase-media img,
  .tour-card:hover .tour-image,
  .tours .tour:hover .tour-image-wrap img.active { transform: scale(1.045); }
  .booking-showcase-action:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 17px 34px rgba(212,175,55,.23); }
  .booking-showcase-action:hover i:last-child { transform: translateX(3px); }
  [dir="rtl"] .booking-showcase-action:hover i:last-child { transform: translateX(-3px); }
  .tour-card .tour-btn:hover,
  .tour-card .tour-btn-outline:hover,
  .tours .tour-actions .main-btn:hover,
  .flight-card .select-btn:hover,
  .flight-card .book-btn:hover { filter: brightness(1.05); }
}

@media (max-width: 1050px) {
  .booking-showcase-card { grid-template-columns: 1fr; min-height: 0; }
  .booking-showcase-media,
  .booking-showcase-media img { min-height: 235px; height: 235px; }
  .booking-showcase-media::after { background: linear-gradient(180deg, rgba(4,6,9,.02) 35%, rgba(4,6,9,.65) 100%); }
}

@media (max-width: 820px) {
  .booking-showcase-grid { grid-template-columns: 1fr; }
  .booking-showcase-card { grid-template-columns: 210px minmax(0, 1fr); }
  .booking-showcase-media,
  .booking-showcase-media img { height: 100%; min-height: 330px; }
  .booking-showcase-features { grid-template-columns: 1fr 1fr; }

  .booking-box-heading { flex-direction: column; }
  .booking-box-heading__trust { align-self: flex-start; }
  .search-box .search-row,
  .search-box .search-row-bottom { grid-template-columns: 1fr !important; display: grid !important; }
  .search-box .swap-btn { justify-self: center; margin: -2px 0 !important; transform: rotate(90deg); }
  .search-box .search-btn { width: 100%; }

  .flight-card { grid-template-columns: 1fr !important; }
  .flight-card .flight-price-section { width: 100%; }
  .flight-card .select-btn,
  .flight-card .book-btn { width: 100%; }
}

@media (max-width: 620px) {
  #quickBookingCards.booking-showcase-section { padding-inline: 14px; }
  .booking-showcase-heading { text-align: start; }
  .booking-showcase-heading p { margin-inline: 0; }
  .booking-showcase-kicker { font-size: 10px; }
  .booking-showcase-grid { gap: 18px; }
  .booking-showcase-card { grid-template-columns: 1fr; border-radius: 20px; }
  .booking-showcase-media,
  .booking-showcase-media img { height: 218px; min-height: 218px; }
  .booking-showcase-content { padding: 21px; }
  .booking-showcase-content h3 { font-size: 22px; }
  .booking-showcase-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .booking-showcase-feature { font-size: 11px; }

  .tour-card .tour-image-wrap,
  .tours .tour-image-wrap { height: 215px !important; }
  .tour-card .tour-content,
  .tours .tour-content { padding: 20px !important; }
  .tour-card .tour-footer,
  .tours .tour-actions { grid-template-columns: 1fr !important; }
  .tour-card .tour-desc,
  .tours .tour p { min-height: auto; }

  .search-box,
  .transfer-form { padding: 22px 16px !important; border-radius: 20px !important; }
  .booking-box-heading__icon { width: 40px; height: 40px; }
  .booking-box-heading h2 { font-size: 19px; }
  .trip-type-selector { width: 100%; }
  .trip-type-btn { flex: 1 0 auto; padding-inline: 15px !important; }
  .transfer-form .form-grid { grid-template-columns: 1fr !important; }
  #transferMap { height: 300px !important; }

  .flight-card { padding: 20px 17px !important; }
  .flight-card .flight-route,
  .flight-card .route { gap: 12px !important; }
}

@media (max-width: 380px) {
  .booking-showcase-features { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .booking-showcase-card,
  .booking-showcase-media img,
  .booking-showcase-action,
  .tour-card,
  .tour-card img,
  .tours .tour,
  .tours .tour img,
  .flight-card,
  .vehicles .vehicle { transition: none !important; }
}

/* Remove decorative leftovers from the previous cinematic card system. */
.tour-card .corner-accent { display: none !important; }
.tour-card::before {
  padding: 0 !important;
  -webkit-mask: none !important;
  mask: none !important;
}
.tour-card > .tour-image-wrap .tour-badge {
  top: 16px !important;
  right: auto !important;
  left: auto !important;
  inset-inline-start: 16px !important;
  inset-inline-end: auto !important;
}
