/* ============================================================
   DESIGN TOKENS (Light Sky Blue Theme)
   ============================================================ */
:root {
  --sky-blue: #E1F5FE; 
  --sky-blue-soft: #B3E5FC;
  --navy: #0E1B33;
  --navy-deep: #0A1425;
  --charcoal: #1B2430; 
  --ink-white: #FBFAF7;
  
  --brass: #C9A14A;
  --brass-soft: #E4C97A;
  --verdant: #2C6353;
  --rust: #B5533C;
  
  --glass-bg: rgba(255, 255, 255, 0.72); 
  --glass-border: rgba(255, 255, 255, 0.5);
  --mist-line: #D7DCE3;
  
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  --ease: cubic-bezier(.16,.8,.24,1);
}

/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

body { 
  font-family: var(--sans); 
  background: var(--sky-blue); 
  color: var(--charcoal); 
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   BRAND HIGHLIGHTING STYLES
   ============================================================ */
.brand-highlight {
  color: var(--brass-soft) !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(201, 161, 74, 0.2);
}

.brand-highlight--large {
  font-size: 1.12em;
}

.brand-highlight-dark {
  color: var(--brass) !important;
  font-weight: 800 !important;
}

/* ============================================================
   TYPOGRAPHY & HIGH-VISIBILITY HEADINGS
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verdant); 
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--verdant); 
  display: inline-block;
}

.eyebrow--hero {
  color: var(--brass-soft);
}
.eyebrow--hero::before {
  background: var(--brass-soft);
}

.eyebrow--prominent {
  font-size: 0.92rem;
  letter-spacing: 0.25em;
  color: var(--verdant);
}

.eyebrow--dark { color: var(--navy-deep); }
.eyebrow--dark::before { background: var(--navy-deep); }

h1, h2, h3, h4 { 
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--navy-deep); 
}

.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4.8rem);
  color: var(--ink-white) !important;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.section-title {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.12;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.section-title--bold {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  max-width: 54ch;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.65;
}

/* OMR Bubble Motif */
.omr-row { display: flex; gap: 9px; align-items: center; }
.omr-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.4px solid currentColor;
  opacity: .35;
  flex-shrink: 0;
}
.omr-dot.is-filled { background: currentColor; opacity: .9; }

/* Scroll Progress Rail */
.score-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.score-rail__item {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
  position: relative;
  cursor: pointer;
  opacity: 0.6;
}
.score-rail__item::after {
  content: attr(data-label);
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--ink-white);
  border: 1px solid var(--mist-line);
  color: var(--navy-deep);
  padding: 4px 9px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  font-weight: 600;
}
.score-rail__item:hover::after { opacity: 1; }
.score-rail__item.is-active {
  background: var(--brass);
  border-color: var(--brass);
  transform: scale(1.25);
  opacity: 1;
}
@media (max-width:900px){ .score-rail{ display: none; } }

/* ============================================================
   NAVIGATION HEADER
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
  background: rgba(10, 20, 37, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ink-white); 
  backdrop-filter: blur(12px);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease), color .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(225, 245, 254, 0.96); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 14px clamp(20px, 5vw, 56px);
  color: var(--navy-deep); 
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.nav__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(201, 161, 74, .5);
}
.nav__mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); }

.nav__links {
  display: flex;
  gap: 2.4rem;
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.nav__links a {
  position: relative;
  padding-bottom: 4px;
  opacity: .9;
  transition: opacity .25s, color .25s;
  font-weight: 700;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width .3s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a.is-active { opacity: 1; color: var(--brass); }
.nav__links a.is-active::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--brass); color: var(--navy-deep); font-weight: 700; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(201, 161, 74, .55); }
.btn--ghost { border: 1.5px solid currentColor; }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); transform: translateY(-2px); }

.nav__cta { display: flex; align-items: center; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; z-index: 80; }
.nav__toggle span {
  width: 24px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--sky-blue);
  z-index: 65;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 1.8rem; padding: 0 12vw;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--navy-deep); }

@media (max-width:900px){
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ============================================================
   SECTION SHELL & MEDIA LAYERS
   ============================================================ */
.section {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: min(14vh, 120px) clamp(20px, 7vw, 90px);
  overflow: hidden;
  box-sizing: border-box;
}
.section__media { position: absolute; inset: 0; z-index: 0; }
.section__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.section__scrim { position: absolute; inset: 0; z-index: 1; }

.scrim--hero { background: linear-gradient(180deg, rgba(10,20,37,.65) 0%, rgba(10,20,37,.85) 60%, var(--sky-blue) 100%); }
.scrim--dark { background: linear-gradient(120deg, rgba(225, 245, 254, 0.96) 0%, rgba(225, 245, 254, 0.88) 100%); }
.scrim--darker { background: linear-gradient(180deg, rgba(225, 245, 254, 0.88), var(--sky-blue)); }

