/* =============================================================
   CDS ADMISSIONS PAGE — admissions.css
   Design System: CDS Home Page 
   Gradient: linear-gradient(90deg, #ffc107, #f57c00)
   Dark: #111111 | White: #ffffff | Beige: #faf7f3
   Text: #1a1a1a | Body: #555 | Muted: #777
   Section spacing: 80px
   ============================================================= */

/* --- CSS VARIABLES ------------------------------------------- */
:root {
  --gold-start:    #ffc107;
  --gold-end:      #f57c00;
  --grad:          linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
  --dark:          #111111;
  --text:          #1a1a1a;
  --body:          #555555;
  --muted:         #777777;
  --white:         #ffffff;
  --beige:         #faf7f3;
  --border:        rgba(0,0,0,0.08);
  --section-gap:   80px;
}

/* --- GLOBAL SECTION SPACING ---------------------------------- */
.adm-section {
  padding: var(--section-gap) 0;
}

/* --- SHARED TYPOGRAPHY SYSTEM -------------------------------- */
.adm-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: inline-block;
  font-weight: 600;
}
.adm-eyebrow.light {
  color: #aaaaaa;
}

.adm-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.adm-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.adm-title.white {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.adm-title.white span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.adm-subtext {
  font-size: 19px;
  line-height: 1.8;
  color: var(--body);
  max-width: 680px;
}
.adm-subtext.light {
  color: #dddddd;
}

/* Gold divider bar */
.adm-divider {
  width: 80px;
  height: 4px;
  background: var(--grad);
  margin-top: 28px;
}


/* =============================================================
   HERO SECTION
   ============================================================= */
.hero-cds {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-cds::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.60) 45%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.hero-cds .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-row {
  align-items: center;
}

.hero-cds .col-lg-7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-cds .col-lg-5 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Admissions live badge */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,193,7,0.45);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 9px 20px;
  margin-bottom: 24px;
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc107;
  flex-shrink: 0;
  animation: adm-pulse 1.6s ease-in-out infinite;
}
@keyframes adm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.4); }
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-start);
  margin-bottom: 14px;
  display: inline-block;
}

.hero-title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.8;
  max-width: 560px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
}

/* Trust strip */
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  border-left: 3px solid var(--gold-start);
  padding-left: 14px;
}
.hero-trust-item strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.hero-trust-item span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* Form card */
.hero-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.40);
  width: 100%;
  max-width: 420px;
}
.hero-form-card h3 {
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}
.hero-form-card p {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero-form-card p strong {
  color: #f57c00;
  font-weight: 700;
}
.form-trust {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}
.form-trust i {
  margin-right: 5px;
  color: #bbb;
}

/* NPF form fix — ensure iframe/form inside renders */
#npf-form {
  min-height: 320px;
  width: 100%;
}
#npf-form iframe {
  width: 100% !important;
  border: none !important;
}

@media (max-width: 991px) {
  .hero-cds {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .hero-cds .col-lg-7 {
    margin-bottom: 48px;
  }
  .hero-form-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
  .hero-video {
    filter: blur(2.5px);
  }
  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }
  .hero-cds::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.65) 100%);
  }
}


/* =============================================================
   ADMISSIONS PROCESS — AWWWARDS LEVEL
   ============================================================= */
.adm-process {
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

/* Decorative large number behind */
.adm-process::before {
  content: "2026";
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-size: 320px;
  font-weight: 800;
  color: rgba(0,0,0,0.03);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -10px;
}

.adm-process-header {
  max-width: 820px;
  margin-bottom: 70px;
}

/* Process track */
.process-track {
  position: relative;
  padding-top: 20px;
}

/* Horizontal connecting line */
.process-track::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), rgba(0,0,0,0.12), transparent);
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.process-step-card {
  padding: 0 28px 48px;
  position: relative;
  transition: transform 0.4s ease;
}
.process-step-card:hover {
  transform: translateY(-8px);
}

/* Step bubble */
.step-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.process-step-card:hover .step-bubble {
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border-color: var(--gold-start);
}
.step-bubble .step-num {
  font-size: 20px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Active step */
.process-step-card.is-active .step-bubble {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(255,193,7,0.35);
}
.process-step-card.is-active .step-bubble .step-num {
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

/* Status pill */
.step-status-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.step-status-pill.open {
  background: rgba(34,160,107,0.10);
  color: #1a7a4a;
}
.step-status-pill.upcoming {
  background: rgba(0,0,0,0.06);
  color: #888;
}

.process-step-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.process-step-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--body);
}

