/* tour-bumthang-owl-trek.css — extracted from bhutan-tour-packages/trekking-tours/bumthang-owl-trek.php */

/* ============================================================
   BUMTHANG OWL TREK PAGE — FOUND BHUTAN
   Palette: #0e2d45 (deep navy), #ffc21a (gold), #ffffff, #f5f0e8 (warm cream)
   Typography: Cormorant Garamond (display) + DM Sans (body)
   Prefix: bot- (Bumthang Owl Trek)
   ============================================================ */

:root {
  --navy:        #0e2d45;
  --navy-deep:   #07192a;
  --navy-mid:    #143d59;
  --gold:        #ffc21a;
  --gold-light:  #ffd24d;
  --gold-dim:    rgba(255,194,26,0.14);
  --cream:       #f5f0e8;
  --cream-dark:  #ede5d4;
  --white:       #ffffff;
  --text-body:   #3d4a58;
  --text-light:  #6b7a8d;
  --border:      rgba(14,45,69,0.10);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(14,45,69,0.08);
  --shadow-md:   0 8px 32px rgba(14,45,69,0.12);
  --shadow-lg:   0 20px 60px rgba(14,45,69,0.16);
  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.bot-page * { box-sizing: border-box; }
.bot-page { font-family: var(--font-body); color: var(--text-body); }

/* ============================================================
   1. HERO
   ============================================================ */
.bot-hero {
  position: relative;
  height: 92svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
}

.bot-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.50) saturate(1.08);
  transform: scale(1.05);
  animation: bot-kb 18s ease-out forwards;
  will-change: transform;
}

@keyframes bot-kb {
  from { transform: scale(1.07); }
  to   { transform: scale(1.00); }
}

.bot-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,25,42,0.96) 0%,
      rgba(7,25,42,0.50) 42%,
      rgba(7,25,42,0.10) 100%),
    linear-gradient(105deg,
      rgba(7,25,42,0.42) 0%,
      transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.bot-hero__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
  animation: bot-rise 0.9s ease both 0.1s;
}

@keyframes bot-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bot-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,194,26,0.12);
  border: 1px solid rgba(255,194,26,0.28);
  border-radius: 40px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.bot-hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: bot-pulse 2.4s ease infinite;
}

@keyframes bot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

.bot-hero__badge span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.bot-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.bot-hero__breadcrumb a,
.bot-hero__breadcrumb span {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.bot-hero__breadcrumb a:hover { color: var(--gold); }
.bot-hero__breadcrumb .sep { color: rgba(255,255,255,0.22); }

.bot-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.bot-hero__title em { font-style: italic; color: var(--gold); }

.bot-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.65rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin: 0 0 34px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.bot-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.bot-hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  padding: 7px 16px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.bot-hero__meta-pill svg { flex-shrink: 0; opacity: 0.70; }

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

.bot-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}

.bot-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.bot-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.82) !important;
  border: 1.5px solid rgba(255,255,255,0.28);
  text-decoration: none !important;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.bot-btn-ghost:hover { border-color: var(--gold); color: var(--gold) !important; background: rgba(255,194,26,0.06); }

.bot-hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.50;
  animation: bot-rise 1s ease both 1s;
}

.bot-hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
  font-family: var(--font-body);
}

.bot-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: bot-scroll-line 2.2s ease infinite;
}

@keyframes bot-scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================================
   2. LAYOUT: STICKY SIDEBAR + MAIN
   ============================================================ */
.bot-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  align-items: start;
}

.bot-sidebar {
  position: sticky;
  top: 90px;
  padding: 0 32px 0 0;
}

.bot-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bot-toc__header {
  background: var(--navy);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-toc__header h2 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.bot-toc__list { list-style: none; padding: 10px 0; margin: 0; }
.bot-toc__list li { margin: 0; }

.bot-toc__list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
  border-left: 2px solid transparent;
  line-height: 1.4;
}

.bot-toc__list a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.bot-toc__list a:hover,
.bot-toc__list a.bot-toc-active {
  color: var(--navy);
  background: rgba(14,45,69,0.04);
  border-left-color: var(--gold);
}

.bot-toc__list a:hover::before,
.bot-toc__list a.bot-toc-active::before { opacity: 1; }

/* Book card */
.bot-book-card {
  margin-top: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.bot-book-card__eyebrow {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  font-family: var(--font-body);
  margin-bottom: 4px;
}

.bot-book-card__price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 2px;
}

.bot-book-card__note {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  font-family: var(--font-body);
  line-height: 1.5;
}

.bot-book-card__btn {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
  margin-bottom: 10px;
}

