/* ============================================================
   academics.css — Genesis International School
   Premium Academics Page Styles
   ============================================================ */

/* ----------------------------------------------------------
   CSS Variables
   ---------------------------------------------------------- */
:root {
  --brand-navy:   #18213b;
  --brand-ice:    #eef5ff;
  --brand-slate:  #37435b;
  --brand-gold:   #d3a55f;
  --brand-cream:  #f6f2ea;
  --brand-white:  #ffffff;
  --brand-soft:   rgba(255,255,255,0.88);
  --shadow-soft:  0 28px 80px rgba(23,37,72,0.12);

  --genesis-red:  #8B0000;
  --genesis-blue: #46AADC;
  --soft-slate:   #3B4757;
  --soft-text:    #555555;
  --muted:        #777777;

  --gold-grad:    linear-gradient(135deg, #d3a55f 0%, #e8c07b 100%);
  --navy-grad:    linear-gradient(135deg, #18213b 0%, #1e2d50 100%);
  --card-radius:  28px;
  --section-pad:  100px 0;
}

/* ----------------------------------------------------------
   Global Reset / Utility
   ---------------------------------------------------------- */
html { scroll-behavior: smooth; }

.acad-section { padding: var(--section-pad); }

/* matches the .eyebrow class from new-about.css */
.eyebrow,
.acad-eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--genesis-red);
  margin-bottom: 14px;
}

.acad-section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--soft-slate);
  line-height: 1.1;
  margin-bottom: 18px;
}

.acad-section-intro {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--soft-text);
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 56px;
}

/* ----------------------------------------------------------
   1. HERO SECTION
   ---------------------------------------------------------- */
.acad-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.acad-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/gallery-4.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.acad-hero:hover .acad-hero-bg { transform: scale(1); }

.acad-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 22, 42, 0.82) 0%,
    rgba(24, 33, 59, 0.72) 60%,
    rgba(139, 0, 0, 0.20) 100%
  );
  z-index: 1;
}

.acad-hero-body {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.acad-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.acad-hero-breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s;
}
.acad-hero-breadcrumb a:hover { color: var(--brand-gold); }
.acad-hero-breadcrumb span { color: rgba(255,255,255,0.35); }
.acad-hero-breadcrumb .current { color: var(--brand-gold); font-weight: 500; }

.acad-hero h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 76px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.0;
  margin-bottom: 24px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.acad-hero-tagline {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

.acad-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 36px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.acad-hero-scroll::after {
  content: '';
  width: 5px;
  height: 10px;
  background: rgba(255,255,255,0.65);
  border-radius: 99px;
  animation: heroScroll 1.8s ease-in-out infinite;
}

@keyframes heroScroll {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ----------------------------------------------------------
   2. CURRICULUM TABS (CBSE / Cambridge)
   ---------------------------------------------------------- */
.acad-curriculum-tabs {
  padding: 80px 0 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 60%);
}

.acad-curr-tab-bar {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.acad-curr-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 38px;
  border-radius: 999px;
  border: 2px solid var(--brand-navy);
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  letter-spacing: 0.04em;
}

.acad-curr-tab.active,
.acad-curr-tab:hover {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 8px 30px rgba(24,33,59,0.22);
}

.acad-curr-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.acad-curr-pane.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Cambridge Coming Soon */
.acad-coming-soon-card {
  max-width: 580px;
  margin: 0 auto 80px;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-ice) 100%);
  border: 1px solid rgba(44,60,88,0.10);
  border-radius: var(--card-radius);
  padding: 72px 48px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.acad-coming-soon-card .acad-coming-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(211,165,95,0.96), rgba(255,255,255,0.22));
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 30px;
  color: var(--brand-navy);
  box-shadow: 0 18px 36px rgba(211,165,95,0.25);
}

.acad-coming-soon-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--soft-slate);
  margin-bottom: 14px;
}

.acad-coming-soon-card p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--soft-text);
  line-height: 1.8;
  margin: 0;
}

