/* ═══════════════════════════════════════════════
   LAHI × CBSE  —  Design System
   Fonts: Fraunces (headings) · DM Sans (body) · Crimson Pro (accents)
═══════════════════════════════════════════════ */

:root {
  --ink: #1a1209;
  --cream: #faf7f2;
  --warm: #f5ede0;
  --saffron: #e07b2a;
  --saffron-light: #f59d52;
  --teal: #894b07;
  --teal-light: #b06415;
  --gold: #c9922e;
  --muted: #7a6e5f;
  --border: #e2d9cc;
  --surface: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 18, 9, 0.06);
  --shadow-md: 0 6px 24px rgba(26, 18, 9, 0.09);
  --shadow-lg: 0 16px 48px rgba(26, 18, 9, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Fraunces", "Crimson Pro", serif;
  --font-serif: "Crimson Pro", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button {
  font-family: inherit;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2vw, 32px);
  gap: 12px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
/* Nav links list — sits between logo and CTA group */
.nav-links {
  display: flex;
  gap: clamp(10px, 1.4vw, 22px);
  list-style: none;
  align-items: center;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: clamp(0.72rem, 1vw, 0.83rem);
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--teal);
}
/* CTA buttons sit together at the right, never shrink */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-cta {
  background: var(--teal) !important;
  color: white !important;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  line-height: 1.2;
  transition: background 0.2s !important;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--teal-light) !important;
}
.nav-cta-book {
  background: var(--saffron) !important;
  box-shadow: 0 3px 12px rgba(224, 123, 42, 0.28) !important;
}
.nav-cta-book:hover {
  background: #c96a1a !important;
  box-shadow: 0 5px 18px rgba(224, 123, 42, 0.4) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-nav-overlay.open {
  display: flex;
}
.mobile-nav-overlay .mobile-logo-img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mobile-nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-overlay a:hover {
  color: var(--teal);
}
.mobile-nav-overlay .mobile-cta {
  background: var(--teal);
  color: white !important;
  padding: 13px 36px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}
.mobile-nav-overlay .mobile-cta-book {
  background: var(--saffron);
  margin-top: 4px;
}
.mobile-nav-overlay .mobile-cta-book:hover {
  background: #c96a1a;
}
@media (max-width: 1260px) {
  .nav-links {
    display: none;
  }
  /* Hide desktop CTA group — both buttons live in the mobile overlay instead */
  .nav-ctas {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── Mobile overlay tweaks for two CTA buttons ── */
@media (max-width: 480px) {
  .mobile-nav-overlay a {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
  .mobile-nav-overlay .mobile-cta {
    padding: 12px 28px;
    width: 80%;
    text-align: center;
  }
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  min-height: 46px;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.25);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(137, 75, 7, 0.32);
}
.btn-secondary {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* SECTION BASICS */
section {
  padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 40px);
  scroll-margin-top: 68px;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: rgba(224, 123, 42, 0.1);
  border-radius: 100px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title .it {
  font-style: var(--font-body);
  color: var(--teal);
}
.section-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
#home {
  padding: clamp(88px, 12vw, 128px) clamp(16px, 4vw, 40px)
    clamp(52px, 8vw, 84px);
  background: var(--warm);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero-content {
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(224, 123, 42, 0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.hero-eyebrow-animate {
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero-subtitle-light {
  display: block;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  font-weight: 300;
  line-height: 1.25;
  margin-top: 6px;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.hero-h1-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.22s;
}
.hero-sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-sub-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.38s;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}
.hero-actions-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.52s;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 500px;
}
.hero-stats-animate {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.66s;
}
.stat-item {
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.3;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.42s;
}
.hero-image {
  width: 100%;
  height: auto;
  max-width: 85%;
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.hero-right-quote {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  margin: -44px 16px 0 auto;
  width: min(90%, 380px);
  position: relative;
  z-index: 2;
}
.hero-right-quote p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: var(--font-display);
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 6px;
}
.hero-right-quote span {
  font-size: 0.74rem;
  color: var(--muted);
  font-weight: 500;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  #home {
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    max-width: 100%;
  }
  .hero-right-quote {
    margin: -32px 0 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-actions a,
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 8px;
  }
  .stat-item {
    padding: 10px 8px;
    text-align: center;
  }
  .stat-num {
    font-size: 1.35rem;
  }
  .stat-label {
    font-size: 0.66rem;
  }
}
@media (max-width: 380px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .stat-label {
    text-align: right;
  }
}

/* PHOTO STRIP */
.photo-gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 200px;
  overflow: hidden;
}
.photo-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-gallery-strip img:hover {
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .photo-gallery-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 220px;
  }
}

/* ABOUT */
#about {
  background: var(--warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 44px;
}
.about-photo-collage {
  position: relative;
  height: 400px;
}
.about-photo-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-md);
}
.about-photo-collage .photo-main {
  width: 70%;
  height: 68%;
  top: 0;
  left: 0;
  z-index: 2;
}
.about-photo-collage .photo-secondary {
  width: 56%;
  height: 56%;
  bottom: 0;
  right: 0;
  z-index: 3;
  border-color: var(--cream);
}
.about-photo-collage .photo-accent-badge {
  position: absolute;
  bottom: 54px;
  left: 16px;
  z-index: 5;
  background: var(--teal);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.35);
}
.photo-accent-badge .badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--saffron-light);
  line-height: 1;
}
.photo-accent-badge .badge-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}
.about-text p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong {
  color: var(--ink);
  font-weight: 600;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.highlight-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.highlight-body h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--ink);
}
.highlight-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-photo-collage {
    height: 280px;
  }
}

