/* tour-honeymoon.css — extracted from bhutan-tour-packages/honeymoon-tour.php */

/* ============================================================
   HONEYMOON TOUR PAGE — FOUND BHUTAN
   Palette: #0e2d45 navy · #ffc21a gold · #07192a deep · #f5f0e8 cream
             #8b4a6b rose-plum accent for romance
   Typography: Playfair Display (luxe editorial serif) + Roboto
   Aesthetic: Warm romantic luxury — think candlelight, rose gold, velvet
   ============================================================ */

:root {
  --navy:       #0e2d45;
  --navy-deep:  #07192a;
  --navy-mid:   #122638;
  --gold:       #ffc21a;
  --gold-light: #ffd24d;
  --gold-dim:   rgba(255,194,26,0.15);
  --rose:       #c4748e;
  --rose-light: #f0d5de;
  --rose-dim:   rgba(196,116,142,0.12);
  --cream:      #f5f0e8;
  --cream-dark: #ede5d4;
  --white:      #ffffff;
  --text-body:  #3d4a58;
  --text-muted: #6b7a8d;
  --border:     rgba(14,45,69,0.09);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Roboto', sans-serif;
  --radius:     8px;
  --shadow-sm:  0 2px 12px rgba(14,45,69,0.07);
  --shadow-md:  0 8px 32px rgba(14,45,69,0.12);
  --shadow-lg:  0 20px 60px rgba(14,45,69,0.18);
  --ease:       cubic-bezier(0.4,0,0.2,1);
}

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

/* ============================================================
   1. HERO — warm, cinematic, intimate
   ============================================================ */
.ht-hero {
  position: relative;
  height: 95svh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
}

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

@keyframes ht-kb {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}

/* Warm romantic gradient overlay */
.ht-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,25,42,0.94) 0%,
      rgba(7,25,42,0.48) 45%,
      rgba(7,25,42,0.15) 100%),
    linear-gradient(to right,
      rgba(7,25,42,0.30) 0%,
      transparent 55%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle rose warm tint in the lower third */
.ht-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 90%, rgba(196,116,142,0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

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

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

/* Heart motif eyebrow */
.ht-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.ht-hero__eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: var(--rose);
  flex-shrink: 0;
}

.ht-hero__eyebrow span {
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose);
}

.ht-hero__eyebrow-heart {
  color: var(--rose);
  font-size: 0.9rem;
  animation: ht-heartbeat 2.4s ease infinite;
}

@keyframes ht-heartbeat {
  0%, 100% { transform: scale(1); }
  14%       { transform: scale(1.25); }
  28%       { transform: scale(1); }
  42%       { transform: scale(1.15); }
  56%       { transform: scale(1); }
}

/* Main h1 */
.ht-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

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

.ht-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin: 0 0 38px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Meta pills */
.ht-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.ht-hero__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 18px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.ht-hero__pill svg { opacity: 0.65; flex-shrink: 0; }

/* CTAs */
.ht-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ht-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.25s var(--ease), transform 0.2s var(--ease);
}
.ht-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.ht-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: rgba(255,255,255,0.80) !important;
  border: 1.5px solid rgba(255,255,255,0.28);
  text-decoration: none !important;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.ht-btn-ghost:hover { border-color: var(--rose); color: var(--rose) !important; background: rgba(196,116,142,0.08); }

/* Scroll indicator */
.ht-hero__scroll {
  position: absolute;
  bottom: 30px;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.45;
  animation: ht-rise 1s ease both 1.2s;
}

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

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

@keyframes ht-scroll-anim {
  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
   ============================================================ */
.ht-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 80px;
  align-items: start;
}

/* Sidebar */
.ht-sidebar {
  position: sticky;
  top: 90px;
  padding-right: 32px;
}

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

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

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

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

.ht-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;
  border-left: 2px solid transparent;
  transition: color 0.22s, background 0.22s, border-color 0.22s;
  line-height: 1.4;
}

.ht-toc__list a::before {
  content: '♡';
  font-size: 0.7rem;
  color: var(--rose);
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.22s;
}

.ht-toc__list a:hover,
.ht-toc__list a.ht-toc-active {
  color: var(--navy);
  background: rgba(196,116,142,0.06);
  border-left-color: var(--rose);
}
.ht-toc__list a:hover::before,
.ht-toc__list a.ht-toc-active::before { opacity: 1; }

/* Book card */
.ht-book-card {
  margin-top: 18px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(196,116,142,0.15);
  position: relative;
  overflow: hidden;
}

.ht-book-card::before {
  content: '♡';
  position: absolute;
  right: -10px;
  bottom: -16px;
  font-size: 7rem;
  color: rgba(196,116,142,0.06);
  line-height: 1;
  pointer-events: none;
}

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

.ht-book-card__price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  font-style: italic;
}

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

.ht-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 0.22s;
  margin-bottom: 10px;
}
.ht-book-card__btn:hover { background: var(--gold-light); color: var(--navy) !important; }

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

/* Main column */
.ht-main { min-width: 0; padding-top: 60px; }

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

/* Eyebrow */
.ht-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

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

.ht-eyebrow span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
  font-family: var(--font-body);
}

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

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

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

/* ============================================================
   3. OVERVIEW META BAR
   ============================================================ */
.ht-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);
}

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