/* ----------------------------------------------------------
   3. CBSE STAGES — Scrollable Editorial Sections
   ---------------------------------------------------------- */

.acad-cbse-stages {
  padding-bottom: 20px;
}

/* Stage quick-jump navigation */
.stage-quicknav {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-bottom: 1px solid rgba(203, 221, 224, 0.70);
  background: #ffffff;
  overflow-x: auto;
}

.sqn-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 38px;
  text-decoration: none;
  border-right: 1px solid rgba(203, 221, 224, 0.50);
  transition: background 0.28s;
  position: relative;
  white-space: nowrap;
}

.sqn-link:last-child { border-right: none; }

.sqn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-navy);
  transform: scaleX(0);
  transition: transform 0.28s;
}

.sqn-link:hover::after { transform: scaleX(1); }
.sqn-link:hover { background: rgba(24, 33, 59, 0.03); }

.sqn-num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: rgba(211, 165, 95, 0.45);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.28s;
}

.sqn-link:hover .sqn-num { color: var(--brand-gold); }

.sqn-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--soft-slate);
  line-height: 1.2;
}

.sqn-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

/* Individual stage section */
.acad-stage {
  padding: 96px 0 100px;
  background: #ffffff;
  scroll-margin-top: 80px;
}

.acad-stage--alt {
  background: linear-gradient(180deg, #f9fbff 0%, #f5f1e9 100%);
}

/* Stage row: image left + content right (or reversed) */
.stage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.stage-row--reverse .stage-row__media  { order: 2; }
.stage-row--reverse .stage-row__content { order: 1; }

/* Stage image */
.stage-row__media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(23, 37, 72, 0.16);
  aspect-ratio: 4 / 5;
}

.stage-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.stage-row:hover .stage-row__media img { transform: scale(1.04); }

.stage-media-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 24px 22px;
  background: linear-gradient(0deg, rgba(20, 28, 52, 0.80) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.stage-media-num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -2px;
}

.stage-media-tag {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* Stage content */
.stage-row__content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--soft-slate);
  line-height: 1.1;
  margin-bottom: 12px;
}

.stage-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--soft-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.stage-intro {
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* Focus areas */
.stage-tags-section { margin-bottom: 28px; }

.stage-section-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-section-label i {
  color: var(--brand-gold);
  font-size: 11px;
}

.stage-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-tag {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--soft-slate);
  background: #ffffff;
  border: 1px solid rgba(203, 221, 224, 0.88);
  border-radius: 999px;
  padding: 7px 16px;
  box-shadow: 0 2px 10px rgba(23, 37, 72, 0.05);
  transition: background 0.22s, border-color 0.22s;
}

.focus-tag:hover {
  background: rgba(211, 165, 95, 0.08);
  border-color: rgba(211, 165, 95, 0.45);
}

/* Learner outcomes card */
.stage-outcomes-card {
  background: #ffffff;
  border: 1px solid rgba(203, 221, 224, 0.88);
  border-radius: 20px;
  padding: 22px 24px;
  box-shadow: 0 8px 28px rgba(23, 37, 72, 0.06);
}

.stage-outcomes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.outcome-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--soft-text);
  background: rgba(211, 165, 95, 0.07);
  border: 1px solid rgba(211, 165, 95, 0.25);
  border-radius: 999px;
  padding: 7px 14px;
}

.outcome-chip i {
  color: var(--brand-gold);
  font-size: 10px;
}

/* ----------------------------------------------------------
   4. ACADEMIC APPROACH SECTION
   ---------------------------------------------------------- */
.acad-approach-section {
  padding: var(--section-pad);
  background: linear-gradient(180deg, #f7f9fc 0%, var(--brand-ice) 100%);
}

.acad-approach-section .section-header { text-align: center; margin-bottom: 56px; }

.acad-approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.approach-card {
  background: var(--brand-white);
  border-radius: 20px;
  padding: 30px 20px 26px;
  text-align: center;
  border: 1px solid rgba(44,60,88,0.07);
  box-shadow: 0 8px 32px rgba(23,37,72,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(23,37,72,0.14);
}

.approach-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(211,165,95,0.28);
  transition: transform 0.3s;
}

.approach-card:hover .approach-icon-circle { transform: scale(1.08) rotate(-4deg); }

.approach-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--soft-slate);
  line-height: 1.4;
  margin: 0;
}

