/* ── NIGERIA TOUR PAGE ───────────────────────────── */

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-2);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-back:hover { color: var(--text); background: var(--green-dim); }

/* Truth / quote block */
.ng-truth {
  margin: 2rem auto 0;
  max-width: 640px;
  padding: 1.5rem 2rem;
  background: rgba(34, 197, 94, 0.05);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
}
.ng-truth-quote {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
}

/* Hero */
.ng-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.07) 0%, transparent 60%);
}
.ng-hero-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}
.ng-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.ng-flag-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.ng-flag-big { font-size: 3.5rem; line-height: 1; }
.ng-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  text-align: left;
}
.ng-sub {
  font-size: 1.05rem;
  color: var(--muted-2);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

/* Campaign stats grid */
.ng-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.ng-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  transition: border-color 0.2s, transform 0.2s;
}
.ng-stat-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.ng-stat-val {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ng-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-2);
  margin-top: 0.2rem;
}
.ng-stat-sub { font-size: 0.72rem; color: var(--muted); }

/* Sections */
.ng-section { padding: 5rem 2rem; }
.ng-section-alt { background: var(--bg-2); }
.ng-section-inner { max-width: 1100px; margin: 0 auto; }

/* States grid */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.6rem;
  margin-top: 1rem;
}
.state-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.15s;
}
.state-chip.done {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--green);
  font-weight: 600;
}
.state-chip.pending {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--muted-2);
}
.state-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.state-chip.done .state-check { background: var(--green); color: #000; }
.state-chip.pending .state-check { background: var(--border); }

/* Episodes */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.episode-coming {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}
.ep-note { font-size: 0.85rem; color: var(--muted); }

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; }
.tl-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item.active::before { background: var(--green); }
.tl-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 2px;
  z-index: 1;
}
.tl-item.active .tl-dot { border-color: var(--green); background: var(--green); }
.tl-item.upcoming .tl-dot { border-color: var(--border-2); }
.tl-content { display: flex; flex-direction: column; gap: 0.3rem; }
.tl-date { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); }
.tl-item.upcoming .tl-date { color: var(--muted); }
.tl-title { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.tl-desc { font-size: 0.9rem; color: var(--muted-2); line-height: 1.55; max-width: 480px; }

/* Join grid */
.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1rem;
}
.join-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: border-color 0.2s, transform 0.2s;
}
.join-card:hover { border-color: var(--green); transform: translateY(-3px); }
.join-icon {
  width: 42px; height: 42px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.join-icon svg { width: 20px; height: 20px; }
.join-title { font-size: 1rem; font-weight: 700; color: var(--text); }
.join-desc { font-size: 0.88rem; color: var(--muted-2); line-height: 1.55; }

/* Responsive */
@media (max-width: 760px) {
  .ng-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ng-flag-title { flex-direction: column; gap: 0.6rem; }
  .ng-title { text-align: center; }
}
@media (max-width: 540px) {
  .nav-back-text { display: none; }   /* arrow only on small screens */
}
@media (max-width: 480px) {
  .ng-stats-grid { grid-template-columns: 1fr 1fr; }
  .states-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .btn-label { display: none; }        /* icon-only Buy button on very small screens */
}