/* POLICY */
#policy {
  background: var(--cream);
}
.policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.circular-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.circular-card {
  border-left: 3px solid var(--saffron);
  padding: 18px 22px;
  background: var(--warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  transition: box-shadow 0.2s;
}
.circular-card:hover {
  box-shadow: var(--shadow-sm);
}
.circular-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saffron);
  margin-bottom: 6px;
}
.circular-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.circular-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
}
.what-it-means {
  background: #894b07e3;
  border-radius: var(--radius-lg);
  padding: 32px;
  color: white;
}
.what-it-means h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}
.what-it-means ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.what-it-means li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.what-it-means li::before {
  content: "→";
  color: var(--saffron-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-it-means p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: var(--font-display);
}
@media (max-width: 860px) {
  .policy-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* PROGRAMMES */
#programmes {
  background: var(--warm);
}
.programmes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.programme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.programme-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.programme-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.programme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.programme-card:hover .programme-card-img img {
  transform: scale(1.07);
}
.programme-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(26, 18, 9, 0.4));
}
.programme-header {
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--border);
}
.programme-grade {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
  margin-bottom: 10px;
}
.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.programme-card .hindi {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: var(--font-display);
}
.programme-body {
  padding: 18px 22px;
  flex: 1;
}
.programme-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.sectors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.sector-chip {
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
}
.programme-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.programme-body ul li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 15px;
  position: relative;
}
.programme-footer {
  padding: 13px 22px;
  border-top: 1px solid var(--border);
  background: rgba(137, 75, 7, 0.03);
  margin-top: auto;
}
.programme-footer span {
  font-size: 0.76rem;
  color: var(--teal);
  font-weight: 600;
}
@media (max-width: 960px) {
  .programmes-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .programmes-grid {
    grid-template-columns: 1fr;
  }
  .programme-card-img {
    height: 120px;
  }
}

/* PROVIDES */
#provides {
  background: var(--cream);
}
.provides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.provide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.provide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--teal-light));
  opacity: 0;
  transition: opacity 0.25s;
}
.provide-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.provide-card:hover::before {
  opacity: 1;
}
.provide-card .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(137, 75, 7, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.provide-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 9px;
  color: var(--ink);
}
.provide-card > p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.provide-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.provide-card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.provide-card ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--saffron);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}
@media (max-width: 700px) {
  .provides-grid {
    grid-template-columns: 1fr;
  }
  .provide-card {
    padding: 24px 20px;
  }
}