/* ----------------------------------------------------------
   5. NEP 2020 SECTION
   ---------------------------------------------------------- */
.acad-nep-section {
  padding: var(--section-pad);
  background: var(--navy-grad);
  position: relative;
  overflow: hidden;
}

.acad-nep-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,165,95,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.acad-nep-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(70,170,220,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.acad-nep-section .section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.acad-nep-section .acad-section-title { color: #fff; }

.acad-nep-intro {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto;
}

.acad-nep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.nep-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: background 0.3s, transform 0.3s;
}

.nep-item:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.nep-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(211,165,95,0.25) 0%, rgba(211,165,95,0.12) 100%);
  border: 1px solid rgba(211,165,95,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.nep-item-text h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.nep-item-text p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin: 0;
  line-height: 1.65;
}

/* ----------------------------------------------------------
   6. LEARNING BEYOND THE CLASSROOM
   ---------------------------------------------------------- */
.acad-beyond-section {
  padding: var(--section-pad);
  background: #fff;
}

.acad-beyond-section .section-header { margin-bottom: 52px; text-align: center; }

.acad-beyond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.beyond-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 36px rgba(23,37,72,0.10);
  cursor: pointer;
}

.beyond-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.beyond-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 40%, rgba(24,33,59,0.82) 100%);
  transition: background 0.4s ease;
}

.beyond-card:hover img { transform: scale(1.08); }
.beyond-card:hover .beyond-card-overlay {
  background: linear-gradient(180deg, rgba(24,33,59,0.18) 0%, rgba(24,33,59,0.88) 100%);
}

.beyond-card-title {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  transition: bottom 0.35s ease;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.beyond-card:hover .beyond-card-title { bottom: 24px; }

/* ----------------------------------------------------------
   7. ASSESSMENT PHILOSOPHY
   ---------------------------------------------------------- */
.acad-assessment-section {
  padding: var(--section-pad);
  background: var(--brand-cream);
}

.acad-assessment-section .section-header { text-align: center; margin-bottom: 16px; }

.acad-assessment-intro {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: var(--soft-text);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.acad-assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.assessment-card {
  background: var(--brand-white);
  border-radius: 20px;
  padding: 30px 28px;
  border-left: 4px solid var(--brand-gold);
  box-shadow: 0 8px 32px rgba(23,37,72,0.07);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.assessment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(23,37,72,0.12);
}

.assessment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(211,165,95,0.18) 0%, rgba(211,165,95,0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.assessment-text h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--soft-slate);
  margin-bottom: 6px;
}

.assessment-text p {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ----------------------------------------------------------
   8. ACADEMIC RESULTS
   ---------------------------------------------------------- */
.acad-results-section {
  padding: var(--section-pad);
  background: #fff;
}

.acad-results-section .section-header { text-align: center; margin-bottom: 52px; }

.results-campus-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.results-campus-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 999px;
  border: 2px solid var(--brand-navy);
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all 0.28s;
}

.results-campus-tab.active,
.results-campus-tab:hover {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 6px 22px rgba(24,33,59,0.18);
}

.results-campus-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.results-campus-pane.active { display: block; }

.results-year-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.results-year-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(24,33,59,0.25);
  background: transparent;
  color: var(--soft-text);
  cursor: pointer;
  transition: all 0.25s;
}

.results-year-tab.active,
.results-year-tab:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 600;
}

.results-year-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.results-year-pane.active { display: block; }

.results-table-wrap {
  overflow-x: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Poppins", sans-serif;
  background: #fff;
  min-width: 700px;
}

.results-table thead tr {
  background: var(--brand-navy);
  color: #fff;
}

