/* travel-info-cancellation.css — page-specific styles */
/* ============================================================
   ADDITIONAL COMPONENTS — Tour Cancellation Policy page
   ============================================================ */

/* ── GROUP HEADING (Section A / Section B) ──────────────── */
.ti-group-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 48px 0 28px;
}
.ti-group-heading::after {
  content: ''; flex: 1; height: 1px;
  background: var(--ti-border);
}
.ti-group-heading h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700; color: var(--ti-navy);
  margin: 0; white-space: nowrap; letter-spacing: -0.01em;
}
.ti-group-heading__badge {
  background: var(--ti-gold); color: var(--ti-navy);
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px;
  white-space: nowrap; flex-shrink: 0;
}

/* ── POLICY SECTION CARD ────────────────────────────────── */
.ti-policy-section {
  background: #fff; border-radius: var(--ti-radius);
  box-shadow: var(--ti-shadow-sm); padding: 32px 36px;
  margin-bottom: 20px; scroll-margin-top: 100px;
  transition: box-shadow 0.22s;
  border: 1px solid var(--ti-border);
}
.ti-policy-section:hover { box-shadow: var(--ti-shadow-md); }
.ti-policy-section__header {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px;
}
.ti-policy-section__number {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ti-gold-pale); color: var(--ti-navy);
  font-size: 0.7rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.ti-policy-section__title {
  font-size: 1.08rem; font-weight: 700; color: var(--ti-navy);
  margin: 0; line-height: 1.3;
}
.ti-policy-section p { font-size: 0.9rem; line-height: 1.82; color: var(--ti-text-mid); margin: 0 0 12px; }
.ti-policy-section p:last-child { margin-bottom: 0; }
.ti-policy-section ul { margin: 8px 0 12px; padding: 0; list-style: none; }
.ti-policy-section ul li {
  position: relative; padding-left: 20px;
  font-size: 0.9rem; line-height: 1.75;
  color: var(--ti-text-mid); margin-bottom: 8px;
}
.ti-policy-section ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--ti-gold);
}
.ti-policy-section ul li strong { color: var(--ti-navy); font-weight: 600; }

/* ── CANCELLATION TIMELINE ──────────────────────────────── */
.ti-timeline { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.ti-timeline__item {
  display: grid; grid-template-columns: 180px 1fr;
  border-radius: 5px; overflow: hidden;
  border: 1px solid var(--ti-border);
}
.ti-timeline__when {
  background: var(--ti-navy); color: #fff;
  padding: 14px 18px; font-size: 0.78rem;
  font-weight: 600; line-height: 1.4;
  display: flex; align-items: center;
}
.ti-timeline__outcome {
  padding: 14px 18px; font-size: 0.85rem;
  line-height: 1.5; display: flex; align-items: center;
}
.ti-timeline__item--full .ti-timeline__outcome  { background: #e9f7ef; color: #1a6b3a; font-weight: 600; }
.ti-timeline__item--half .ti-timeline__outcome  { background: #fff8e6; color: #92600a; font-weight: 600; }
.ti-timeline__item--none .ti-timeline__outcome  { background: #fdecea; color: #9b2c2c; font-weight: 600; }
.ti-timeline__item--info .ti-timeline__outcome  { background: #eef4ff; color: #2c5282; font-weight: 500; }

/* ── POLICY NOTE ────────────────────────────────────────── */
.ti-policy-note {
  display: flex; gap: 12px;
  background: var(--ti-gold-pale);
  border: 1px solid var(--ti-gold-bdr);
  border-radius: var(--ti-radius);
  padding: 14px 18px; margin-top: 14px;
}
.ti-policy-note__icon { width: 18px; height: 18px; color: var(--ti-gold-dark); flex-shrink: 0; margin-top: 1px; }
.ti-policy-note p { font-size: 0.82rem !important; color: var(--ti-navy) !important; margin: 0 !important; line-height: 1.6 !important; }

/* ── HIGHLIGHT BOX (dark navy) ──────────────────────────── */
.ti-policy-highlight {
  background: linear-gradient(135deg, var(--ti-navy-dark) 0%, var(--ti-navy) 100%);
  border-radius: var(--ti-radius); padding: 24px 28px; margin-top: 16px;
}
.ti-policy-highlight p { color: rgba(255,255,255,0.88) !important; font-size: 0.9rem !important; line-height: 1.75 !important; margin: 0 !important; }
.ti-policy-highlight strong { color: var(--ti-gold) !important; }

/* ── PILL ROW ───────────────────────────────────────────── */
.ti-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ti-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
}
.ti-pill--navy  { background: var(--ti-navy); color: var(--ti-gold); }
.ti-pill--gold  { background: var(--ti-gold); color: var(--ti-navy); }
.ti-pill--light { background: rgba(20,61,89,0.07); color: var(--ti-navy); }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 700px) {
  .ti-policy-section { padding: 22px 20px; }
  .ti-timeline__item  { grid-template-columns: 1fr; }
  .ti-timeline__when  { border-bottom: 1px solid rgba(255,255,255,0.12); padding: 10px 14px; }
  .ti-timeline__outcome { padding: 10px 14px; }
}
