/* ══════════════════════════════
   APPLY MODAL
══════════════════════════════ */
.apply-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.apply-modal-overlay.open {
  display: flex;
}

.apply-modal {
  background: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.apply-modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 28px;
}

.apply-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #888;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.apply-modal-close:hover {
  background: #f3e8ff;
  color: #6a0dad;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
}

.form-group input {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #7c3aed;
}

.send-btn {
  width: 100%;
  background: linear-gradient(135deg, #6a0dad, #7c3aed);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.send-btn:hover { opacity: 0.9; }
.send-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
  font-size: 0.95rem;
  color: #6a0dad;
  font-weight: 600;
  line-height: 1.7;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.s-hero {
  position: relative;
  background: linear-gradient(145deg, #3b0764 0%, #6a0dad 50%, #7c3aed 100%);
  padding: 80px 4rem 80px;
  text-align: center;
  overflow: hidden;
}

/* large decorative background circles */
.s-hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.s-hero-bg-circle-1 {
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  top: -160px;
  left: -120px;
}

.s-hero-bg-circle-2 {
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.05);
  bottom: -100px;
  right: -80px;
}

.s-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* base badge — used on dark hero background */
.s-badge {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.1);
}

/* badge on light/white backgrounds */
.recipients-header .s-badge,
.rules-header .s-badge {
  background: #f3e8ff;
  border-color: #7c3aed;
  color: #6a0dad;
}

.s-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.s-hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 0;
}

/* inline stat bar */
.s-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 24px 0;
  backdrop-filter: blur(8px);
}



/* ══════════════════════════════
   SCHOLAR CARDS
══════════════════════════════ */
.scholars-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 64px 4rem;
  background: #fff;
}

.scholar-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.scholar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(106, 13, 173, 0.1);
}

.scholar-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.scholar-avatar {
  width: 52px;
  height: 52px;
  background: #f3e8ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.scholar-deco {
  font-size: 3rem;
  color: #ede9fe;
  line-height: 1;
  user-select: none;
}

.scholar-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.scholar-pin { font-size: 1rem; margin-top: 3px; }

.scholar-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 4px;
}

.scholar-tag {
  font-size: 0.72rem;
  color: #7c3aed;
  font-weight: 600;
}

.scholar-focus-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #bbb;
  margin-bottom: 4px;
}

.scholar-focus {
  font-size: 0.92rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.scholar-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #faf9ff;
  border: 1px solid #ede9fe;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #bbb;
  margin-bottom: 4px;
}

.stat-value {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111;
}

.scholar-card blockquote {
  font-size: 0.82rem;
  color: #666;
  font-style: italic;
  line-height: 1.65;
  border-left: 3px solid #c4b5fd;
  padding-left: 14px;
  margin-top: 4px;
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #6a0dad 0%, #7c3aed 100%);
  border-radius: 20px;
  margin: 60px 2rem;
  padding: 56px 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* subtle background circle decoration */
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.cta-left h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-left p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 28px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #6a0dad;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: #f3e8ff;
  transform: translateY(-2px);
}

.cta-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}

.cta-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.cta-card-icon { font-size: 1.4rem; }

/* ══════════════════════════════
   RECIPIENTS
══════════════════════════════ */
.recipients-section {
  padding: 2rem 2rem 1rem;
  background: #fff;
}

.recipients-header {
  text-align: center;
  margin-bottom: 56px;
}

.recipients-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin: 14px 0 14px;
}

.recipients-header p {
  font-size: 0.93rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* flex wrap — 9 students, last row centered */
.recipients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.recipients-grid .recipient-card {
  width: calc(20% - 16px);
  min-width: 140px;
  max-width: 200px;
}

.recipient-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ede9fe;
}

.recipient-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ede9fe;
  box-shadow: 0 2px 12px rgba(106, 13, 173, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.recipient-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(106, 13, 173, 0.15);
}

.recipient-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ede9fe;
}

.recipient-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.recipient-card:hover .recipient-img-wrap img {
  transform: scale(1.05);
}