.results-table thead th {
  padding: 18px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
}

.results-table thead th:first-child {
  border-radius: 20px 0 0 0;
  text-align: left;
}

.results-table thead th:last-child {
  border-radius: 0 20px 0 0;
}

.results-table tbody tr:nth-child(odd) { background: var(--brand-ice); }
.results-table tbody tr:nth-child(even) { background: #fff; }

.results-table tbody tr:last-child td:first-child { border-radius: 0 0 0 20px; }
.results-table tbody tr:last-child td:last-child  { border-radius: 0 0 20px 0; }

.results-table tbody td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--soft-slate);
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid rgba(44,60,88,0.06);
}

.results-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--soft-slate);
}

.results-table .td-placeholder {
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}

/* ----------------------------------------------------------
   9. BROCHURES SECTION
   ---------------------------------------------------------- */
.acad-brochures-section {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-ice) 100%);
}

.acad-brochures-section .section-header { text-align: center; margin-bottom: 52px; }

.brochure-campus-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.brochure-campus-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 30px;
  border-radius: 999px;
  border: 2px solid var(--brand-navy);
  background: transparent;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all 0.28s;
}

.brochure-campus-tab.active,
.brochure-campus-tab:hover {
  background: var(--brand-navy);
  color: #fff;
  box-shadow: 0 6px 22px rgba(24,33,59,0.18);
}

.brochure-campus-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.brochure-campus-pane.active { display: block; }

.brochure-year-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.brochure-year-tab {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(24,33,59,0.25);
  background: transparent;
  color: var(--soft-text);
  cursor: pointer;
  transition: all 0.25s;
}

.brochure-year-tab.active,
.brochure-year-tab:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-navy);
  font-weight: 600;
}

.brochure-year-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.brochure-year-pane.active { display: block; }

.brochure-preview-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(23,37,72,0.14);
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 460px;
  border: 1px solid rgba(44,60,88,0.08);
}

.brochure-cover-wrap {
  position: relative;
  overflow: hidden;
}

.brochure-cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.brochure-preview-card:hover .brochure-cover-wrap img { transform: scale(1.06); }

.brochure-cover-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-grad);
  color: var(--brand-navy);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(211,165,95,0.32);
}

.brochure-info {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brochure-info h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--soft-slate);
  line-height: 1.2;
  margin-bottom: 16px;
}

.brochure-info p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--soft-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.brochure-info-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.button-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: #fff;
  text-decoration: none;
  border: 2px solid var(--brand-navy);
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s, background 0.28s;
  box-shadow: 0 8px 24px rgba(24,33,59,0.18);
}

.button-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(24,33,59,0.26);
  color: #fff;
}

.button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 999px;
  background: transparent;
  color: var(--brand-navy);
  text-decoration: none;
  border: 2px solid var(--brand-navy);
  cursor: pointer;
  transition: all 0.28s;
}

.button-outline:hover {
  background: var(--brand-navy);
  color: #fff;
  transform: translateY(-2px);
}

.button-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--gold-grad);
  color: var(--brand-navy);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s;
  box-shadow: 0 8px 24px rgba(211,165,95,0.28);
}

.button-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(211,165,95,0.38);
  color: var(--brand-navy);
}

/* ----------------------------------------------------------
   10. CTA SECTION
   ---------------------------------------------------------- */
.acad-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2d52 50%, #0e1729 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.acad-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,165,95,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.acad-cta-deco-1,
.acad-cta-deco-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.acad-cta-deco-1 {
  width: 280px;
  height: 280px;
  border: 1px solid rgba(211,165,95,0.12);
  top: -60px;
  left: -80px;
}

.acad-cta-deco-2 {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,0.06);
  bottom: -50px;
  right: -40px;
}

.acad-cta-inner {
  position: relative;
  z-index: 1;
}

.acad-cta-section .acad-eyebrow { color: var(--brand-gold); }