/* COMPARISON */
#comparison {
  background: var(--warm);
}
.comparison-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  margin-top: 44px;
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 480px;
}
.comparison-table thead tr {
  background: var(--ink);
}
.comparison-table th {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.comp-col-label {
  width: 28%;
}
.comp-col-typical {
  width: 36%;
}
.comp-col-lahi {
  width: 36%;
}
.comp-badge {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.comp-badge-typical {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}
.comp-badge-lahi {
  background: var(--saffron);
  color: white;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}
.comparison-table tbody tr:hover {
  background: var(--warm);
}
.comparison-table td {
  padding: 15px 20px;
  font-size: 0.88rem;
  line-height: 1.55;
  vertical-align: top;
}
.comp-aspect {
  font-weight: 600;
  color: var(--ink);
  font-style: var(--font-display);
}
.comp-typical {
  color: #b0a89a;
}
.comp-lahi {
  color: var(--ink);
  font-weight: 600;
}
@media (max-width: 500px) {
  .comparison-table th,
  .comparison-table td {
    padding: 12px 12px;
    font-size: 0.8rem;
  }
}

/* VISIT */
#visit {
  background: #454444;
  color: rgb(225, 219, 219);
  position: relative;
  overflow: hidden;
}
#visit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/p15.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
}
#visit .section-inner {
  position: relative;
  z-index: 1;
}
#visit .section-label {
  color: var(--saffron-light);
  background: rgba(245, 157, 82, 0.12);
}
#visit .section-title {
  color: white;
}
#visit .section-title .it {
  color: var(--saffron-light);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 44px;
  align-items: start;
}
.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224, 123, 42, 0.18);
  border: 1px solid rgba(224, 123, 42, 0.35);
  color: var(--saffron-light);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.visit-location {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.visit-location strong {
  color: rgba(255, 255, 255, 0.9);
}
.visit-location a {
  color: inherit;
  text-decoration: none;
}
.visit-location a:hover {
  text-decoration: underline;
}
.visit-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visit-highlight {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.visit-highlight .text {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}
.visit-highlight .text strong {
  color: white;
  display: block;
  margin-bottom: 3px;
}
.visit-photo-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.visit-photo-row > div {
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
}
.visit-agenda {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 860px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* REGISTER */
#register {
  background: var(--cream);
}
.register-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 44px;
  align-items: start;
}
.register-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.register-info > p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.register-info .steps {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.register-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.register-step .step-n {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.register-step .step-text {
  padding-top: 4px;
}
.register-step .step-text strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.register-step .step-text span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}
.register-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--ink);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--cream);
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 3px rgba(137, 75, 7, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 88px;
}
.form-submit {
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition:
    background 0.2s,
    transform 0.15s;
  box-shadow: 0 6px 20px rgba(137, 75, 7, 0.25);
}
.form-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.74rem;
  color: var(--muted);
}
.success-msg {
  display: none;
  text-align: center;
  padding: 40px 24px;
}
.success-msg .checkmark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.success-msg h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.success-msg p {
  color: var(--muted);
  font-size: 0.9rem;
}
@media (max-width: 860px) {
  .register-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .register-form-wrap {
    padding: 24px 18px;
  }
}

