/* Outbound Tours Luxury Redesign */

:root {
  --travel-navy: #08264a;
  --travel-navy-deep: #041b35;
  --travel-gold: #d99a22;
  --travel-gold-soft: #fff2d6;
  --travel-ivory: #fffaf2;
  --travel-bg: #f5f8fc;
  --travel-card: #ffffff;
  --travel-text: #687a90;
  --travel-border: rgba(8, 38, 74, 0.11);
  --travel-shadow: 0 16px 45px rgba(8, 38, 74, 0.09);
  --travel-shadow-hover: 0 24px 60px rgba(8, 38, 74, 0.14);

  --section-gap-desktop: 72px;
  --section-gap-tablet: 56px;
  --section-gap-mobile: 40px;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered delays for children elements */
  .promo-split.is-visible .promo-split__content {
    transition-delay: 0.1s;
  }

  .promo-split.is-visible .promo-split__media {
    transition-delay: 0.2s;
  }
}

/* Base Page Wrapper */
.outbound-page {
  background: var(--travel-bg);
  color: var(--travel-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: var(--section-gap-desktop);
  padding-top: 84px;
}

[data-theme="dark"] .outbound-page {
  --travel-bg: #031122;
  --travel-card: #061930;
  --travel-navy: #ffffff;
  --travel-text: #9ab0c8;
  --travel-border: rgba(255, 255, 255, 0.1);
  --travel-ivory: #051426;
  --travel-shadow: 0 16px 45px rgba(0, 0, 0, 0.4);
  --travel-shadow-hover: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* Typography Hierarchy */
.outbound-page h1,
.outbound-page h2,
.outbound-page h3,
.outbound-page h4 {
  font-family: "Playfair Display", "Plus Jakarta Sans", "Noto Sans Khmer", serif;
  color: var(--travel-navy);
  margin: 0;
  font-weight: 700;
}

.outbound-page .contact-modern__spotlight h2 {
  color: #ffffff !important;
}

.outbound-page p {
  line-height: 1.7;
  margin: 0 0 1rem;
}

/* Button System */
.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--travel-gold);
  color: #fff;
  box-shadow: 0 4px 14px rgba(217, 154, 34, 0.3);
}

[data-theme="dark"] .btn-primary {
  color: var(--travel-navy-deep);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 154, 34, 0.4);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--travel-navy);
  outline-offset: 2px;
}

.btn-secondary {
  background: transparent;
  color: var(--travel-navy);
  border: 2px solid var(--travel-navy);
}

.btn-secondary:hover {
  background: var(--travel-navy);
  color: #fff;
}

[data-theme="dark"] .btn-secondary:hover {
  color: var(--travel-navy-deep);
}

/* Itinerary Hero */
.itinerary-hero {
  position: relative;
  background: var(--travel-ivory);
  padding: 56px 0 32px;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.itinerary-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(217, 154, 34, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.itinerary-hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.itinerary-hero__eyebrow {
  align-items: center;
  background: rgba(217, 154, 34, 0.08);
  border: 1px solid rgba(217, 154, 34, 0.58);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.85rem;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--travel-gold);
  margin-bottom: 18px;
  min-height: 40px;
  padding: 8px 22px;
  font-weight: 700;
}

.itinerary-hero__title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.itinerary-hero__intro {
  font-size: 1.1rem;
  color: var(--travel-text);
  margin: 0 auto 32px;
  max-width: 680px;
}

.itinerary-hero__divider {
  width: 60px;
  height: 3px;
  background: var(--travel-gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* Featured Taiwan Tour Card */
.featured-tour-wrap {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  margin-block: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.featured-tour {
  display: flex;
  background: var(--travel-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--travel-shadow);
  border: 1px solid var(--travel-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.featured-tour:hover {
  transform: translateY(-6px);
  box-shadow: var(--travel-shadow-hover);
}

.featured-tour__media {
  flex: 0 0 58%;
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.featured-tour__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-tour:hover .featured-tour__media img {
  transform: scale(1.04);
}

.featured-tour__badges {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 12px;
}

.featured-tour__badge {
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-tour__badge--highlight {
  background: var(--travel-gold);
  color: #fff;
}

.featured-tour__badge--promo,
.featured-itinerary__badge-promo {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.4) !important;
  border: none !important;
  font-weight: 800 !important;
}

/* Promotional Callout Box */
.featured-tour__promo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(217, 154, 34, 0.08) 0%, rgba(217, 154, 34, 0.03) 100%);
  border: 1px solid rgba(217, 154, 34, 0.28);
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.featured-tour__promo:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 154, 34, 0.5);
  box-shadow: 0 4px 14px rgba(217, 154, 34, 0.12);
}

.featured-tour__promo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(217, 154, 34, 0.15);
  color: #d99a22;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.featured-tour__promo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.featured-tour__promo-text strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: #b47504;
  line-height: 1.25;
}

.featured-tour__promo-text span {
  font-size: 0.8rem;
  color: #556980;
  line-height: 1.35;
}

/* Dark mode support */
[data-theme="dark"] .featured-tour__promo {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.04) 100%);
  border-color: rgba(245, 158, 11, 0.3);
}

[data-theme="dark"] .featured-tour__promo-text strong {
  color: #fbbf24;
}

[data-theme="dark"] .featured-tour__promo-text span {
  color: #cbd5e1;
}

.featured-tour__content {
  flex: 0 0 42%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-tour__content h3 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 12px;
}

.featured-tour__location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--travel-navy);
  font-weight: 600;
  margin-bottom: 24px;
}