.acad-cta-section h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.acad-cta-section p {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.acad-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.button-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-navy);
  text-decoration: none;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.28s, box-shadow 0.28s, background 0.28s, color 0.28s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.button-white:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-navy);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(211,165,95,0.35);
}

.button-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.28s;
}

.button-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
  color: #fff;
}

/* ----------------------------------------------------------
   Section header utilities
   ---------------------------------------------------------- */
.section-header { margin-bottom: 48px; }

.h-sub {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--genesis-red);
  margin-bottom: 14px;
}

/* ----------------------------------------------------------
   Divider
   ---------------------------------------------------------- */
.acad-stage-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(211,165,95,0.3) 30%, rgba(211,165,95,0.3) 70%, transparent 100%);
  margin: 40px 0;
}

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

/* Large: 1200px */
@media (max-width: 1200px) {
  .acad-approach-grid { grid-template-columns: repeat(4, 1fr); }
  .acad-beyond-grid { grid-template-columns: repeat(3, 1fr); }
  .stage-row { gap: 48px; }
}

/* Medium: 992px */
@media (max-width: 992px) {
  :root { --section-pad: 72px 0; }

  .acad-approach-grid { grid-template-columns: repeat(3, 1fr); }
  .acad-nep-grid { grid-template-columns: 1fr; }
  .acad-assessment-grid { grid-template-columns: repeat(2, 1fr); }
  .acad-beyond-grid { grid-template-columns: repeat(3, 1fr); }

  .stage-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stage-row--reverse .stage-row__media  { order: unset; }
  .stage-row--reverse .stage-row__content { order: unset; }

  .stage-quicknav { justify-content: flex-start; }
  .sqn-link { padding: 18px 24px; }

  .acad-stage { padding: 72px 0 80px; }

  .brochure-preview-card { grid-template-columns: 1fr; }
  .brochure-cover-wrap { aspect-ratio: 16/7; min-height: unset; }
}

/* Small: 768px */
@media (max-width: 768px) {
  :root { --section-pad: 56px 0; }

  .acad-hero-body { padding: 100px 16px 60px; }

  .acad-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .acad-assessment-grid { grid-template-columns: 1fr; }
  .acad-beyond-grid { grid-template-columns: repeat(2, 1fr); }

  .acad-stage { padding: 56px 0 64px; }
  .stage-row__media { aspect-ratio: 16 / 9; }

  .brochure-info { padding: 28px 24px; }
  .brochure-info h3 { font-size: 20px; }

  .acad-cta-btns { flex-direction: column; align-items: center; }
  .button-white,
  .button-outline-white,
  .button-gold { width: 100%; max-width: 280px; justify-content: center; }
}

/* Extra small: 480px */
@media (max-width: 480px) {
  .acad-approach-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .acad-beyond-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .acad-nep-grid { grid-template-columns: 1fr; }
  .acad-curr-tab-bar { flex-direction: column; align-items: center; }
  .results-campus-tabs, .brochure-campus-tabs { flex-direction: column; align-items: center; }
  .acad-curr-tab, .results-campus-tab, .brochure-campus-tab { width: 100%; max-width: 260px; text-align: center; }
}

/* ===========================================================
   LEARNING STAGES TAB PANEL (academics.html landing page)
   =========================================================== */

.acad-stages-section {
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
}

.acad-stages-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* --- Tab Bar --- */
.lst-tab-bar {
  display: flex;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border: 1px solid rgba(44, 60, 88, 0.10);
  border-bottom: none;
  background: #fff;
}

.lst-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 28px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(44, 60, 88, 0.08);
  cursor: pointer;
  transition: background 0.32s ease, color 0.32s ease;
  text-align: left;
  position: relative;
}

.lst-tab:last-child { border-right: none; }

.lst-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.lst-tab:hover::after,
.lst-tab.active::after { transform: scaleX(1); }

.lst-tab.active { background: var(--brand-navy); }

.lst-num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  color: rgba(211, 165, 95, 0.35);
  flex-shrink: 0;
  transition: color 0.32s ease;
}