/* RESOURCES */
#resources {
  background: var(--warm);
}
.resource-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 44px;
  box-shadow: var(--shadow-sm);
}
.resource-card {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background 0.2s;
}
.resource-card:last-child {
  border-bottom: none;
}
.resource-card.is-open {
  background: var(--cream);
}
.resource-card-visible {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
}
.resource-card-visible:hover {
  background: rgba(137, 75, 7, 0.03);
}
.resource-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(137, 75, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.resource-summary {
  flex: 1;
  min-width: 0;
}
.resource-summary h3 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.resource-summary p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}
.resource-view-btn {
  flex-shrink: 0;
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.resource-view-btn:hover,
.resource-card.is-open .resource-view-btn {
  background: var(--teal);
  color: white;
}
.resource-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}
.resource-card.is-open .resource-arrow {
  transform: rotate(180deg);
}
.resource-expand {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
  padding: 0 24px;
}
.resource-card.is-open .resource-expand {
  max-height: 600px;
  padding: 0 24px 24px;
}
.resource-expand ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.resource-expand ul li {
  font-size: 0.86rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.resource-expand ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.resource-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--teal);
  color: white;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.resource-dl-btn:hover {
  background: var(--teal-light);
}
.resource-link {
  font-size: 0.86rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.resource-link:hover {
  text-decoration: underline;
}
@media (max-width: 500px) {
  .resource-card-visible {
    padding: 16px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .resource-summary {
    flex-basis: calc(100% - 56px);
  }
  .resource-view-btn {
    margin-left: 56px;
  }
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 56px) 28px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}
.footer-brand .logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.footer-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}
.footer-col h4 {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-icon {
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.55;
}
.footer-col ul li a,
.footer-col ul li span:not(.footer-contact-icon) {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  transition: color 0.2s;
  line-height: 1.55;
}
.footer-col ul li a:hover {
  color: white;
}
.footer-address span:not(.footer-contact-icon) {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer-bottom a {
  color: var(--saffron-light);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* LAHI DOES */
.lahi-does-section {
  margin-top: 40px;
}
.lahi-does-header {
  background: var(--border);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 24px 28px 16px;
}
.lahi-does-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.lahi-does-sub {
  font-size: 0.9rem;
  color: var(--muted);
}
.lahi-does-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.lahi-does-card {
  background: rgba(245, 241, 238, 0.85);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s;
}
.lahi-does-card:nth-child(1) {
  border-right: none;
  border-bottom: none;
}
.lahi-does-card:nth-child(2) {
  border-bottom: none;
}
.lahi-does-card:nth-child(3) {
  border-right: none;
}
.lahi-does-card:hover {
  background: rgba(137, 75, 7, 0.04);
}
.lahi-does-card p {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.65;
}
.lahi-does-footer {
  background: var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  padding: 15px 28px;
  font-size: 0.84rem;
  color: var(--muted);
  font-style: var(--font-display);
}
@media (max-width: 600px) {
  .lahi-does-grid {
    grid-template-columns: 1fr;
  }
  .lahi-does-card:nth-child(1) {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .lahi-does-card:nth-child(2) {
    border-bottom: none;
  }
  .lahi-does-card:nth-child(3) {
    border-right: 1px solid var(--border);
  }
  .lahi-does-card:last-child {
    border-bottom: 1px solid var(--border);
  }
  .lahi-does-header {
    padding: 18px 18px 12px;
  }
  .lahi-does-footer {
    padding: 13px 18px;
  }
  .lahi-does-card {
    padding: 20px 18px;
  }
}

/* GLOBAL UTILITY */
.accent {
  color: var(--teal);
}
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.grid-2col-tight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .grid-2col,
  .grid-2col-tight {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  [data-mobile-stack] {
    grid-template-columns: 1fr !important;
  }
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(224, 123, 42, 0.5);
  outline-offset: 3px;
}
@keyframes countUp {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
.stat-num.counting {
  animation: countUp 0.8s ease;
}

/* Budget table */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.budget-table thead {
  background: var(--teal);
  color: white;
}
.budget-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.84rem;
  font-weight: 600;
}
.budget-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.budget-table tbody tr:last-child {
  border-bottom: none;
}
.budget-table tbody tr:nth-child(even) {
  background: rgba(250, 247, 242, 0.6);
}
.budget-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--ink);
  vertical-align: top;
}
.budget-table tbody td.amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal);
}

