/* tour-tigers-nest-day.css — extracted from bhutan-tour-packages/day-tours/tigers-nest-day-tour.php */

/* ============================================================
   TIGER'S NEST DAY TOUR PAGE — FOUND BHUTAN
   Palette: #0e2d45 (navy), #ffc21a (gold), #ffffff, #f5f0e8 (cream)
   Typography: Playfair Display + Roboto
   Prefix: tn- (tigers nest)
   ============================================================ */

:root {
  --navy:         #0e2d45;
  --navy-deep:    #07192a;
  --gold:         #ffc21a;
  --gold-light:   #ffd24d;
  --cream:        #f5f0e8;
  --cream-dark:   #ede5d4;
  --white:        #ffffff;
  --text-body:    #3d4a58;
  --text-light:   #6b7a8d;
  --border:       rgba(14,45,69,0.10);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Roboto', sans-serif;
  --radius:       6px;
  --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);
}

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

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

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

@keyframes tn-kb {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}

.tn-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,25,42,0.97) 0%,
      rgba(7,25,42,0.55) 45%,
      rgba(7,25,42,0.10) 100%),
    linear-gradient(to right,
      rgba(7,25,42,0.45) 0%,
      transparent 65%);
  pointer-events: none;
  z-index: 1;
}

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

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

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

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

@keyframes tn-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.tn-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);
}

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

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

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

.tn-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

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

.tn-hero__meta-pill svg { flex-shrink: 0; opacity: 0.75; }

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

.tn-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);
}
.tn-btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--navy) !important; }

.tn-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.32);
  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);
}
.tn-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(255,194,26,0.06);
}

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

.tn-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);
}

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

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

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

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

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

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

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

.tn-toc__list li { margin: 0; }

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

.tn-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);
}

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

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

/* Book now card */
.tn-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);
}

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

.tn-book-card__tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 6px;
}

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

.tn-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;
}
.tn-book-card__btn:hover { background: var(--gold-light); }

.tn-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);
}
.tn-book-card__btn-ghost:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white) !important;
}

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

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

.tn-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.tn-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.tn-eyebrow span {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.tn-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;
}
.tn-section-heading em { font-style: italic; color: var(--gold); }

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

/* ============================================================
   4. OVERVIEW META BAR
   ============================================================ */
.tn-meta-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);
}

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

.tn-meta-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.2rem;
}

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

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

/* ============================================================
   5. HIGHLIGHTS — FEATURE CARDS
   ============================================================ */
.tn-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tn-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  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);
}

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

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

.tn-highlight-card__icon {
  width: 40px; height: 40px;
  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.2rem;
}

.tn-highlight-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.3;
}

.tn-highlight-card__desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.68;
  margin: 0;
}

/* ============================================================
   6. ITINERARY ACCORDION
   ============================================================ */
.tn-itinerary { display: flex; flex-direction: column; gap: 10px; }

.tn-day {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}

.tn-day:hover { border-color: rgba(255,194,26,0.30); }
.tn-day.tn-day-open { border-color: rgba(255,194,26,0.45); }

.tn-day__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.tn-day__btn:hover { background: rgba(255,194,26,0.04); }
.tn-day-open .tn-day__btn { background: rgba(255,194,26,0.05); }

.tn-day__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  min-width: 42px;
  transition: opacity var(--transition);
  flex-shrink: 0;
}

.tn-day-open .tn-day__num,
.tn-day__btn:hover .tn-day__num { opacity: 0.8; }

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

.tn-day__arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
  color: var(--text-light);
  font-size: 0.7rem;
}