.ht-overview-icon {
  width: 40px;
  height: 40px;
  background: var(--rose-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

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

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

/* ============================================================
   4. WHY BHUTAN — romantic feature cards
   ============================================================ */
.ht-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ht-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s, box-shadow 0.25s;
}

.ht-why-card.ht-visible { opacity: 1; transform: translateY(0); }
.ht-why-card:hover { border-color: rgba(196,116,142,0.38); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.ht-why-card__icon {
  width: 42px;
  height: 42px;
  background: var(--rose-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.ht-why-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;
}

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

/* ============================================================
   5. HIGHLIGHTS — romantic chip grid
   ============================================================ */
.ht-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.ht-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, box-shadow 0.25s;
}

.ht-highlight-card.ht-visible { opacity: 1; transform: translateY(0); }
.ht-highlight-card:hover { border-color: rgba(196,116,142,0.38); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.ht-highlight-card__icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--rose-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ht-highlight-card__text {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin: 0;
}

/* Best time banner */
.ht-best-time {
  background: linear-gradient(135deg, var(--navy) 0%, #143d59 100%);
  border-radius: 10px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-md);
}

.ht-best-time__icon { font-size: 1.8rem; flex-shrink: 0; }

.ht-best-time__label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.ht-best-time__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  margin: 0;
  font-family: var(--font-body);
}

/* ============================================================
   6. ITINERARY — romantic timeline accordion
   ============================================================ */
.ht-timeline { position: relative; }

.ht-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose) 0%, rgba(196,116,142,0.06) 100%);
  border-radius: 2px;
}

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

.ht-day__num {
  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.60rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  z-index: 1;
  line-height: 1;
  text-align: center;
}

.ht-day.ht-day-open .ht-day__num {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.ht-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;
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ht-day__btn:hover,
.ht-day-open .ht-day__btn {
  border-color: rgba(196,116,142,0.42);
  box-shadow: 0 4px 18px rgba(14,45,69,0.10);
}

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

.ht-day__tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
}

.ht-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 0.25s, transform 0.30s;
}

.ht-day-open .ht-day__chevron { background: var(--rose); transform: rotate(180deg); }
.ht-day__chevron svg { width: 14px; height: 14px; }
.ht-day-open .ht-day__chevron svg { color: var(--white); }

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

.ht-day-open .ht-day__body { max-height: 700px; }

.ht-day__body-inner {
  padding: 22px 24px;
  border: 1px solid rgba(196,116,142,0.16);
  border-top: none;
  border-radius: 0 0 8px 8px;
  background: rgba(196,116,142,0.025);
}

/* Activity list inside accordion */
.ht-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ht-activity-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
}

.ht-activity-list li:last-child { border-bottom: none; padding-bottom: 0; }

.ht-activity-list li::before {
  content: '♡';
  color: var(--rose);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.ht-activity-list strong { color: var(--navy); font-weight: 600; }

/* Notice box */
.ht-notice {
  background: var(--cream);
  border-left: 3px solid var(--rose);
  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;
}

/* ============================================================
   7. SPECIAL EXPERIENCES — romantic feature strip
   ============================================================ */
.ht-experiences {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  padding: 44px 40px;
  margin-bottom: 72px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ht-experiences::before {
  content: '♡';
  position: absolute;
  right: -15px;
  bottom: -40px;
  font-size: 16rem;
  color: rgba(196,116,142,0.05);
  line-height: 1;
  pointer-events: none;
}

.ht-experiences__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.ht-experiences__heading em { font-style: italic; color: var(--rose); }

.ht-exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ht-exp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.25s, background 0.25s;
}

.ht-exp-card.ht-visible { opacity: 1; transform: translateY(0); }
.ht-exp-card:hover { border-color: rgba(196,116,142,0.35); background: rgba(255,255,255,0.08); }

.ht-exp-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.ht-exp-card__title {
  font-family: var(--font-display);
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.3;
}

.ht-exp-card__desc {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
  font-family: var(--font-body);
}

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

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

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

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

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

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

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

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

.ht-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;
}

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

.ht-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.63rem;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

/* ============================================================
   10. POLICY
   ============================================================ */
.ht-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.74rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition: background 0.22s, color 0.22s;
}
.ht-policy-link:hover { background: var(--navy); color: var(--gold) !important; }

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

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

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

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

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

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

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

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

/* ============================================================
   12. SIMILAR TOURS
   ============================================================ */
.ht-similar { background: var(--cream); padding: 80px 0; }

.ht-similar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ht-similar__header { text-align: center; margin-bottom: 48px; }

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

/* ============================================================
   13. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ht-layout { grid-template-columns: 1fr; max-width: 800px; }
  .ht-sidebar { position: static; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .ht-why-grid { grid-template-columns: 1fr; }
  .ht-highlights-grid { grid-template-columns: 1fr 1fr; }
  .ht-exp-grid { grid-template-columns: 1fr 1fr; }
  .ht-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .ht-gallery-item:first-child { grid-column: 1/3; grid-row: 1/2; }
  .ht-inex-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .ht-hero__title { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .ht-overview-bar { grid-template-columns: 1fr; }
  .ht-experiences { padding: 32px 24px; }
  .ht-exp-grid { grid-template-columns: 1fr; }
  .ht-highlights-grid { grid-template-columns: 1fr; }
  .ht-sidebar { grid-template-columns: 1fr; }
  .ht-hero__ctas { flex-direction: column; }
  .ht-btn-primary, .ht-btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .ht-hero { height: 88svh; }
  .ht-gallery-grid { grid-template-columns: 1fr; }
  .ht-gallery-item:first-child { grid-column: 1; grid-row: auto; }
}