/* Hero card elements */
.hero-right-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card-header {
  background: var(--warm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-green {
  background: #34c759;
}
.dot-amber {
  background: #ff9500;
}
.dot-red {
  background: #ff3b30;
}
.hero-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
  letter-spacing: 0.04em;
}
.hero-checklist {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.hero-check-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.check-done {
  background: rgba(137, 75, 7, 0.1);
  color: var(--teal);
}
.check-pending {
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  border: 1.5px dashed var(--border);
}
.hero-card-footer {
  padding: 11px 18px;
  background: var(--teal);
  text-align: center;
}
.hero-card-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}
<<<<<<< HEAD

/* ══════════════════════════════════════════════════════════════
   TIMETABLE GENERATOR SECTION
   ══════════════════════════════════════════════════════════════ */

.timetable-gen-section {
  background: var(--cream);
}

.tg-card {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 48px;
  box-shadow: var(--shadow-md);
}

.tg-icon-wrap {
  margin-bottom: 20px;
  display: inline-flex;
}

.tg-heading {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 14px;
}

.tg-desc {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.tg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.tg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.tg-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tg-launch-btn {
  background: var(--teal);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.tg-launch-btn:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}

/* Timetable preview graphic */
.tg-card-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-preview-wrap {
  position: relative;
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}

.tg-preview-bar {
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: white;
}

.tg-bar-skill  { background: #f97316; }
.tg-bar-math   { background: #f59e0b; }
.tg-bar-sci    { background: #10b981; }
.tg-bar-lang   { background: #3b82f6; }
.tg-bar-sst    { background: #06b6d4; }
.tg-bar-sm     { width: 60%; background: rgba(249,115,22,0.6); }

.tg-preview-label {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* Timetable Modal */
.tg-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26, 18, 9, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.tg-modal-overlay.open {
  display: flex;
}

.tg-modal-box {
  background: #020617;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 1200px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.tg-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: #0f172a;
}

.tg-modal-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  font-family: var(--font-body);
}

.tg-modal-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #e2e8f0;
  font-size: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.tg-modal-close:hover {
  background: rgba(255,255,255,0.2);
}

.tg-modal-body {
  flex: 1;
  overflow: hidden;
}

#timetable-iframe {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  border: none;
  display: block;
}

@media (max-width: 860px) {
  .tg-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
  }
  .tg-card-right {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════════ */

.faq-section {
  background: var(--warm);
}

.faq-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 8px;
}

.faq-search-wrap {
  position: relative;
  max-width: 560px;
}

.faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

.faq-search {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.faq-search:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(137,75,7,0.12);
}

.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.faq-cat {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.faq-cat:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.faq-cat.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 20px;
  box-shadow: var(--shadow-sm);
}

.faq-item {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.2s;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: var(--cream);
}

.faq-q-btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background 0.2s;
}

.faq-q-btn:hover {
  background: rgba(137,75,7,0.03);
}

.faq-q-cat-badge {
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(137,75,7,0.1);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

.faq-q-text {
  flex: 1;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
}

.faq-q-arrow {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  transition: transform 0.3s ease, background 0.2s, border-color 0.2s;
  margin-top: 1px;
}

.faq-item.open .faq-q-arrow {
  transform: rotate(180deg);
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 24px 20px 24px;
}

.faq-answer-inner {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  padding-left: 60px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-loading,
.res-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 48px 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid var(--border);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: faq-spin-load 0.8s linear infinite;
}

@keyframes faq-spin-load {
  to { transform: rotate(360deg); }
}

.faq-empty,
.faq-error {
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-error a {
  color: var(--teal);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   RESOURCES — TABS + WEBINAR/BROCHURE CARDS
   ══════════════════════════════════════════════════════════════ */

.res-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.res-tab {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}

.res-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.res-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}

.res-panel {
  animation: res-fade-in 0.3s ease;
}

@keyframes res-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Webinar cards */
.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.webinar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.webinar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.webinar-thumb {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.webinar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webinar-thumb-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.webinar-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249,115,22,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  transition: transform 0.2s;
}

.webinar-card:hover .webinar-play-icon {
  transform: scale(1.1);
}

.webinar-thumb-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.webinar-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.webinar-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 8px;
}

.webinar-desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.webinar-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

.webinar-watch-btn:hover {
  background: var(--teal-light);
}

/* Brochure cards */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.brochure-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.brochure-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.brochure-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(137,75,7,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.brochure-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
}

.brochure-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.brochure-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.brochure-dl-btn:hover {
  background: var(--teal);
  color: white;
}

.res-update-msg {
  text-align: center;
  padding: 40px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

/* Existing FAQ icon styles (keep from original) */
.faq-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(137, 75, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.faq-icon-wrap svg { overflow: visible; }
.faq-ring { transform-origin: 16px 16px; animation: faq-spin 8s linear infinite; }
@keyframes faq-spin { to { transform: rotate(360deg); } }
.faq-icon-wrap:hover .faq-q { animation: faq-bounce 0.5s ease forwards; }
@keyframes faq-bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-4px) scale(1.15); }
  60%  { transform: translateY(1px) scale(0.95); }
  100% { transform: translateY(0) scale(1); }
}
.faq-dot { animation: faq-blink 2.4s ease-in-out infinite; transform-origin: 16px 24px; }
@keyframes faq-blink { 0%, 80%, 100% { opacity: 1; } 90% { opacity: 0; } }
.faq-icon-wrap:hover .faq-ripple { animation: faq-ripple 0.6s ease-out forwards; }
.faq-ripple { opacity: 0; }
@keyframes faq-ripple { 0% { r: 10; opacity: 0.35; } 100% { r: 20; opacity: 0; } }

@media (max-width: 600px) {
  .webinar-grid { grid-template-columns: 1fr; }
  .brochure-grid { grid-template-columns: 1fr 1fr; }
  .res-tabs { gap: 6px; }
  .res-tab { font-size: 0.78rem; padding: 8px 12px; }
  .faq-q-btn { padding: 14px 16px; }
  .faq-answer-inner { padding-left: 0; }
  .faq-controls { gap: 12px; }
}

@media (max-width: 400px) {
  .brochure-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   BOOK A CALL — Nav CTA button
   ══════════════════════════════════════════════════════════════ */

/* Register Interest engagement options */
.engage-options {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.engage-options li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  align-items: flex-start;
}

.engage-options li .engage-arrow {
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Exposure visit video row — responsive fix */
.visit-video-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.visit-video-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.visit-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

@media (max-width: 600px) {
  .visit-video-row {
    flex-direction: column;
  }
  .visit-video-wrap {
    width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   PARTNER SCHOOLS SECTION — CSS START
   (Additive only — does not modify any existing rules above)
   ══════════════════════════════════════════════════════════════ */

.partners-section {
  position: relative;
  overflow: hidden;
}

/* Background watermark text behind heading */
.partners-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 14vw, 9rem);
  color: var(--ink);
  opacity: 0.03;
  white-space: nowrap;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Soft blurred decorative circles for depth */
.partners-section::before,
.partners-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.partners-section::before {
  width: 260px;
  height: 260px;
  background: rgba(224, 123, 42, 0.12);
  top: -60px;
  left: -60px;
}
.partners-section::after {
  width: 320px;
  height: 320px;
  background: rgba(137, 75, 7, 0.08);
  bottom: -80px;
  right: -60px;
}

.partners-heading-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partners-heading-wrap .section-desc {
  max-width: 560px;
  text-align: center;
}

/* Premium heading entrance: underline grows + subtle glow once revealed */
.partners-title {
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.partners-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
  box-shadow: 0 0 0 rgba(224, 123, 42, 0);
}
.partners-title.visible::after {
  width: 96px;
  box-shadow: 0 0 16px rgba(224, 123, 42, 0.45);
}

/* Stats counters */
.partners-stats {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 6vw, 64px);
  margin: 32px 0 40px;
}
.partners-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.partners-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--teal);
}
.partners-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Marquee wrapper — keeps section compact (≈320–380px band for the logo wall) */
.partners-marquee-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 100%;
}

.partner-marquee-row {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.partner-marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
}
.partner-marquee-track.partner-marquee-left {
  animation: partners-scroll-left 42s linear infinite;
}
.partner-marquee-track.partner-marquee-right {
  animation: partners-scroll-right 42s linear infinite;
}
.partner-marquee-row:hover .partner-marquee-track {
  animation-play-state: paused;
  cursor: pointer;
}

@keyframes partners-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes partners-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Logo cards */
.partner-logo-card {
  flex: 0 0 auto;
  width: 148px;
  height: 88px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.partner-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.75);
  transition:
    filter 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.partner-logo-card:hover,
.partner-logo-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron-light);
  outline: none;
}
.partner-logo-card:hover img,
.partner-logo-card:focus-visible img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.08);
}

