/* ============================================================
   TABULA RASA TRAVEL CONSULTANCY — components.css
   Reusable UI components: cards, badges, section headers, etc.
   Supplements global.css — loaded on pages that need it.
   
   NOTE: Core design tokens, nav, footer, and basic shared styles
   live in global.css. This file provides extended component 
   patterns used across multiple inner pages.
   ============================================================ */

/* ── SECTION HEADER PATTERN ─────────────────────────────────── */
.section-header-block { text-align: center; margin-bottom: 4rem; }
.section-header-block h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--navy); margin: 0.8rem 0;
}
.section-header-block.light h2 { color: var(--white); }
.section-header-block p {
  font-size: 0.97rem; color: var(--text-soft);
  font-weight: 300; line-height: 1.75;
  max-width: 56ch; margin: 0 auto;
}
.section-header-block.light p { color: rgba(255,255,255,0.55); }

/* ── STAT STRIP ──────────────────────────────────────────────── */
.stat-strip {
  display: grid; border: 1px solid var(--border);
}
.stat-strip-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-strip-item:last-child { border-right: none; }
.stat-strip-item::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 2rem; height: 3px; background: var(--gold);
}
.stat-strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-strip-label {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); margin-top: 0.5rem; font-weight: 500;
}

/* ── ICON CARD ───────────────────────────────────────────────── */
.icon-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.25s, box-shadow 0.25s;
}
.icon-card:hover { background: var(--off-white); box-shadow: 0 8px 32px rgba(11,31,58,0.08); }
.icon-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.icon-card:hover::after { transform: scaleX(1); }
.icon-card-icon {
  width: 50px; height: 50px; background: rgba(201,168,76,0.1);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.4rem;
}
.icon-card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 2; }
.icon-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.6rem; line-height: 1.3;
}
.icon-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; font-weight: 300; }

/* ── NUMBERED CHECK LIST ─────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0; }
.check-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid var(--border);
}
.check-item:last-child { border-bottom: none; }
.check-item-dot {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.1rem;
}
.check-item-dot svg { width: 11px; height: 11px; fill: none; stroke: var(--navy); stroke-width: 2.5; }
.check-item-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.check-item-desc { font-size: 0.82rem; color: var(--text-soft); font-weight: 300; line-height: 1.55; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1.5rem; font-weight: 400;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.3; }

/* ── PILL BADGE ──────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.3rem 0.85rem;
  font-size: 0.63rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-ghost-gold { background: rgba(201,168,76,0.1); color: var(--gold); }
.badge-ghost-navy { background: rgba(11,31,58,0.06); color: var(--navy); }

/* ── QUOTE PULL ──────────────────────────────────────────────── */
.pull-quote {
  padding: 2.5rem 3rem; border-left: 4px solid var(--gold);
  background: rgba(201,168,76,0.05); position: relative;
}
.pull-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-style: italic; font-weight: 400;
  color: var(--navy); line-height: 1.55;
}
.pull-quote cite {
  display: block; margin-top: 0.9rem;
  font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; font-style: normal;
}