.section__content { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ============================================================
   HERO SECTION, SEAL & TRUST BADGE
   ============================================================ */
.hero { min-height: 100svh; align-items: flex-end; padding-bottom: 9vh; }
.hero__inner { max-width: 1300px; width: 100%; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: flex-end;
}

.hero .lede { max-width: 52ch; margin-bottom: 2.4rem; color: var(--ink-white); }
.hero__actions { display: flex; align-items: center; gap: 1.5rem; color: var(--ink-white); }

.hero__aside {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-bottom: 0.5rem;
}

/* HERO SEAL - CIRCULAR SHAPE FIX */
.hero__seal {
  position: absolute;
  top: 110px;
  right: clamp(20px, 7vw, 90px);
  z-index: 2;
  width: 96px;
  height: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: var(--ink-white, #ffffff);
  padding: 6px;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
  display: block;
}

@media (max-width: 760px) {
  .hero__seal {
    display: none !important;
  }
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(10, 20, 37, 0.82); 
  border: 1px solid rgba(201, 161, 74, 0.5);
  border-left: 5px solid var(--brass); 
  border-radius: 16px;
  padding: 1.5rem 2.2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(201, 161, 74, 0.2); 
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 35px rgba(201, 161, 74, 0.3);
}
.trust-badge__years {
  font-family: var(--serif);
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--brass);
  line-height: 1;
}
.trust-badge__years span { font-size: 2.2rem; vertical-align: super; }
.trust-badge__text { display: flex; flex-direction: column; gap: 0.35rem; }
.trust-badge__text strong {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 800; color: var(--ink-white);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.trust-badge__text span {
  font-family: var(--sans); font-size: 0.95rem; color: rgba(251, 250, 247, 0.85);
  max-width: 260px; line-height: 1.4;
}
.trust-badge__sub {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--brass-soft);
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero__aside { justify-content: flex-start; }
}

/* ============================================================
   ABOUT SECTION: VISION & MISSION STYLING
   ============================================================ */
.about__grid { 
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  gap: clamp(2.5rem, 6vw, 6rem); 
  align-items: start; 
  max-width: 1200px; 
}

.about__intro-text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 2rem;
  opacity: 0.92;
}

.about__statements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.statement-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--verdant);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(10, 20, 37, 0.04);
}

.statement-card--mission {
  border-left-color: var(--brass);
  background: rgba(255, 255, 255, 0.85);
}

.statement-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.4rem;
}

.statement-card__text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--charcoal);
  opacity: 0.88;
  margin: 0;
}

/* ============================================================
   PROMINENT CORE VALUES SHOWCASE
   ============================================================ */
.about__card--prominent {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 15px 35px rgba(10, 20, 37, 0.08);
}

.values-header {
  margin-bottom: 1.8rem;
}

.values-badge {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--verdant);
  font-weight: 800;
  display: block;
  margin-bottom: 0.4rem;
}

.values-title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brass);
  margin: 0;
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--verdant);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.value-item:hover {
  transform: translateX(6px);
  background: #ffffff;
  border-left-color: var(--brass);
  box-shadow: 0 8px 20px rgba(10, 20, 37, 0.06);
}

.value-item--featured {
  background: rgba(201, 161, 74, 0.15);
  border-color: rgba(201, 161, 74, 0.4);
  border-left: 4px solid var(--brass);
}

.value-item__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.value-item__icon {
  font-size: 1.15rem;
}

.value-item__name {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-deep);
  margin: 0;
}

.value-item__desc {
  font-size: 0.94rem;
  color: var(--charcoal);
  opacity: 0.9;
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   JSAP SECTION: REDESIGNED HEADLINE + INTEGRATED 01, 02, 03 CARDS
   ============================================================ */
.jsap-header {
  max-width: 1000px;
  margin-bottom: 3.5rem;
}

.jsap-title-redesigned {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.18;
  color: var(--navy-deep);
  font-weight: 800;
}

.highlight-right {
  font-size: 1.12em; 
  color: var(--brass); 
  font-style: italic;
  font-weight: 800;
  display: inline-block;
  padding: 0 0.1rem;
}

/* 01, 02, 03 Reasons Grid in JSAP */
.jsap-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
}

.reason-card {
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 18px; 
  padding: 2rem 1.75rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); 
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(10, 20, 37, 0.04);
}

.reason-card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 15px 30px -10px rgba(10, 20, 37, 0.12); 
  border-color: var(--verdant); 
}

.reason-card__num { 
  font-family: var(--mono); 
  font-size: 1.25rem; 
  color: var(--verdant); 
  margin-bottom: 1rem; 
  font-weight: 800; 
}