.bot-book-card__btn:hover { background: var(--gold-light); color: var(--navy) !important; }

.bot-book-card__btn-ghost {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}

.bot-book-card__btn-ghost:hover { border-color: rgba(255,255,255,0.45); color: var(--white) !important; }

/* Quick facts in sidebar */
.bot-facts-card {
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bot-facts-card__header {
  background: var(--cream-dark);
  padding: 14px 20px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-family: var(--font-body);
}

.bot-facts-list { list-style: none; padding: 8px 0; margin: 0; }

.bot-facts-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.bot-facts-list li:last-child { border-bottom: none; }

.bot-facts-list__label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  font-family: var(--font-body);
  white-space: nowrap;
}

.bot-facts-list__value {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  font-family: var(--font-body);
}

/* ============================================================
   3. MAIN CONTENT
   ============================================================ */
.bot-main { min-width: 0; padding-top: 56px; }

.bot-section {
  margin-bottom: 72px;
  scroll-margin-top: 100px;
}

.bot-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bot-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.bot-eyebrow span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.bot-section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 28px;
  letter-spacing: -0.02em;
}

.bot-section-heading em { font-style: italic; color: var(--gold); }

.bot-body {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.85;
  margin: 0 0 18px;
}

/* ============================================================
   4. OVERVIEW BAR
   ============================================================ */
.bot-overview-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.bot-overview-item {
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.bot-overview-icon {
  width: 40px; height: 40px;
  background: rgba(255,194,26,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.bot-overview-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
  font-family: var(--font-body);
}

.bot-overview-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============================================================
   5. HIGHLIGHTS — CHIPS
   ============================================================ */
.bot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.bot-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  transition: background var(--transition), border-color var(--transition);
}

.bot-chip:hover { background: rgba(255,194,26,0.15); border-color: rgba(255,194,26,0.5); }
.bot-chip::before { content: '◈'; color: var(--gold); font-size: 0.7rem; }

/* ============================================================
   6. FEATURE CARDS (why this trek)
   ============================================================ */
.bot-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bot-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.bot-feature-card.bot-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.bot-feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,194,26,0.40); }

.bot-feature-card__icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(255,194,26,0.18), rgba(255,194,26,0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.bot-feature-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.3;
}

.bot-feature-card__desc {
  font-size: 0.83rem;
  color: var(--text-body);
  line-height: 1.70;
  margin: 0;
}

/* ============================================================
   7. ITINERARY — TIMELINE ACCORDION
   ============================================================ */
.bot-timeline { position: relative; }

.bot-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(255,194,26,0.08) 100%);
  border-radius: 2px;
}

.bot-day {
  position: relative;
  padding-left: 56px;
  margin-bottom: 8px;
}

.bot-day::before {
  content: attr(data-day);
  position: absolute;
  left: 0;
  top: 14px;
  width: 42px; height: 42px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  font-family: var(--font-body);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  z-index: 1;
  line-height: 1;
}

.bot-day.bot-day-open::before { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.bot-day__btn {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 22px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}

.bot-day__btn:hover,
.bot-day-open .bot-day__btn { border-color: rgba(255,194,26,0.45); box-shadow: 0 4px 18px rgba(14,45,69,0.10); }

.bot-day__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

.bot-day__meta {
  font-size: 0.70rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
}

.bot-day__chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(14,45,69,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}

.bot-day-open .bot-day__chevron { background: var(--gold); transform: rotate(180deg); }
.bot-day__chevron svg { width: 14px; height: 14px; }
.bot-day-open .bot-day__chevron svg { color: var(--navy); }

.bot-day__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.bot-day-open .bot-day__body { max-height: 600px; }

.bot-day__body-inner {
  padding: 20px 22px 24px;
  border: 1px solid rgba(255,194,26,0.20);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: rgba(255,194,26,0.025);
}

.bot-day__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.bot-day__cell {
  background: var(--white);
  border-radius: 6px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}

.bot-day__cell-label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.bot-day__cell-text {
  font-size: 0.83rem;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.bot-day__desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.72;
  margin: 14px 0 0;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.bot-day__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,194,26,0.10);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--navy);
  line-height: 1.5;
  margin-top: 12px;
}

.bot-day__note-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   8. NOTICE BOX
   ============================================================ */
.bot-notice {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.65;
  font-style: italic;
}

/* ============================================================
   9. BEST TIME BANNER
   ============================================================ */
.bot-best-time {
  background: linear-gradient(135deg, var(--navy) 0%, #143d59 100%);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
  margin-bottom: 0;
}

.bot-best-time__icon { font-size: 2rem; flex-shrink: 0; }
.bot-best-time__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.bot-best-time__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-body);
}

