/* =========================================================
   INDUSTRIAL VISIT PAGE — Redesigned Layout
   Loaded solely by industrial-visit.php via $pageExtraCss.
   ========================================================= */

/* ---- Section Scaffolding ---- */
.iv-section {
  padding: 72px 0 88px;
}
.iv-section--tint {
  background: var(--cream);
}
.iv-section--white {
  background: #ffffff;
}

.iv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 12px;
}
.iv-kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold-500);
}

.iv-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--green-900);
  max-width: 760px;
  margin: 0 0 14px;
}

.iv-lede {
  max-width: 780px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 44px;
}

/* =========================================================
   STATS / HIGHLIGHTS STRIP
   ========================================================= */
.iv-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.iv-stat-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 16px -8px rgba(10, 61, 38, 0.08);
  transition: transform .2s ease, border-color .2s ease;
}

.iv-stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-500);
}

.iv-stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--green-900);
  line-height: 1;
  margin-bottom: 6px;
}

.iv-stat-number span {
  color: var(--gold-500);
}

.iv-stat-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   OBJECTIVES & EXPOSURE PILLARS (4-Card Grid)
   ========================================================= */
.iv-objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.iv-obj-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.iv-obj-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-700);
}

.iv-obj-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .2s ease, color .2s ease;
}

.iv-obj-card:hover .iv-obj-icon {
  background: var(--green-900);
  color: var(--gold-500);
}

.iv-obj-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 10px;
  line-height: 1.35;
}

.iv-obj-card p {
  font-size: .88rem;
  line-height: 1.62;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   TOUR PROCESS / ROADMAP (4-Step Workflow)
   ========================================================= */
.iv-workflow {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  margin-bottom: 72px;
}

.iv-workflow-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.iv-workflow-head h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 8px;
}

.iv-workflow-head p {
  font-size: .94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.iv-workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.iv-step-item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.iv-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-900);
  color: var(--gold-500);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: .92rem;
  margin-bottom: 14px;
}

.iv-step-item h4 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.iv-step-item p {
  font-size: .84rem;
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0;
}

/* =========================================================
   TOUR REPORTS ARCHIVE (Rich Grid of Session Cards)
   ========================================================= */
.iv-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.iv-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}

.iv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-700);
}

.iv-card--featured {
  border: 2px solid var(--gold-500);
  background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
}

.iv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.iv-card-session {
  font-family: 'Poppins', sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--green-900);
}

.iv-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.iv-card--featured .iv-card-tag {
  background: #fef7e6;
  color: #b37400;
  border: 1px solid rgba(240, 168, 0, 0.4);
}

.iv-card-title {
  font-size: .98rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.iv-card-desc {
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}

.iv-card-action {
  margin-top: auto;
}

.iv-card-action .btn {
  width: 100%;
  padding: 10px 18px;
  font-size: .88rem;
}

/* Notice box for pandemic period */
.iv-pandemic-notice {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.iv-pandemic-notice svg {
  color: var(--gold-600);
  flex-shrink: 0;
}

.iv-pandemic-notice p {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   CONNECTED PATHWAYS STRIP
   ========================================================= */
.iv-pathways {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
}

.iv-pathways-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}

.iv-pathways-text p {
  font-size: .88rem;
  color: var(--ink-soft);
  margin: 0;
}

.iv-pathways-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.iv-pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green-900);
  transition: all .2s ease;
}

.iv-pathway-link:hover {
  background: var(--green-900);
  color: #ffffff;
  border-color: var(--green-900);
}

.iv-pathway-link svg {
  width: 14px;
  height: 14px;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .iv-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .iv-objectives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .iv-workflow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .iv-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .iv-section {
    padding: 52px 0 68px;
  }
  .iv-stat-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .iv-objectives-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .iv-workflow {
    padding: 30px 20px;
  }
  .iv-workflow-steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .iv-archive-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .iv-pathways {
    padding: 24px 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .iv-pathways-links {
    width: 100%;
  }
  .iv-pathway-link {
    width: 100%;
    justify-content: center;
  }
}