.tn-day-open .tn-day__arrow {
  transform: rotate(180deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.tn-day__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.tn-day__inner {
  padding: 0 24px 24px 82px;
  border-top: 1px solid var(--border);
}

.tn-day__inner p {
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--text-body);
  margin: 16px 0 8px;
}

.tn-day__inner ul {
  padding-left: 0;
  list-style: none;
  margin: 16px 0 0;
}

.tn-day__inner ul li {
  font-size: 0.92rem;
  line-height: 1.82;
  color: var(--text-body);
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(14,45,69,0.04);
}

.tn-day__inner ul li:last-child { border-bottom: none; }

.tn-day__inner ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

.tn-day__inner strong { color: var(--navy); font-weight: 600; }

/* Important info note */
.tn-note {
  background: rgba(255,194,26,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Customise note */
.tn-customise {
  margin-top: 24px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tn-customise__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.tn-customise__text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
}

/* ============================================================
   7. INCLUSIONS / EXCLUSIONS
   ============================================================ */
.tn-inc-exc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tn-inc-box, .tn-exc-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tn-inc-box__head, .tn-exc-box__head {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tn-inc-box__head { background: var(--navy); color: var(--gold); }
.tn-exc-box__head { background: #4a1010; color: #ffb3b3; }

.tn-inc-box__body, .tn-exc-box__body {
  background: var(--white);
  padding: 16px 0;
}

.tn-inc-list, .tn-exc-list {
  list-style: none;
  padding: 0; margin: 0;
}

.tn-inc-list li, .tn-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 22px;
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-body);
  border-bottom: 1px solid rgba(14,45,69,0.04);
}

.tn-inc-list li:last-child,
.tn-exc-list li:last-child { border-bottom: none; }

.tn-inc-list li::before {
  content: '✓';
  color: #2d7a2d;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.tn-exc-list li::before {
  content: '✕';
  color: #c0392b;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   8. TOUR COST TABLE
   ============================================================ */
.tn-cost-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.tn-cost-table thead tr { background: var(--navy); color: var(--gold); }

.tn-cost-table th {
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tn-cost-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  line-height: 1.5;
}

.tn-cost-table tbody tr { background: var(--white); }
.tn-cost-table tbody tr:nth-child(even) { background: rgba(14,45,69,0.025); }
.tn-cost-table tbody tr:hover { background: rgba(255,194,26,0.05); }
.tn-cost-table tbody tr:last-child td { border-bottom: none; }

.tn-cost-note {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

/* ============================================================
   9. POLICY LINK
   ============================================================ */
.tn-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}
.tn-policy-link:hover { color: var(--gold); border-color: transparent; }

/* ============================================================
   10. SIMILAR TOURS SECTION
   ============================================================ */
.tn-similar {
  background: var(--cream);
  border-top: 1px solid var(--cream-dark);
  padding: 72px 0;
}

.tn-similar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.tn-similar__header { margin-bottom: 40px; text-align: center; }

.tn-similar__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 8px 0 0;
}

/* ============================================================
   11. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tn-layout          { grid-template-columns: 220px 1fr; }
  .tn-highlights-grid { grid-template-columns: 1fr; }
  .tn-inc-exc         { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .tn-layout {
    grid-template-columns: 1fr;
    padding: 0 16px 60px;
  }
  .tn-sidebar {
    position: static;
    padding: 0;
    margin-top: 32px;
    order: -1;
  }
  .tn-hero__content   { padding-bottom: 60px; }
  .tn-hero__title     { font-size: clamp(2rem, 4.5vw, 3.6rem); }
  .tn-main            { padding-top: 40px; }
  .tn-meta-bar        { grid-template-columns: 1fr; }
  .tn-highlights-grid { grid-template-columns: 1fr; }
  .tn-inc-exc         { grid-template-columns: 1fr; }
  .tn-day__inner      { padding-left: 24px; }
}

@media (max-width: 480px) {
  .tn-hero__ctas  { flex-direction: column; }
  .tn-btn-primary,
  .tn-btn-ghost   { justify-content: center; }
  .tn-cost-table  { font-size: 0.78rem; }
  .tn-cost-table th,
  .tn-cost-table td { padding: 10px 12px; }
}