/* ============================================================
   10. INCLUSIONS / EXCLUSIONS
   ============================================================ */
.bot-inex-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bot-inex-card { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }

.bot-inex-card__header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-inex-card--include .bot-inex-card__header { background: var(--navy); }
.bot-inex-card--exclude .bot-inex-card__header { background: #e8f0f7; }

.bot-inex-card__header h3 {
  font-family: var(--font-body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
}

.bot-inex-card--include .bot-inex-card__header h3 { color: var(--gold); }
.bot-inex-card--exclude .bot-inex-card__header h3 { color: var(--text-body); }

.bot-inex-card__body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  padding: 20px 24px;
}

.bot-inex-list { list-style: none; padding: 0; margin: 0; }

.bot-inex-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
}

.bot-inex-list li:last-child { border-bottom: none; }

.bot-inex-list .bot-check {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  font-size: 0.65rem;
  font-weight: 700;
}

.bot-inex-card--include .bot-check { background: rgba(34,197,94,0.15); color: #16a34a; }
.bot-inex-card--exclude .bot-check { background: rgba(239,68,68,0.12); color: #dc2626; }

/* ============================================================
   11. COST TABLE
   ============================================================ */
.bot-cost-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
}

.bot-cost-table thead tr { background: var(--navy); }

.bot-cost-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.bot-cost-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.bot-cost-table tbody tr:hover { background: var(--cream); }
.bot-cost-table tbody tr:last-child { border-bottom: none; }

.bot-cost-table td { padding: 14px 20px; color: var(--text-body); }
.bot-cost-table td:first-child { font-weight: 600; color: var(--navy); }

.bot-cost-note {
  margin-top: 14px;
  font-size: 0.80rem;
  color: var(--text-light);
  line-height: 1.6;
  font-style: italic;
  padding: 12px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}

/* ============================================================
   12. GALLERY
   ============================================================ */
.bot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.bot-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--navy-deep);
}

.bot-gallery-item:first-child { grid-column: 1 / 2; grid-row: 1 / 3; }

.bot-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.55s ease;
  filter: brightness(0.85);
}

.bot-gallery-item:hover img { transform: scale(1.06); filter: brightness(1.0); }

.bot-gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,25,42,0.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.bot-gallery-item:hover .bot-gallery-item__overlay { opacity: 1; }

.bot-gallery-item__label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--white);
}

/* ============================================================
   12. POLICY LINK
   ============================================================ */
.bot-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--white);
  color: var(--navy) !important;
  border: 2px solid var(--navy);
  text-decoration: none !important;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-body);
}

.bot-policy-link:hover { background: var(--navy); color: var(--gold) !important; }

/* ============================================================
   13. SIMILAR TOURS STRIP
   ============================================================ */
.bot-similar {
  background: var(--cream);
  padding: 80px 0;
  margin-top: 40px;
}

.bot-similar__inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bot-similar__header { text-align: center; margin-bottom: 48px; }

.bot-similar__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.bot-similar__eyebrow::before, .bot-similar__eyebrow::after {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.bot-similar__eyebrow span {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); font-family: var(--font-body);
}

.bot-similar__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 0;
}

/* ============================================================
   14. RESPONSIVENESS
   ============================================================ */
@media (max-width: 1024px) {
  .bot-layout { grid-template-columns: 1fr; max-width: 800px; }
  .bot-sidebar { position: static; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .bot-toc { margin-bottom: 0; }
  .bot-feature-grid { grid-template-columns: 1fr; }
  .bot-inex-grid { grid-template-columns: 1fr; }
  .bot-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .bot-gallery-item:first-child { grid-column: 1/3; grid-row: 1/2; }
}

@media (max-width: 768px) {
  .bot-hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .bot-overview-bar { grid-template-columns: 1fr; }
  .bot-day__row { grid-template-columns: 1fr; }
  .bot-sidebar { grid-template-columns: 1fr; }
  .bot-hero__ctas { flex-direction: column; }
  .bot-btn-primary, .bot-btn-ghost { width: 100%; justify-content: center; }
  .bot-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .bot-gallery-item:first-child { grid-column: 1/3; }
  .bot-best-time { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .bot-hero { height: 90svh; }
  .bot-hero__meta-pill:nth-child(n+4) { display: none; }
  .bot-gallery-grid { grid-template-columns: 1fr; }
  .bot-gallery-item:first-child { grid-column: 1; }
  .bot-facts-card { display: none; }
}