.lst-tab.active .lst-num { color: var(--brand-gold); }
.lst-tab:hover:not(.active) .lst-num { color: rgba(211, 165, 95, 0.6); }

.lst-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.lst-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--soft-slate);
  line-height: 1.2;
  transition: color 0.32s ease;
}

.lst-tab.active .lst-name { color: #fff; }

.lst-grades {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.32s ease;
}

.lst-tab.active .lst-grades { color: rgba(255, 255, 255, 0.60); }

/* --- Panels --- */
.lst-panels {
  border: 1px solid rgba(44, 60, 88, 0.10);
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.lst-panel {
  display: none;
  animation: fadeIn 0.45s ease;
}

.lst-panel.active { display: block; }

.lst-panel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.lst-panel-row--alt .lst-panel-media { order: 2; }
.lst-panel-row--alt .lst-panel-content { order: 1; }

.lst-panel-media {
  position: relative;
  overflow: hidden;
}

.lst-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.lst-panel-row:hover .lst-panel-media img { transform: scale(1.05); }

.lst-panel-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 70px 26px 26px;
  background: linear-gradient(0deg, rgba(20, 28, 52, 0.88) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.lst-badge-num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.10);
  letter-spacing: -3px;
}

.lst-badge-tag {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.lst-panel-content {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
}

.lst-panel-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--soft-slate);
  line-height: 1.15;
  margin-bottom: 16px;
}

.lst-panel-content > p {
  font-family: "Poppins", sans-serif;
  font-size: 15.5px;
  color: var(--soft-text);
  line-height: 1.9;
  margin-bottom: 24px;
}

.lst-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.lst-cta-row {
  margin-top: 28px;
}

/* --- Curriculum Quick Links --- */
.acad-curr-links {
  margin-top: 60px;
  text-align: center;
}

.acad-curr-links__label {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.acad-curr-links__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.acad-curr-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid rgba(44, 60, 88, 0.10);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  box-shadow: 0 4px 18px rgba(23, 37, 72, 0.06);
  text-align: left;
}

.acad-curr-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(23, 37, 72, 0.12);
  border-color: rgba(211, 165, 95, 0.40);
}

.acad-curr-link-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(211, 165, 95, 0.16) 0%, rgba(211, 165, 95, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.acad-curr-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.acad-curr-link-text strong {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--soft-slate);
  line-height: 1.2;
}

.acad-curr-link-text span {
  font-family: "Poppins", sans-serif;
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4;
}

.acad-curr-link-arrow {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.28s, transform 0.28s;
  flex-shrink: 0;
}

.acad-curr-link-card:hover .acad-curr-link-arrow {
  color: var(--brand-gold);
  transform: translateX(3px);
}

/* --- Responsive: Stage Tab Panel --- */
@media (max-width: 1200px) {
  .lst-tab { padding: 22px 20px; gap: 12px; }
  .lst-num { font-size: 26px; }
  .lst-panel-content { padding: 48px 44px; }
  .acad-curr-links__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .lst-tab-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px 16px 0 0;
  }
  .lst-tab { border-bottom: 1px solid rgba(44, 60, 88, 0.08); }
  .lst-tab:nth-child(even) { border-right: none; }

  .lst-panel-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .lst-panel-row--alt .lst-panel-media { order: 0; }
  .lst-panel-row--alt .lst-panel-content { order: 0; }
  .lst-panel-media { min-height: 300px; }
  .lst-panel-content { padding: 40px 36px; }
}

@media (max-width: 768px) {
  .lst-tab-bar { grid-template-columns: 1fr 1fr; }
  .lst-panel-content { padding: 32px 28px; }
  .acad-curr-links__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lst-tab-bar { grid-template-columns: 1fr; }
  .lst-tab { border-right: none; border-bottom: 1px solid rgba(44, 60, 88, 0.08); }
  .lst-tab:last-child { border-bottom: none; }
  .lst-num { font-size: 22px; }
  .lst-panel-content { padding: 28px 20px; }
  .lst-panel-content h3 { font-size: 20px; }
}