/* Reduced-motion fallback grid — hidden by default, shown only when needed */
.partners-marquee-grid {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .partner-marquee-track.partner-marquee-left,
  .partner-marquee-track.partner-marquee-right {
    animation: none;
  }
  .partners-marquee-wrap {
    display: none;
  }
  .partners-marquee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  .partners-marquee-grid .partner-logo-card {
    width: 100%;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .partner-logo-card {
    width: 128px;
    height: 76px;
    padding: 12px 14px;
  }
  .partner-marquee-track.partner-marquee-left,
  .partner-marquee-track.partner-marquee-right {
    animation-duration: 34s;
  }
}

/* Mobile — single scrolling row, smaller cards */
@media (max-width: 640px) {
  .partner-marquee-row:nth-child(2) {
    display: none;
  }
  .partner-logo-card {
    width: 108px;
    height: 66px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .partner-marquee-track {
    gap: 14px;
  }
  .partner-marquee-track.partner-marquee-left {
    animation-duration: 26s;
  }
  .partners-stats {
    gap: 20px;
  }
}

/* Desktop — tighter vertical rhythm so the section doesn't feel too spread out */
@media (min-width: 901px) {
  .partners-section {
    padding-top: clamp(32px, 4vw, 56px);
    padding-bottom: clamp(32px, 4vw, 56px);
  }
  .partners-watermark {
    font-size: clamp(3rem, 9vw, 6.5rem);
  }
  .partners-heading-wrap .section-title {
    margin-bottom: 10px;
  }
  .partners-stats {
    gap: clamp(20px, 4vw, 44px);
    margin: 18px 0 26px;
  }
  .partners-marquee-wrap {
    gap: 12px;
  }
  .partner-marquee-track {
    gap: 16px;
  }
}

/* Partner school logo modal — opens on logo click, closes on outside click / ESC / close button */
.partner-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 9, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.partner-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.partner-modal {
  position: relative;
  width: 520px;
  max-width: 520px;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 40px 32px 32px;
  text-align: center;
  transform: scale(0.92) translateY(8px);
  opacity: 0;
  transition:
    transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
}
.partner-modal-overlay.is-open .partner-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.partner-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.partner-modal-close:hover,
.partner-modal-close:focus-visible {
  background: var(--warm);
  color: var(--ink);
  transform: rotate(90deg);
  outline: none;
}

.partner-modal-logo-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.partner-modal-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-modal-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.partner-modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(224, 123, 42, 0.1);
  padding: 5px 14px;
  border-radius: 100px;
}

/* Tablet */
@media (max-width: 900px) {
  .partner-modal {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .partner-modal {
    width: 92%;
    padding: 32px 20px 24px;
  }
  .partner-modal-logo-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }
  .partner-modal-name {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partner-modal-overlay,
  .partner-modal {
    transition: none;
  }
}
/* PARTNER SCHOOLS SECTION — CSS END */