.recipient-info {
  padding: 16px 16px 18px;
  text-align: center;
  border-top: 1px solid #f3e8ff;
}

.recipient-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.recipient-info span {
  font-size: 0.72rem;
  color: #7c3aed;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Lucide Icon Styles ── */
.scholar-avatar i {
  width: 24px;
  height: 24px;
  stroke: #7c3aed;
  stroke-width: 2;
}

.scholar-pin-icon {
  width: 16px;
  height: 16px;
  stroke: #7c3aed;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}

.cta-card-icon {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
}

/* ══════════════════════════════
   RULES & REGULATIONS
══════════════════════════════ */
.rules-section {
  padding: 80px 4rem 90px;
  background: #faf9ff;
  border-top: 1px solid #ede9fe;
}

.rules-header {
  text-align: center;
  margin-bottom: 52px;
}

.rules-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  margin: 14px 0 12px;
}

.rules-header p {
  font-size: 0.92rem;
  color: #666;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rule-card {
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.rule-card:hover {
  box-shadow: 0 8px 28px rgba(106, 13, 173, 0.1);
  transform: translateY(-3px);
}

.rule-card--full {
  grid-column: 1 / -1;
}

.rule-num {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7c3aed;
  background: #f3e8ff;
  border: 1.5px solid #c4b5fd;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.rule-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #6a0dad;
  margin-bottom: 8px;
}

.rule-body p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.rule-body strong {
  color: #6a0dad;
  font-weight: 700;
}

/* ══════════════════════════════
   SCHOLARSHIP AMOUNT
══════════════════════════════ */
.amount-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #ede9fe;
}

.amount-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.amount-header-icon {
  width: 28px;
  height: 28px;
  stroke: #6a0dad;
  stroke-width: 2;
}

.amount-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
}

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.amount-card {
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 14px;
  padding: 28px;
}

.amount-card--highlight {
  background: linear-gradient(145deg, #6a0dad, #7c3aed);
  border: none;
}

.amount-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6a0dad;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.amount-card--highlight .amount-card-title {
  color: rgba(255,255,255,0.85);
}

.amount-card-title i {
  width: 18px;
  height: 18px;
  stroke: #6a0dad;
  stroke-width: 2;
}

.amount-card--highlight .amount-card-title i {
  stroke: rgba(255,255,255,0.85);
}

.amount-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.amount-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #f3e8ff;
}

.amount-card--highlight .amount-list li {
  border-bottom-color: rgba(255,255,255,0.15);
}

.amount-list li:last-child {
  border-bottom: none;
}

.grade-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.amount-card--highlight .grade-label {
  color: #fff;
}

.grade-amount {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #6a0dad;
}

.amount-card--highlight .grade-amount {
  color: #fff;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-reg {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.reg-fee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding: 13px 16px;
  background: #faf9ff;
  border: 1px dashed #c4b5fd;
  border-radius: 8px;
}

.reg-fee span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.reg-fee-amount {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #6a0dad !important;
}

/* ── Contact Section ── */
.schol-contact {
  padding: 80px 4rem;
  background: #faf9ff;
  border-top: 1px solid #ede9fe;
}

.schol-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.schol-contact-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin: 12px 0 12px;
}

.schol-contact-text p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 24px;
}

.schol-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.schol-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
}

.schol-contact-list i {
  width: 16px; height: 16px;
  stroke: #7c3aed;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.schol-contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.schol-contact-card {
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.schol-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(106,13,173,0.1);
}

.schol-contact-card--dark {
  background: #0d0118;
  border: none;
}

.schol-contact-card i {
  width: 20px; height: 20px;
  stroke: #6a0dad;
  stroke-width: 2;
}

.schol-contact-card--dark i { stroke: #a78bfa; }

.schol-contact-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
}

.schol-contact-card--dark h4 { color: #fff; }

.schol-contact-card p {
  font-size: 0.78rem;
  color: #777;
  line-height: 1.6;
}

.schol-contact-card--dark p { color: rgba(255,255,255,0.55); }
.schol-contact-card--dark strong { color: #c4b5fd; }