.featured-tour__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.featured-tour__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.featured-tour__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--travel-gold);
  font-weight: bold;
}

.featured-tour__meta {
  margin-top: auto;
  border-top: 1px solid var(--travel-border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-tour__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--travel-navy);
}

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

/* Promo Split Sections */
.promo-section {
  margin: 0;
  padding: 0;
}

.promo-section.bg-ivory {
  background: var(--travel-ivory);
}

.promo-split {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto;
}

.promo-split--reverse {
  flex-direction: row-reverse;
}

.promo-split__content {
  flex: 1;
}

.promo-split__media {
  flex: 1;
  position: relative;
}

.promo-split__media img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--travel-shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.promo-split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--travel-card);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--travel-shadow-hover);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--travel-navy);
  border: 1px solid var(--travel-border);
}

.promo-split__badge svg {
  color: var(--travel-gold);
}

.promo-split__eyebrow {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--travel-gold);
  margin-bottom: 16px;
  font-weight: 700;
}

.promo-split__content h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 24px;
  line-height: 1.2;
}

.promo-split__content p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 90%;
}

.promo-split__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.promo-split__points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--travel-navy);
  font-size: 0.95rem;
}

.promo-split__points svg {
  color: var(--travel-gold);
}

/* Responsive */
@media (max-width: 992px) {
  .featured-tour {
    flex-direction: column;
  }

  .featured-tour__media {
    min-height: 300px;
  }

  .featured-tour__content {
    padding: 32px;
  }

  .promo-split,
  .promo-split--reverse {
    flex-direction: column;
    gap: 40px;
  }

  .promo-split__badge {
    bottom: 20px;
    right: 20px;
  }

  .promo-split__content p {
    max-width: 100%;
  }

  .outbound-page {
    gap: var(--section-gap-tablet);
  }
}