.reason-card h4 { 
  font-family: var(--serif); 
  font-size: 1.35rem; 
  font-weight: 700; 
  margin-bottom: 0.6rem; 
  color: var(--navy-deep); 
}

.reason-card p { 
  font-size: 0.96rem; 
  opacity: 0.88; 
  line-height: 1.55;
}

/* ============================================================
   PATHWAYS & COMPASS
   ============================================================ */
.concepts__head { max-width: 680px; margin-bottom: 3.4rem; }
.compass { position: relative; max-width: 1180px; margin: 0 auto; }
.compass-heading { font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy-deep); margin-bottom: 1.5rem; text-align: center; font-weight: 700; }
.compass__paths { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.1rem; }
.path-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.6rem 1.3rem; text-align: left;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  backdrop-filter: blur(12px); box-shadow: 0 10px 20px rgba(10, 20, 37, 0.03);
}
.path-card:hover { background: #ffffff; border-color: var(--verdant); transform: translateY(-8px); box-shadow: 0 15px 30px rgba(10, 20, 37, 0.08); }
.path-card__icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--verdant); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .78rem; color: var(--ink-white); margin-bottom: 1rem; font-weight: 700;
}
.path-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.path-card p { font-size: .85rem; opacity: .8; }
@media (max-width:980px){ .compass__paths { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: 1200px; width: 100%; }
.benefit-col {
  background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 20px; padding: 2.3rem 2rem;
  backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(10, 20, 37, 0.05);
}
.benefit-col__tag { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--verdant); margin-bottom: 1rem; display: block; font-weight: 700; }
.benefit-col h3 { font-size: 1.55rem; margin-bottom: 1.3rem; color: var(--navy-deep); font-weight: 700; }
.benefit-col li { display: flex; gap: .7rem; padding: .65rem 0; border-top: 1px solid rgba(10, 20, 37, 0.1); font-size: .95rem; opacity: .9; }
.benefit-col li:first-of-type { border-top: none; }
@media (max-width:900px){ .benefits { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ GRID
   ============================================================ */
.faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; 
  max-width: 1300px;
  width: 100%;
}

.faq-item {
  background: #ffffff; 
  border: 1px solid var(--mist-line);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(10, 20, 37, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item:hover {
  border-color: var(--brass);
  box-shadow: 0 15px 40px rgba(201, 161, 74, 0.15);
  transform: translateY(-4px);
}

.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.8rem;
}

.faq-item__snippet {
  font-size: 0.95rem;
  color: var(--charcoal);
  opacity: 0.88;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.faq-item__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--brass);
  letter-spacing: 0.05em;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.faq-item__link:hover {
  color: var(--navy-deep);
  transform: translateX(4px);
}

@media (max-width: 800px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT SECTION & VERTICAL PHONE STACKING
   ============================================================ */

.contact__grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: clamp(2.5rem, 6vw, 5rem); 
  max-width: 1180px; 
  width: 100%; 
  align-items: center; 
  box-sizing: border-box;
}

/* Force children (label and links) to stack vertically line-by-line */
.contact-block { 
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  margin-bottom: 2rem; 
}

.contact-block__label { 
  font-family: var(--mono); 
  font-size: 0.75rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--verdant); 
  margin-bottom: 0.6rem; 
  font-weight: 800; 
}

/* Make each contact link occupy its own full row */
.contact-link {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  width: 100% !important;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
  font-weight: 700;
  word-break: break-word;
  transition: color 0.25s var(--ease);
}

.contact-link:hover {
  color: var(--brass);
}

/* Green WhatsApp Badge (Tightly Wrapped Inline) */
.wa-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  font-size: 0.75rem !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  background: #25D366 !important;
  color: #ffffff !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3) !important;
}

/* ============================================================
   REGISTRATION CARD SIZE FIX (COMPACT & FIT PERFECTLY)
   ============================================================ */

/* Wrapper aligns the card neatly */
.contact-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start; /* Aligns card neatly alongside phone details */
  box-sizing: border-box;
}

/* Card shrinks to fit content perfectly */
.contact-card {
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border);
  padding: 1.8rem 2rem; /* Comfortable inner spacing */
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(10, 20, 37, 0.06);
  box-sizing: border-box;
  
  /* CRITICAL CHANGE: Makes container shrink-to-fit content */
  width: fit-content !important;
  max-width: 420px !important;
}

.contact-card__desc {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--charcoal);
  opacity: 0.9;
}

/* Button expands neatly inside the smaller card */
.contact-card__btn {
  display: inline-flex !important;
  width: 100% !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 0.85rem 1.4rem !important;
  box-sizing: border-box !important;
}
/* ============================================================
   FOOTER BRAND LOGO - CIRCULAR SHAPE FIX
   ============================================================ */
