/* ============================================================
   TRAVEL INFO HUB — travel-info/index.php
   Found Bhutan  |  travel-info-hub.css
   All variables from tokens.css :root
   ============================================================ */

/* ── Layout ─────────────────────────────────────────────────── */
.ti-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.ti-hero {
  background: var(--navy) !important;
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
}

.ti-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 90% 30%, rgba(255,194,26,.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 10% 70%, rgba(255,194,26,.04) 0%, transparent 65%);
  pointer-events: none;
}

.ti-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ti-hero__eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.ti-hero__title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 20px;
}

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

.ti-hero__sub {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 560px;
}

.ti-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  text-align: center;
}

.ti-hero__pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  font-size: .83rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 20px;
}

/* ── Quick links bar ─────────────────────────────────────────── */
.ti-quickbar {
  background: var(--gold);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ti-quickbar::-webkit-scrollbar { display: none; }

.ti-quickbar__inner {
  display: flex;
  align-items: stretch;
  min-width: max-content;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.ti-quickbar__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  font-size: .83rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px solid rgba(14,45,69,.12);
  transition: background .15s;
}

.ti-quickbar__link:hover {
  background: rgba(14,45,69,.08);
  color: var(--navy);
}

.ti-quickbar__link:last-child { border-right: none; }

/* ── Main content ────────────────────────────────────────────── */
.ti-main {
  background: var(--light-bg);
  padding: 64px 0 80px;
}

.ti-section-head {
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy);
}

.ti-section-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}

.ti-section-sub {
  font-size: .9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Tip box ─────────────────────────────────────────────────── */
.ti-tip {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 48px;
}

.ti-tip__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ti-tip__label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.ti-tip__text {
  font-size: .95rem;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin: 0;
}

.ti-tip__text strong { color: var(--white); }

/* ── Category groups ─────────────────────────────────────────── */
.ti-category {
  margin-bottom: 44px;
}

.ti-category__title {
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ti-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-border);
}

/* ── Guide cards ─────────────────────────────────────────────── */
.ti-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ti-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid rgba(14,45,69,.09);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s, transform .18s var(--ease);
  position: relative;
}

.ti-card::after {
  content: '→';
  position: absolute;
  right: 18px;
  font-size: .9rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
}

.ti-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
  color: var(--navy);
}

.ti-card:hover::after {
  opacity: 1;
  transform: translateX(3px);
}

.ti-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background .2s;
}

.ti-card:hover .ti-card__icon { background: var(--gold); }

.ti-card__body {
  min-width: 0;
  padding-right: 22px;
}

.ti-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ti-card__label {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Why box ─────────────────────────────────────────────────── */
.ti-why {
  background: var(--white);
  border: 1px solid rgba(14,45,69,.09);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.ti-why__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
}

.ti-why__title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.ti-why__text {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.ti-cta {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  padding: 72px 0;
  text-align: center;
}

.ti-cta__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 14px;
}

.ti-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}

.ti-cta__sub {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.ti-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ti-cta__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
  padding: 15px 36px;
  border-radius: var(--btn-radius);
  text-decoration: none;
  transition: background .2s, transform .18s var(--ease);
  box-shadow: 0 4px 16px rgba(255,194,26,.28);
}

.ti-cta__btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  color: var(--navy);
}

.ti-cta__btn--ghost {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  box-shadow: none;
}

.ti-cta__btn--ghost:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .ti-list { grid-template-columns: 1fr; }
  .ti-why { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .ti-tip { padding: 22px; }
}

@media (max-width: 480px) {
  .ti-hero { padding: 52px 0 44px; }
  .ti-cta__actions { flex-direction: column; align-items: center; }
}

/* ── Explicit centering — overrides Bootstrap heading resets ─── */
.ti-cta__eyebrow,
.ti-cta__title,
.ti-cta__sub,
.ti-hero__eyebrow,
.ti-hero__title,
.ti-hero__sub,
.ti-section-title,
.ti-section-sub { text-align: center !important; }

.ti-cta { text-align: center !important; }
.ti-cta__actions { justify-content: center !important; }