/* Process CTA strip */
.process-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 32px 40px;
  background: var(--dark);
  border-radius: 16px;
  flex-wrap: wrap;
  gap: 20px;
}
.process-cta-strip p {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}
.process-cta-strip p span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .process-track::before {
    display: none;
  }
  .process-step-card {
    padding: 0 20px 40px;
  }
  .process-cta-strip {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}
@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step-card {
    padding: 0 0 36px;
  }
  .adm-process::before {
    display: none;
  }
}


/* =============================================================
   ELIGIBILITY & KEY DATES
   ============================================================= */
.adm-eligibility {
  background: var(--dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.adm-eligibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255,193,7,0.06), transparent 60%);
  pointer-events: none;
}

.adm-eligibility .adm-title.white {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
}
.adm-eligibility .adm-title.white span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}

/* Eligibility list */
.elig-block-title {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 30px;
  display: block;
}

.elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.elig-list li:last-child {
  border-bottom: none;
}
.elig-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.elig-check i {
  font-size: 9px;
  color: var(--gold-start);
}

/* Key dates */
.dates-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.dates-block-header {
  padding: 24px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dates-block-header span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #aaaaaa;
}
.dates-block-header .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-start);
  animation: adm-pulse 1.6s ease-in-out infinite;
}

.dates-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 16px;
  transition: background 0.2s ease;
}
.dates-row-item:last-child {
  border-bottom: none;
}
.dates-row-item:hover {
  background: rgba(255,255,255,0.03);
}
.dates-row-item.highlighted {
  background: rgba(255,193,7,0.06);
}
.dates-event {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
}
.dates-date {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: rgba(255,255,255,0.6);
}
.dates-row-item.highlighted .dates-date {
  background: var(--grad);
  color: var(--dark);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.elig-cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.elig-helpline {
  display: flex;
  flex-direction: column;
}
.elig-helpline span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}
.elig-helpline a {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}
.elig-helpline a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
  .elig-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}


/* =============================================================
   PROGRAMS SECTION (matches index.php canvas style)
   ============================================================= */
.adm-programs {
  background: var(--white);
}

.adm-programs-header {
  max-width: 820px;
  margin: 0 0 70px 0;
}

.program-canvas {
  position: relative;
  min-height: 520px;
  margin-bottom: 50px;
  border-radius: 22px;
  overflow: hidden;
}
.program-canvas:last-child {
  margin-bottom: 0;
}

.program-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.program-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}
.program-canvas::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.62) 45%,
    rgba(0,0,0,0.22) 100%
  );
  z-index: 2;
}

.program-inner {
  position: relative;
  z-index: 3;
  max-width: 620px;
  padding: 70px 70px;
  color: #ffffff;
}
.program-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: inline-block;
  margin-bottom: 12px;
}
.program-inner h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 20px;
  color: #ffffff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
  line-height: 1.15;
}
.program-inner h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 12px;
  background: var(--grad);
  border-radius: 2px;
}
.program-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.90);
  margin-bottom: 14px;
}
.program-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.program-highlights li {
  font-size: 13px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 30px;
  color: rgba(255,255,255,0.90);
}

/* Program apply button — matches theme-btn pill */
.program-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--grad);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  letter-spacing: 0.5px;
}
.program-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
  color: #ffffff;
  text-decoration: none;
}

.program-canvas:hover .program-bg img {
  transform: scale(1.12);
}

@media (max-width: 991px) {
  .program-inner {
    padding: 50px 32px;
    max-width: 100%;
  }
  .program-canvas {
    min-height: auto;
  }
}


/* =============================================================
   WHY CDS — CONVERSION SECTION 1
   ============================================================= */
.adm-why {
  background: var(--beige);
  position: relative;
  overflow: hidden;
}

.adm-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 60px;
}

/* Left stats/reasons */
.why-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.why-card-number {
  font-size: 38px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.why-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.7;
  margin: 0;
}

/* Right visual block */
.why-visual {
  position: relative;
}
.why-image-main {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.10);
}
.why-image-main img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.why-image-main:hover img {
  transform: scale(1.04);
}
.why-floating-stat {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--dark);
  border-radius: 14px;
  padding: 22px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.why-floating-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.why-floating-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .adm-why-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .why-floating-stat {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .why-reasons {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =============================================================
   STUDENT STORIES — CONVERSION SECTION 2
   ============================================================= */
.adm-stories {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.adm-stories::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 70%, rgba(255,193,7,0.05), transparent 55%);
  pointer-events: none;
}

.stories-header {
  max-width: 720px;
  margin-bottom: 60px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.story-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.3;
  font-family: Georgia, serif;
}
.story-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-6px);
}