.footer__mark {
  width: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: var(--ink-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(201, 161, 74, 0.5);
}

.footer__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.site-footer {
  padding: 4.5rem clamp(20px, 7vw, 90px) 2.2rem;
  background: var(--navy-deep);
  color: var(--ink-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 4.6rem;
  max-width: 1240px;
  margin: 0 auto 3rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer__col h5 {
  font-family: var(--mono);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1rem;
  font-weight: 800;
}

.footer__col ul li {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  opacity: 0.85;
}

.footer__col a:hover { opacity: 1; color: var(--brass-soft); }

.footer__bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(251, 250, 247, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 1.2rem;
  opacity: 0.65;
}

/* ============================================================
   BACK TO TOP & FLOATING WIDGETS
   ============================================================ */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 60; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brass); color: var(--navy-deep); display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 1rem; opacity: 0; transform: translateY(12px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); box-shadow: 0 12px 26px -8px rgba(0,0,0,.3);
}
.to-top.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.whatsapp-float {
  position: fixed; left: 24px; bottom: 24px; z-index: 60; width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.3); transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); background-color: #20ba5a; }

/* ============================================================
   PROMINENT STICKY MOBILE ACTION BAR
   ============================================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 20, 37, 0.98);
  border-top: 1px solid var(--brass);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  display: none;
}

.mobile-sticky-bar.is-visible {
  transform: translateY(0);
}

.mobile-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  gap: 1rem;
}

.mobile-sticky-bar__text {
  display: flex;
  flex-direction: column;
}

.mobile-sticky-bar__text strong {
  font-size: 0.88rem;
  color: var(--ink-white);
}

.mobile-sticky-bar__text span {
  font-size: 0.75rem;
  color: var(--brass-soft);
}

.mobile-sticky-bar__btn {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ============================================================
   PORTAL REDIRECT MODAL
   ============================================================ */
.portal-modal { position: fixed; inset: 0; z-index: 100; background: rgba(225, 245, 254, 0.85); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease); }
.portal-modal.is-active { opacity: 1; pointer-events: auto; }
.portal-modal__content { background: #ffffff; color: var(--charcoal); border: 1px solid var(--glass-border); padding: 3rem 2.5rem; border-radius: 20px; max-width: 480px; width: 90%; text-align: center; transform: translateY(20px) scale(0.95); transition: transform 0.4s var(--ease); box-shadow: 0 24px 48px rgba(10, 20, 37, 0.15); }
.portal-modal.is-active .portal-modal__content { transform: translateY(0) scale(1); }
.portal-modal__icon { font-size: 2.8rem; margin-bottom: 1rem; }
.portal-modal__content h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--navy-deep); }
.portal-modal__content p { font-size: 1.05rem; opacity: 0.8; margin-bottom: 2.2rem; line-height: 1.5; }
.portal-modal__actions { display: flex; gap: 1rem; justify-content: center; }

/* ============================================================
   RESPONSIVE OVERRIDES (< 900px & < 768px Mobile First)
   ============================================================ */
@media screen and (max-width: 900px) {
  .about__grid,
  .contact__grid,
  .footer__grid,
  .jsap-reasons {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .about__statements-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .about__card--prominent {
    padding: 1.5rem;
  }

  .value-item {
    padding: 1rem;
  }

  .value-item:hover {
    transform: none;
  }

  .contact-card {
    width: 100% !important;
    padding: 1.5rem !important;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .mobile-sticky-bar {
    display: block;
  }
}

/* ============================================================
   NEW PAGE: POST-BASIC EDUCATION APTITUDE SECTION STYLES
   ============================================================ */

.aptitude-header {
  max-width: 900px;
  margin-bottom: 3rem;
}

.aptitude__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  max-width: 1240px;
  width: 100%;
}

.aptitude-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.2rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(10, 20, 37, 0.05);
}

.aptitude-card--purpose {
  background: rgba(255, 255, 255, 0.85);
  border-left: 4px solid var(--brass);
}

.aptitude-card__title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 1.5rem;
}

/* Meaning Breakdown List */
.meaning-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.meaning-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-left: 4px solid var(--verdant);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.meaning-item h4 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.meaning-item p {
  font-size: 0.93rem;
  color: var(--charcoal);
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

.aptitude-summary {
  background: rgba(201, 161, 74, 0.12);
  border: 1px solid rgba(201, 161, 74, 0.35);
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--navy-deep);
  font-weight: 600;
}

/* Purpose List Grid */
.purpose-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.purpose-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--mist-line);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.purpose-item:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(10, 20, 37, 0.06);
  border-color: var(--brass);
}

.purpose-item__num {
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brass);
  background: rgba(201, 161, 74, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purpose-item h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.purpose-item p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--charcoal);
  opacity: 0.88;
  margin: 0;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 900px) {
  .aptitude__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}