@media (max-width: 768px) {
  .featured-tour-wrap {
    width: min(100% - 24px, 1200px);
    gap: 24px;
  }

  .featured-tour {
    border-radius: 20px;
  }

  .featured-tour__media {
    min-height: 220px;
    height: 220px;
  }

  .featured-tour__badges {
    top: 10px;
    left: 10px;
    right: 10px;
    gap: 6px;
    display: flex;
    flex-wrap: wrap;
    max-width: calc(100% - 20px);
  }

  .featured-tour__badge,
  .featured-tour__badge--promo,
  .featured-itinerary__badge-promo {
    font-size: 0.68rem !important;
    padding: 3px 9px !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .featured-tour__content {
    padding: 22px 18px;
  }

  .featured-tour__location {
    font-size: 0.84rem;
    gap: 6px;
    margin-bottom: 14px;
  }

  .featured-tour__content h3 {
    font-size: 1.35rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  html[lang="km"] .featured-tour__content h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .featured-tour__list {
    margin-bottom: 20px;
  }

  .featured-tour__list li {
    font-size: 0.88rem;
    margin-bottom: 8px;
    padding-left: 24px;
  }

  .featured-tour__meta {
    padding-top: 18px;
    gap: 12px;
  }

  .featured-tour__price {
    font-size: 1.15rem;
  }

  .featured-tour__actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .featured-tour__actions .btn-primary,
  .featured-tour__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .itinerary-hero {
    padding: 40px 14px 24px;
  }

  .itinerary-hero__eyebrow {
    font-size: 0.78rem;
    min-height: 36px;
    padding: 6px 18px;
  }

  .itinerary-hero__title {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
    line-height: 1.25;
    margin-bottom: 16px;
  }

  html[lang="km"] .itinerary-hero__title {
    font-size: clamp(1.6rem, 6vw, 2.25rem);
    line-height: 1.45;
  }

  .itinerary-hero__intro {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .promo-split {
    gap: 28px;
  }

  .promo-split__content h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .promo-split__badge {
    padding: 10px 16px;
    font-size: 0.85rem;
    bottom: 12px;
    right: 12px;
  }
}

@media (max-width: 576px) {
  .outbound-page {
    gap: var(--section-gap-mobile);
    padding-top: 76px;
  }
}

/* ==========================================================================
   Day Itinerary Auto-Slideshow (Place-by-Place)
   ========================================================================== */
.day-slideshow-container {
  margin-bottom: 22px;
  background: var(--travel-bg, #f8fafc);
  border-radius: 20px;
  border: 1px solid rgba(8, 38, 74, 0.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 18px rgba(8, 38, 74, 0.04);
}

[data-theme="dark"] .day-slideshow-container {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Place Navigation Pills */
.day-slideshow-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.day-slideshow-pills::-webkit-scrollbar {
  height: 4px;
}

.day-slideshow-pills::-webkit-scrollbar-thumb {
  background: rgba(8, 38, 74, 0.15);
  border-radius: 4px;
}

.day-slideshow-pill {
  background: #ffffff;
  border: 1px solid rgba(8, 38, 74, 0.12);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  word-break: keep-all;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.day-slideshow-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: background 0.25s ease, transform 0.25s ease;
}

.day-slideshow-pill:hover {
  border-color: var(--travel-gold, #d99a22);
  color: var(--travel-navy, #08264a);
  transform: translateY(-1px);
}

.day-slideshow-pill.active {
  background: var(--travel-navy, #08264a);
  border-color: var(--travel-navy, #08264a);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(8, 38, 74, 0.2);
}

.day-slideshow-pill.active .pill-dot {
  background: var(--travel-gold, #f59e0b);
  transform: scale(1.3);
}

[data-theme="dark"] .day-slideshow-pill {
  background: rgba(30, 41, 59, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

[data-theme="dark"] .day-slideshow-pill.active {
  background: var(--travel-gold, #d99a22);
  border-color: var(--travel-gold, #d99a22);
  color: #041b35;
}

[data-theme="dark"] .day-slideshow-pill.active .pill-dot {
  background: #041b35;
}

/* Viewport & Track */
.day-slideshow-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
}

.day-slideshow-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.day-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  pointer-events: none;
}

.day-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.day-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide Caption Overlay */
.day-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(5, 18, 38, 0.82) 100%);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  color: #ffffff;
  pointer-events: none;
  z-index: 2;
}

.day-slide-badge {
  background: rgba(217, 154, 34, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

.day-slide-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

/* Arrow Controls */
.day-slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--travel-navy, #08264a);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.day-slideshow-viewport:hover .day-slide-arrow {
  opacity: 1;
}

.day-slide-arrow.prev {
  left: 14px;
}

.day-slide-arrow.next {
  right: 14px;
}

.day-slide-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Indicators */
.day-slide-indicators {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
}

.day-slide-dot {
  appearance: none;
  border: 0;
  padding: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
}

.day-slide-dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.day-slide-dot.active {
  background: var(--travel-gold, #f59e0b);
  transform: scale(1.3);
  width: 14px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .day-slide-arrow {
    opacity: 0.85;
    width: 34px;
    height: 34px;
  }
  .day-slide-arrow.prev { left: 8px; }
  .day-slide-arrow.next { right: 8px; }
  .day-slide-title { font-size: 0.85rem; }
  .day-slideshow-container { padding: 10px; border-radius: 16px; }
}

/* ==========================================================================
   Bento Hero Section: 2 Horizontal + 1 Vertical Layout (២ ដេក ១ ប្រឈរ)
   ========================================================================== */
.tour-bento-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, 0.88fr);
  gap: 24px;
  align-items: stretch;
  padding-block: 36px 20px;
}

.tour-bento-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
  justify-content: space-between;
}

.tour-bento-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.tour-bento-card {
  background: var(--travel-card, #ffffff);
  border: 1px solid var(--travel-border, rgba(8, 38, 74, 0.09));
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 8px 28px rgba(8, 38, 74, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #d99a22 0%, #08264a 100%);
  opacity: 0.9;
}

.tour-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(8, 38, 74, 0.1);
  border-color: rgba(217, 154, 34, 0.35);
}

/* Card Headers & Eyebrows */
.bento-card-header {
  margin-bottom: 12px;
}

.bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 38, 74, 0.06);
  border: 1px solid rgba(8, 38, 74, 0.12);
  color: var(--travel-navy, #08264a);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.bento-badge--gold {
  background: rgba(217, 154, 34, 0.12);
  border-color: rgba(217, 154, 34, 0.3);
  color: #b47504;
}

.bento-title {
  color: var(--travel-navy, #08264a);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 800;
  margin: 0;
  line-height: 1.35;
}

/* Box 1: Overview */
.bento-desc {
  color: var(--travel-text, #556980);
  font-size: 0.94rem;
  line-height: 1.75;
  margin: 0 0 16px;
}

.bento-categories-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(8, 38, 74, 0.1);
  margin-top: auto;
}

.bento-sublabel {
  color: var(--travel-muted, #7e91a6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bento-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bento-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(8, 38, 74, 0.04);
  border: 1px solid rgba(8, 38, 74, 0.08);
  border-radius: 100px;
  color: var(--travel-navy, #08264a);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  transition: all 0.2s ease;
}

.bento-cat-pill:hover {
  background: rgba(217, 154, 34, 0.1);
  border-color: rgba(217, 154, 34, 0.3);
  color: var(--travel-navy, #08264a);
}

.bento-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--travel-gold, #d99a22);
}

/* Box 2: Highlights Grid */
.bento-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.bento-highlight-pill {
  background: rgba(8, 38, 74, 0.03);
  border: 1px solid rgba(8, 38, 74, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.bento-highlight-pill:hover {
  background: #ffffff;
  border-color: rgba(217, 154, 34, 0.4);
  box-shadow: 0 6px 18px rgba(8, 38, 74, 0.08);
  transform: translateY(-2px);
}

.bento-highlight-num {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--travel-gold, #d99a22);
  background: rgba(217, 154, 34, 0.12);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bento-highlight-icon {
  color: #10b981;
  display: inline-flex;
  flex-shrink: 0;
}

.bento-highlight-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--travel-navy, #08264a);
  line-height: 1.4;
}

/* Box 3: Vertical Right Card */
.tour-bento-booking {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(175deg, #ffffff 0%, #fdfbf7 100%);
  border-color: rgba(217, 154, 34, 0.25);
}

.tour-bento-booking::before {
  background: linear-gradient(90deg, #d99a22 0%, #f59e0b 100%);
  height: 4px;
}

.bento-price {
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--travel-navy, #08264a);
  margin: 4px 0 0;
  line-height: 1.25;
}

.bento-sidebar-desc {
  color: var(--travel-text, #556980);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 10px 0 18px;
}

.bento-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.bento-spec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 38, 74, 0.03);
  border: 1px solid rgba(8, 38, 74, 0.06);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--travel-navy, #08264a);
}

.bento-spec-icon {
  color: var(--travel-gold, #d99a22);
  display: inline-flex;
  flex-shrink: 0;
}

.bento-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
}

.bento-btn-primary {
  background: linear-gradient(135deg, #d99a22 0%, #c28312 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(217, 154, 34, 0.3);
  transition: all 0.25s ease;
  border: none;
}

.bento-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(217, 154, 34, 0.45);
  color: #ffffff;
}

.bento-btn-secondary {
  background: #ffffff;
  color: var(--travel-navy, #08264a);
  border: 1.5px solid rgba(8, 38, 74, 0.18);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.bento-btn-secondary:hover {
  background: rgba(8, 38, 74, 0.04);
  border-color: var(--travel-navy, #08264a);
  color: var(--travel-navy, #08264a);
}

.bento-confirmation-note {
  font-size: 0.76rem;
  color: var(--travel-muted, #7e91a6);
  text-align: center;
  margin: 4px 0 0;
}

/* Dark Theme Support for Bento Hero */
[data-theme="dark"] .tour-bento-card {
  background: #061930;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .tour-bento-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .bento-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}

[data-theme="dark"] .bento-badge--gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

[data-theme="dark"] .bento-title,
[data-theme="dark"] .bento-price,
[data-theme="dark"] .bento-highlight-text,
[data-theme="dark"] .bento-spec-row {
  color: #ffffff;
}

[data-theme="dark"] .bento-desc,
[data-theme="dark"] .bento-sidebar-desc {
  color: #9ab0c8;
}

[data-theme="dark"] .bento-cat-pill,
[data-theme="dark"] .bento-highlight-pill,
[data-theme="dark"] .bento-spec-row {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

[data-theme="dark"] .bento-highlight-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(245, 158, 11, 0.4);
}

[data-theme="dark"] .bento-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

[data-theme="dark"] .bento-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Responsive Breakpoint for Bento Hero */
@media (max-width: 980px) {
  .tour-bento-hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   Full-Width Tour Sections & 3-Column Destination Cards Grid
   ========================================================================== */
.tour-fullwidth-wrap {
  display: grid;
  gap: 36px;
  padding-bottom: 80px;
  width: 100%;
}

.tour-destinations-section {
  position: relative;
  margin-top: 6px;
}

.tour-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.tour-dest-card {
  background: var(--travel-card, #ffffff);
  border: 1px solid var(--travel-border, rgba(8, 38, 74, 0.09));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(8, 38, 74, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.tour-dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(8, 38, 74, 0.12);
  border-color: rgba(217, 154, 34, 0.45);
}

.tour-dest-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.2;
  overflow: hidden;
  background: #e2e8f0;
}

.tour-dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-dest-card:hover .tour-dest-card__media img {
  transform: scale(1.06);
}

.tour-dest-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 27, 53, 0.72) 0%, rgba(4, 27, 53, 0.2) 45%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.tour-dest-card__tag {
  position: absolute;
  top: 13px;
  left: 13px;
  background: rgba(6, 28, 69, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  letter-spacing: 0.2px;
  z-index: 2;
}

.tour-dest-card__num {
  position: absolute;
  top: 13px;
  right: 13px;
  background: rgba(255, 255, 255, 0.95);
  color: #08264a;
  font-weight: 800;
  font-size: 0.78rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  border: 1.5px solid var(--travel-gold, #d99a22);
  z-index: 2;
}

.tour-dest-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 16px;
}

.tour-dest-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--travel-navy, #08264a);
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.42;
}

.tour-dest-card__pin {
  color: var(--travel-gold, #d99a22);
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
}

.tour-dest-card__desc {
  color: var(--travel-text, #556980);
  font-size: 0.91rem;
  line-height: 1.66;
  margin: 0;
}

.tour-dest-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px dashed rgba(8, 38, 74, 0.11);
  margin-top: auto;
}

.tour-dest-badge {
  background: rgba(8, 38, 74, 0.04);
  color: var(--travel-navy, #08264a);
  border: 1px solid rgba(8, 38, 74, 0.08);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.tour-dest-card:hover .tour-dest-badge {
  background: rgba(217, 154, 34, 0.08);
  border-color: rgba(217, 154, 34, 0.25);
}

/* Dark Theme Support */
[data-theme="dark"] .tour-dest-card {
  background: #061930;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .tour-dest-card:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .tour-dest-card__title {
  color: #ffffff;
}

[data-theme="dark"] .tour-dest-card__desc {
  color: #9ab0c8;
}

[data-theme="dark"] .tour-dest-card__num {
  background: #041224;
  color: #f59e0b;
  border-color: #f59e0b;
}

[data-theme="dark"] .tour-dest-card__badges {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .tour-dest-badge {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .tour-dest-card:hover .tour-dest-badge {
  background: rgba(245, 158, 11, 0.12);
  color: #fef3c7;
  border-color: rgba(245, 158, 11, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 1080px) {
  .tour-dest-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .tour-dest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tour-dest-card__body {
    padding: 16px;
  }
}