.story-program-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,193,7,0.10);
  color: var(--gold-start);
  display: inline-block;
  margin-bottom: 20px;
}
.story-card p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.80);
  margin-bottom: 28px;
  font-style: italic;
}
.story-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.story-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  flex-shrink: 0;
}
.story-author-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.story-author-info span {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* Stars */
.story-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.story-stars i {
  font-size: 13px;
  color: var(--gold-start);
}

@media (max-width: 991px) {
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* =============================================================
   FAQ SECTION — EDITORIAL REDESIGN
   ============================================================= */
.adm-faq {
  background: var(--white);
}

.adm-faq-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: flex-start;
  margin-top: 0;
}

/* Left sticky header */
.faq-sticky-header {
  position: sticky;
  top: 100px;
}
.faq-sticky-header .adm-title {
  margin-bottom: 20px;
}
.faq-sticky-header p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 36px;
}
.faq-helpline {
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  background: var(--beige);
  border-radius: 14px;
  gap: 4px;
}
.faq-helpline span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.faq-helpline a {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: 0.3s ease;
}
.faq-helpline a:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
  list-style: none;
  transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-item.is-open .faq-question h5 {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-icon i {
  font-size: 12px;
  color: var(--text);
  transition: transform 0.35s ease;
}
.faq-item.is-open .faq-icon {
  background: var(--grad);
  border-color: transparent;
}
.faq-item.is-open .faq-icon i {
  color: #ffffff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 40px 26px 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
  max-width: 680px;
}
.faq-item.is-open .faq-answer {
  display: block;
}

@media (max-width: 991px) {
  .adm-faq-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-sticky-header {
    position: static;
  }
  .faq-answer {
    padding-right: 20px;
  }
}
@media (max-width: 576px) {
  .faq-question h5 {
    font-size: 16px;
  }
}


/* =============================================================
   FINAL CTA — EXACT MATCH TO HOME PAGE cta-panel
   ============================================================= */
.adm-final-cta {
  background: var(--white);
}

.cta-panel {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 70px;
  border-radius: 20px;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: 4px;
  background: var(--grad);
}

.cta-eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--text);
  letter-spacing: -0.5px;
}
.cta-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.cta-description {
  font-size: 18px;
  line-height: 1.8;
  color: var(--body);
  max-width: 640px;
  margin: 0 auto 56px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary — pill gradient (theme-btn) */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--grad);
  color: #ffffff;
  border-radius: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  color: #ffffff;
  text-decoration: none;
}

/* Secondary — outlined dark */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 2px solid var(--text);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.cta-secondary:hover {
  background: var(--text);
  color: #ffffff;
  text-decoration: none;
}

/* Seats urgency note */
.cta-urgency {
  margin-top: 30px;
  font-size: 13px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cta-urgency::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f57c00;
  animation: adm-pulse 1.6s ease-in-out infinite;
}

@media (max-width: 768px) {
  .cta-panel {
    padding: 60px 28px;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}






/* -- Hero Form Card --------------------------------------------- */
.hero-form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 32px 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.40);
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

/* Gold top bar */
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ffc107 0%, #f57c00 100%);
}

.hero-form-card-header {
  margin-bottom: 18px;
}

.hero-form-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.2;
}

.hero-form-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
  line-height: 1.5;
}

.hero-form-card p strong {
  color: #f57c00;
  font-weight: 700;
}

/* Force NPF widget to fill card width */
.hero-form-card .npf_wgts {
  width: 100% !important;
}

.hero-form-card .npf_wgts iframe {
  width: 100% !important;
  border: none !important;
}

.form-trust {
  text-align: center;
  font-size: 12px;
  color: #aaa;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.form-trust i {
  margin-right: 5px;
  color: #ccc;
}

/* Mobile */
@media (max-width: 991px) {
  .hero-form-card {
    width: 100%;
    max-width: 100%;
  }
}

/* =============================================================
   RESPONSIVE UTILITIES
   ============================================================= */
@media (max-width: 768px) {
  .adm-section {
    padding: 70px 0;
  }
  .adm-programs-header {
    margin-bottom: 40px;
  }
}