/* ============================================================
   KIHEAT — Main Stylesheet
   Design: Green Brand Theme
   PRD: Primary Green #0F7A3D | Dark Green #0A5A2D | Gold #C8A23A
   ============================================================ */

/* ===== LOADING SKELETONS ===== */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.skeleton-line {
  height: 14px;
  margin-bottom: 10px;
  border-radius: 6px;
}

.skeleton-title {
  height: 20px;
  width: 60%;
  margin-bottom: 12px;
  border-radius: 6px;
}

.skeleton-tag {
  height: 22px;
  width: 80px;
  border-radius: 20px;
  display: inline-block;
}

.skeleton-photo {
  aspect-ratio: 4/3;
  border-radius: 10px;
  width: 100%;
}

.skeleton-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.skeleton-video {
  aspect-ratio: 16/9;
  border-radius: 10px;
  width: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #0F7A3D;
  --green-dark: #0A5A2D;
  --green-mid:  #1a9150;
  --green-lt:   #EAF7EE;
  --gold:       #C8A23A;
  --gold-lt:    #e8c96b;
  --gold-pale:  #fdf6e3;
  --cream:      #f7fbf8;
  --white:      #ffffff;
  --charcoal:   #1F2937;
  --muted:      #5a6a6e;
  --border:     #d4e8da;
  --shadow-sm:  0 2px 12px rgba(15,122,61,.08);
  --shadow-md:  0 8px 32px rgba(15,122,61,.14);
  --shadow-lg:  0 20px 60px rgba(15,122,61,.18);
  --radius:     12px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--green-dark);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.topbar::-webkit-scrollbar { display: none; }
.topbar a {
  color: #a8d8bc;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  padding: 9px 14px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition), background var(--transition);
  display: inline-block;
}
.topbar a:last-child { border-right: none; }
.topbar a:hover { color: var(--gold-lt); background: rgba(255,255,255,.05); }
.topbar-admin-btn {
  flex-shrink: 0; border-right: none !important; margin-left: auto;
  background: var(--gold) !important;
  color: var(--green-dark) !important; border-radius: 4px;
  padding: 4px 12px !important; font-size: 0.72rem !important;
  font-weight: 700 !important; letter-spacing: 0.5px;
  border: none !important;
  transition: background var(--transition) !important;
}
.topbar-admin-btn:hover { background: var(--gold-lt) !important; color: var(--green-dark) !important; }

/* ── NAVBAR ── */
#navbar {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 100%; margin: 0;
  display: flex; align-items: center;
  padding: 0 32px 0 0;
  height: 80px;
}

.nav-brand { display: flex; align-items: center; gap: 0; flex-shrink: 0; height: 80px; overflow: hidden; }
.nav-brand-emblem {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold-lt);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.nav-brand-logo { height: 78px; width: auto; flex-shrink: 0; object-fit: contain; }
.nav-brand-logo--ipu { height: 230px; width: auto; margin-left: -20px; }
.nav-brand-logo:not(.nav-brand-logo--ipu) { margin-left: -30px; }
.nav-brand-text { margin-left: -2px; }
.nav-brand-text p {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: var(--green-dark); line-height: 1.4;
  max-width: 220px; white-space: normal;
  letter-spacing: 0.25px; text-transform: uppercase;
}

.nav-menu {
  display: flex; align-items: center;
  gap: 2px; margin-left: auto;
}

.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 13px; height: 72px;
  font-size: 0.83rem; font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  cursor: pointer; white-space: nowrap;
  background: none; border: none; font-family: inherit;
}
.nav-link svg { width: 11px; height: 11px; transition: transform var(--transition); }
.nav-item:hover .nav-link { color: var(--green); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 2px; background: var(--green);
  transition: left var(--transition), right var(--transition);
}
.nav-item:hover .nav-link::after { left: 13px; right: 13px; }

/* dropdown */
.dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0 8px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  font-size: 0.81rem; font-weight: 400;
  color: var(--charcoal);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
.dropdown a::before { content: '›'; color: var(--green); font-size: 1rem; }
.dropdown a:hover { background: var(--green-lt); color: var(--green-dark); padding-left: 22px; }
.dropdown .divider-line { height: 1px; background: var(--border); margin: 6px 14px; }

/* apply btn */
.btn-apply-nav {
  margin-left: 16px;
  background: var(--green);
  color: var(--white) !important;
  padding: 0 24px !important;
  height: 40px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
  box-shadow: 0 4px 16px rgba(15,122,61,.35);
  white-space: nowrap;
  display: inline-flex; align-items: center; height: 40px;
}
.btn-apply-nav:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,90,45,.35) !important;
}

/* hamburger */
.hamburger {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  padding: 8px; border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--green-lt); }
.ham-line {
  display: block; width: 24px; height: 2px;
  background: var(--green); border-radius: 2px;
  margin: 5px 0;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 800;
}
.mobile-drawer.open { display: flex; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,90,45,.55);
  backdrop-filter: blur(4px);
}
.drawer-panel {
  position: relative; z-index: 1;
  width: 300px; max-width: 90vw;
  background: var(--white);
  height: 100%; overflow-y: auto;
  padding: 0 0 40px;
  box-shadow: var(--shadow-lg);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.mobile-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-header {
  background: var(--green-dark); padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.drawer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--gold-lt); font-weight: 700; }
.drawer-close {
  background: rgba(255,255,255,.1); border: none; cursor: pointer;
  color: var(--white); font-size: 1.3rem; line-height: 1;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.drawer-close:hover { background: rgba(255,255,255,.2); }
.drawer-nav { padding: 12px 0; }
.drawer-nav-item { border-bottom: 1px solid var(--border); }
.drawer-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 22px;
  font-size: 0.9rem; font-weight: 500; color: var(--charcoal);
  background: none; border: none; width: 100%; text-align: left;
  cursor: pointer; font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.drawer-nav-link:hover { background: var(--green-lt); color: var(--green-dark); }
.drawer-sub {
  display: none; background: var(--cream);
  padding: 4px 0;
}
.drawer-sub.open { display: block; }
.drawer-sub a {
  display: block; padding: 9px 36px;
  font-size: 0.82rem; color: var(--muted);
  transition: color var(--transition);
}
.drawer-sub a:hover { color: var(--green); }
.drawer-apply {
  margin: 20px 22px 0;
  display: block; text-align: center;
  background: var(--green); color: var(--white);
  padding: 13px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  transition: background var(--transition);
  box-shadow: 0 4px 16px rgba(15,122,61,.35);
}
.drawer-apply:hover { background: var(--green-dark); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}
.hero-video-bg {
  position: absolute; inset: 0;
  opacity: 1;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation: heroFade 30s infinite;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }
.hero-slide:nth-child(6) { animation-delay: 25s; }
@keyframes heroFade {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  17%  { opacity: 1; }
  20%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.10) 100%);
}
.hero-geo {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px;
  border: 1px solid rgba(200,162,58,.15);
  border-radius: 50%;
}
.hero-geo::before {
  content: ''; position: absolute;
  inset: 40px; border: 1px solid rgba(200,162,58,.1); border-radius: 50%;
}
.hero-geo::after {
  content: ''; position: absolute;
  inset: 80px; border: 1px solid rgba(200,162,58,.07); border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto;
  padding: 100px 48px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,162,58,.15);
  border: 1px solid rgba(200,162,58,.3);
  color: var(--gold-lt); font-size: 0.73rem;
  font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 7px 16px;
  border-radius: 100px; margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); animation: pulse 2s infinite; }
.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white); line-height: 1.15;
  max-width: 660px; margin-bottom: 22px;
  animation: fadeUp .8s .1s ease both;
}
.hero h2 em { color: var(--gold-lt); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,.72); font-size: 1.05rem;
  max-width: 520px; line-height: 1.8; margin-bottom: 40px;
  animation: fadeUp .8s .2s ease both;
}
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}
.btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: none; font-family: inherit; }
.btn-primary {
  background: var(--gold); color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(200,162,58,.4);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { background: #a5781f; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,162,58,.45); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.35); color: var(--white);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 500; font-size: 0.9rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-solid {
  background: var(--green); color: var(--white);
  padding: 12px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.86rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-solid:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-outline-gold {
  border: 2px solid var(--gold); color: var(--gold);
  padding: 11px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.86rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-outline-green {
  border: 2px solid var(--green); color: var(--green);
  padding: 11px 28px; border-radius: 8px;
  font-weight: 600; font-size: 0.86rem;
  transition: background var(--transition), color var(--transition);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* hero scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 48px; z-index: 1;
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.45); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp .8s .5s ease both;
}
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,.3); }

/* ── STATS ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-block {
  padding: 32px 28px;
  display: flex; align-items: center; gap: 18px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: var(--green-lt); }
.stat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  animation: iconFloat 3s ease-in-out infinite;
}
.stat-block:nth-child(2) .stat-icon { animation-delay: .75s; }
.stat-block:nth-child(3) .stat-icon { animation-delay: 1.5s; }
.stat-block:nth-child(4) .stat-icon { animation-delay: 2.25s; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; font-weight: 700; color: var(--green-dark); line-height: 1;
}
.stat-label { font-size: 0.76rem; color: var(--muted); font-weight: 500; margin-top: 2px; letter-spacing: 0.3px; }

/* ── SECTION COMMONS ── */
.section { padding: 90px 48px; }
.section-sm { padding: 64px 48px; }
.container { max-width: 1320px; margin: 0 auto; }

.sec-header { margin-bottom: 56px; }
.sec-header.center { text-align: center; }
.sec-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 12px;
}
.sec-tag::before { content: '— '; }
.sec-tag::after  { content: ' —'; }
.sec-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-dark); line-height: 1.2;
  margin-bottom: 16px;
}
.sec-rule {
  width: 52px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  margin-bottom: 16px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .9s .35s cubic-bezier(.4,0,.2,1);
}
.sec-header.center .sec-rule { margin-left: auto; margin-right: auto; transform-origin: center; }
.sec-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.8; max-width: 600px; }
.sec-header.center .sec-desc { margin: 0 auto; }

/* ── COURSES ── */
.bg-cream { background: var(--cream); }
.courses-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.course-card {
  background: var(--white); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.course-img { position: relative; height: 185px; overflow: hidden; background: var(--green-mid); }
.course-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.course-card:hover .course-img img { transform: scale(1.06); }
.course-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  letter-spacing: 0.5px;
}
.course-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.course-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--green-dark); margin-bottom: 4px;
}
.course-body .sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.course-seats {
  font-size: 0.72rem; font-weight: 700;
  color: var(--green); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px;
}
.course-seats::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: block; }
.course-body .btn-solid { margin-top: auto; justify-content: center; text-align: center; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; }
.about-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 20px;
  background: var(--green); z-index: -1;
  opacity: .3;
}
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; color: var(--green-dark);
  margin-bottom: 10px; line-height: 1.25;
}
.about-text .sec-rule { margin-bottom: 20px; }
.about-text p {
  color: var(--muted); line-height: 1.9; font-size: 0.94rem;
  margin-bottom: 18px;
}
.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.pillar {
  background: var(--cream); border-radius: 10px;
  padding: 16px; border-left: 3px solid var(--green);
  transition: background var(--transition);
}
.pillar:hover { background: var(--green-lt); }
.pillar-icon { font-size: 1.4rem; margin-bottom: 6px; }
.pillar h5 { font-size: 0.82rem; font-weight: 600; color: var(--green-dark); }
.pillar p  { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* ── LEADERSHIP ── */
.leaders-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin: 0 auto;
}
.leader-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.leader-card-img {
  position: relative; height: 260px; overflow: hidden;
  background: var(--green-mid);
}
.leader-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform .5s ease; display: block;
}
.leader-card:hover .leader-card-img img { transform: scale(1.06); }
.leader-card:nth-child(2) .leader-card-img img { object-position: center center; }

.leader-card-role {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent 0%, rgba(10,90,45,.9) 100%);
  color: var(--white);
  padding: 36px 14px 12px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
}
.leader-card-body {
  padding: 20px 20px 24px; text-align: center;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 14px;
}
.leader-card-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem; color: var(--green-dark); line-height: 1.3;
}
.leader-card-body .btn-outline-gold { font-size: 0.78rem; padding: 8px 22px; margin-top: auto; }

/* kept for any other page that uses the old circular avatar style */
.leader-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 18px; object-fit: cover;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 6px var(--green-lt);
  animation: avatarPulse 3s ease-in-out infinite;
}
.leader-role { font-size: 0.73rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin: 6px 0 16px; }

/* ── TESTIMONIAL ── */
.testimonial-section {
  background: var(--green-dark);
  position: relative; overflow: hidden;
}
.testimonial-section::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem; color: rgba(255,255,255,.03);
  position: absolute; top: -40px; left: -20px; line-height: 1;
}
.testimonial-inner { max-width: 980px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.testimonial-inner .sec-tag { color: var(--gold-lt); }
.testimonial-inner h2 { color: var(--white); }
.testimonial-inner .sec-rule { background: var(--gold-lt); }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--gold-lt); line-height: .8; margin-bottom: 12px; }
.quote-text {
  font-size: 1.05rem; color: rgba(255,255,255,.8);
  line-height: 1.9; margin-bottom: 24px;
  font-style: italic;
}
.quote-author { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.quote-course { font-size: 0.78rem; color: var(--gold-lt); margin-top: 4px; }

/* testimonial carousel */
.testimonial-carousel { position: relative; }
.testimonial-slide { display: none; animation: fadeUp .5s ease both; }
.testimonial-slide.active {
  display: flex;
  align-items: center;
  gap: 52px;
  text-align: left;
}
.testimonial-content { flex: 1; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 36px; }
.testimonial-avatar {
  flex-shrink: 0;
  width: 240px; height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--gold-lt);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.testimonial-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 680px) {
  .testimonial-slide.active { flex-direction: column; text-align: center; gap: 24px; }
  .testimonial-avatar { width: 160px; height: 200px; }
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); cursor: pointer;
  border: none; padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold-lt); transform: scale(1.3); }

/* ── GALLERY SCROLL CAROUSEL ── */
.gallery-carousel-wrap {
  display: flex; align-items: center; gap: 12px;
}
.gallery-track-outer {
  flex: 1; overflow: hidden; border-radius: 12px;
}
.gallery-track {
  display: flex; gap: 14px;
  will-change: transform;
}
.gallery-img-item { flex-shrink: 0; }
.gallery-img-item img {
  height: 320px; width: auto;
  object-fit: contain;
  border-radius: 10px; display: block;
  background: #111;
}
.gallery-arrow {
  flex-shrink: 0;
  background: var(--green-dark); color: #fff; border: none;
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 2;
}
.gallery-arrow:hover { background: var(--green-mid); }

/* kept for campus.html page grid if used there */
.gallery-item {
  overflow: hidden; border-radius: 12px;
  position: relative; background: var(--green-mid);
  cursor: pointer;
}
.gallery-item::after {
  content: '⊕';
  position: absolute; inset: 0;
  background: rgba(10,90,45,.6);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 2rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item { aspect-ratio: 4/3; }
.gallery-item.tall { aspect-ratio: unset; }

/* ── PLACEMENTS ── */
.placements-section { background: var(--cream); }
.recruiter-logos {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 20px; margin-top: 48px;
}
.recruiter-pill {
  flex-shrink: 0;
  width: 200px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.recruiter-pill:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--green); }
.recruiter-pill img { height: 72px; width: 100%; object-fit: contain; }

/* ── EVENT PHOTO CAROUSEL ── */
.evt-photo-item { flex-shrink: 0; }
.evt-photo-item img { height: 220px; width: auto; object-fit: cover; border-radius: 8px; display: block; background: #eee; }
.evt-carousel .gallery-track-outer { border-radius: 8px; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 32px 26px; border-radius: 16px;
  border: 1px solid var(--border); background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow-md); }
.why-icon {
  font-size: 2.2rem; display: inline-block;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.why-card:hover .why-icon { transform: translateY(-6px) scale(1.18); }
.why-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--green-dark); }
.why-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.75; }

/* ── ADMISSION CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: 'KIHEAT';
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem; color: rgba(255,255,255,.06); line-height: 1;
}
.cta-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; color: var(--white);
  margin-bottom: 10px; position: relative;
}
.cta-strip p { color: rgba(255,255,255,.85); margin-bottom: 30px; position: relative; }
.btn-white {
  background: var(--white); color: var(--green);
  padding: 14px 36px; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.2); }

/* ── INQUIRY MODAL ── */
.inquiry-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(10,90,45,.65); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 20px;
}
.inquiry-modal-overlay.open { display: flex; }
.inquiry-modal {
  background: var(--white); border-radius: 20px;
  padding: 40px 36px; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(10,90,45,.3);
  position: relative;
  animation: fadeUp .4s ease both;
}
.inquiry-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--green-lt); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--green-dark);
  transition: background var(--transition);
}
.inquiry-modal-close:hover { background: var(--green); color: var(--white); }
.inquiry-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--green-dark);
  margin-bottom: 6px;
}
.inquiry-modal .modal-sub { font-size: 0.84rem; color: var(--muted); margin-bottom: 24px; }

/* ── FOOTER ── */
footer {
  background: #050f07;
  color: #7aaa8a;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; padding: 64px 48px 48px;
  max-width: 1320px; margin: 0 auto;
}
.footer-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--white);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,162,58,.3);
  position: relative;
}
.footer-col-title::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 32px; height: 2px; background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.82rem; color: #7aaa8a;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col ul li a:hover { color: var(--gold-lt); padding-left: 6px; }
.footer-contact-line { display: flex; gap: 12px; margin-bottom: 12px; font-size: 0.82rem; }
.footer-contact-line .label { color: var(--gold); font-weight: 600; min-width: 56px; }
.footer-contact-line .val { color: #7aaa8a; line-height: 1.6; }

/* footer form */
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 11px 14px;
  color: var(--white); font-size: 0.82rem; font-family: inherit;
  outline: none; transition: border-color var(--transition), background var(--transition);
}
.footer-form input::placeholder { color: #3a6040; }
.footer-form input:focus { border-color: var(--green); background: rgba(255,255,255,.09); }
.footer-form button {
  background: var(--green); color: var(--white);
  border: none; border-radius: 8px; padding: 12px;
  font-weight: 600; font-size: 0.86rem; font-family: inherit;
  cursor: pointer; transition: background var(--transition), transform var(--transition);
}
.footer-form button:hover { background: var(--green-dark); transform: translateY(-1px); }

/* social icons */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #7aaa8a;
  transition: background var(--transition), color var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.footer-social a:hover { background: var(--green); color: var(--white); }
.footer-social a svg { width: 17px; height: 17px; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 48px; text-align: center;
  font-size: 0.76rem; color: #3a6040;
  max-width: 100%;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 72px 48px 64px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 1px solid rgba(200,162,58,.12);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); position: relative; z-index: 1;
}
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-top: 10px; position: relative; z-index: 1; }
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ── INNER PAGE CONTENT ── */
.page-content { padding: 72px 48px; max-width: 1320px; margin: 0 auto; }
.content-block { max-width: 860px; }
.content-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; color: var(--green-dark); margin-bottom: 16px;
}
.content-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--green-mid); margin: 28px 0 12px;
}
.content-block p { color: var(--muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.content-block ul { list-style: disc; padding-left: 24px; color: var(--muted); font-size: 0.95rem; }
.content-block ul li { margin-bottom: 10px; line-height: 1.7; }

/* ── DELNET SECTION ── */
.delnet-section {
  background: var(--white);
  padding: 80px 48px;
}
.delnet-inner { max-width: 1200px; margin: 0 auto; }
.delnet-label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: 14px; font-weight: 600;
}
.delnet-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--green-dark); margin-bottom: 18px; line-height: 1.2;
}
.delnet-desc {
  color: var(--muted); font-size: 1rem; line-height: 1.85;
  max-width: 680px; margin-bottom: 52px;
}
.delnet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.delnet-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(15,122,61,.06);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.delnet-card:hover {
  border-color: var(--green-mid);
  box-shadow: 0 8px 28px rgba(15,122,61,.12);
  transform: translateY(-3px);
}
.delnet-card h3 {
  font-size: 1rem; font-weight: 600; color: var(--green-dark);
  margin-bottom: 12px; line-height: 1.4;
}
.delnet-card p {
  font-size: 0.875rem; color: var(--muted);
  line-height: 1.8; margin-bottom: 18px;
}
.delnet-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.delnet-tag {
  font-size: 0.72rem; color: var(--green-dark);
  background: var(--green-lt);
  border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 11px;
  letter-spacing: 0.02em;
}

/* ── LIBRARY SECTION ── */
.library-section { margin-top: 60px; }
.library-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; color: var(--green-dark); margin-bottom: 12px;
}
.library-sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }
.library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.library-img-item {
  position: relative; overflow: hidden;
  border-radius: 14px; aspect-ratio: 4/3;
  box-shadow: 0 6px 28px rgba(0,0,0,.13);
}
.library-img-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.library-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,90,45,.0) 50%, rgba(10,90,45,.35) 100%);
  transition: opacity .4s ease;
}
.library-img-item:hover img { transform: scale(1.06); }
.library-img-item:hover .library-img-overlay { opacity: 0.6; }

/* ── INFO CARDS ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.info-card {
  background: var(--cream); border-radius: 14px;
  padding: 28px; border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.info-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.info-card-icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.info-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ── TABLE ── */
.styled-table { width: 100%; border-collapse: collapse; margin-top: 24px; font-size: 0.88rem; }
.styled-table th {
  background: var(--green); color: var(--white);
  padding: 13px 16px; text-align: left; font-weight: 600;
}
.styled-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.styled-table tr:nth-child(even) td { background: var(--cream); }
.styled-table tr:hover td { background: var(--green-lt); }
.styled-table tr.table-total td { background: var(--green-lt); font-weight: 600; border-top: 2px solid var(--border); }
.content-block h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--green-mid); margin: 28px 0 8px;
}

/* ── NDLI SECTION ── */
.ndli-section {
  background: var(--green-dark);
  padding: 80px 48px;
  position: relative; overflow: hidden;
}
.ndli-section::before {
  content: '';
  position: absolute; right: -120px; bottom: -120px;
  width: 440px; height: 440px; border-radius: 50%;
  border: 1px solid rgba(200,162,58,.1); pointer-events: none;
}
.ndli-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.ndli-label {
  display: block;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 14px; font-weight: 600;
}
.ndli-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--white); margin-bottom: 18px; line-height: 1.2;
}
.ndli-desc {
  color: rgba(255,255,255,.75); font-size: 1rem; line-height: 1.85;
  max-width: 720px; margin-bottom: 40px;
}
.ndli-access-label {
  font-size: 0.8rem; font-weight: 700; color: var(--gold-lt);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px;
}
.ndli-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 32px;
}
.ndli-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 18px 20px;
  color: rgba(255,255,255,.85); font-size: 0.92rem; line-height: 1.65;
}
.ndli-feature-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
.ndli-note {
  font-size: 0.88rem; color: rgba(255,255,255,.5);
  font-style: italic; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
}
@media (max-width: 680px) {
  .ndli-section { padding: 56px 24px; }
  .ndli-features-grid { grid-template-columns: 1fr; }
}

/* ── NOTICE BOARD ── */
.notice-list { display: flex; flex-direction: column; gap: 14px; }
.notice-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.notice-item:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.notice-date {
  background: var(--green); color: var(--white);
  border-radius: 8px; padding: 8px 12px;
  text-align: center; min-width: 52px; flex-shrink: 0;
  font-size: 0.7rem;
}
.notice-date .day { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1; color: var(--gold-lt); }
.notice-date .mon { font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; opacity: .7; }
.notice-title { font-weight: 600; font-size: 0.88rem; color: var(--green-dark); margin-bottom: 4px; }
.notice-body  { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }
.notice-tag { display: inline-block; background: var(--green-lt); color: var(--green); font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; padding: 2px 8px; border-radius: 4px; margin-top: 6px; }

/* ── STUDENT ACHIEVEMENT CARDS ── */
.stu-achieve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.stu-achieve-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.stu-achieve-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}
.stu-achieve-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-lt);
}
.stu-achieve-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .4s ease;
}
.stu-achieve-card:hover .stu-achieve-photo img { transform: scale(1.06); }
.stu-achieve-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.stu-achieve-badge.gold   { background: rgba(200,162,58,.92); color: #fff; }
.stu-achieve-badge.bronze { background: rgba(160,82,45,.92);  color: #fff; }
.stu-achieve-badge.first  { background: rgba(15,122,61,.92);  color: #fff; }
.stu-achieve-badge.second { background: rgba(10,90,140,.92);  color: #fff; }
.stu-achieve-body { padding: 18px 20px 20px; }
.stu-achieve-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.stu-achieve-course {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--white);
  background: var(--green);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.stu-achieve-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 600px) {
  .stu-achieve-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 400px) {
  .stu-achieve-grid { grid-template-columns: 1fr; }
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--green-dark); border-radius: 20px;
  padding: 40px 36px; color: var(--white);
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; margin-bottom: 28px; color: var(--gold-lt);
}
.c-item { display: flex; gap: 14px; margin-bottom: 22px; }
.c-item-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(200,162,58,.2); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.c-item h5 { font-size: 0.78rem; color: rgba(255,255,255,.5); font-weight: 500; margin-bottom: 4px; }
.c-item p  { font-size: 0.86rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.contact-form-wrap { background: var(--cream); border-radius: 20px; padding: 40px 36px; border: 1px solid var(--border); }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--green-dark); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.86rem; font-family: inherit; color: var(--charcoal);
  background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(15,122,61,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── DOWNLOAD LINKS ── */
.download-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.download-item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 18px;
  background: var(--cream); border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition);
}
.download-item:hover { border-color: var(--green); background: var(--green-lt); }
.download-item span { font-size: 0.88rem; color: var(--charcoal); font-weight: 500; }
.download-item a {
  background: var(--green); color: var(--white);
  padding: 7px 16px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}
.download-item a:hover { background: var(--green-dark); }

/* ── LEADER MESSAGE PAGE ── */
.ldr-msg {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 64px;
  align-items: start;
}
.ldr-msg-reverse { grid-template-columns: 1fr 290px; }
.ldr-msg-reverse .ldr-photo-col { order: 2; }
.ldr-msg-reverse .ldr-text-col  { order: 1; }

.ldr-photo-col { position: relative; padding-bottom: 36px; }
.ldr-portrait {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 20px; box-shadow: var(--shadow-lg); display: block;
  border: 3px solid var(--border);
}
.ldr-badge {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  background: var(--green-dark); color: var(--white);
  padding: 8px 22px; border-radius: 100px;
  font-size: 0.69rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(10,90,45,.35);
  border: 2px solid var(--gold);
}

.ldr-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; color: var(--green-dark);
  line-height: 1.15; margin: 6px 0 6px;
}
.ldr-org {
  font-size: 0.78rem; color: var(--muted);
  font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.ldr-quote {
  position: relative;
  border-left: 4px solid var(--gold);
  padding: 16px 22px 14px 28px;
  margin: 26px 0 30px;
  background: linear-gradient(135deg, var(--gold-pale) 0%, rgba(253,246,227,.35) 100%);
  border-radius: 0 12px 12px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem; font-style: italic;
  color: var(--green-dark); line-height: 1.72;
}
.ldr-quote::before {
  content: '\201C';
  position: absolute; top: -6px; left: 12px;
  font-size: 3.2rem; color: var(--gold);
  line-height: 1; font-family: 'Cormorant Garamond', serif;
  font-style: normal;
}
.ldr-text-col p {
  color: var(--muted); line-height: 1.9; font-size: 0.94rem; margin-bottom: 14px;
}
.ldr-sig {
  margin-top: 32px; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
}
.ldr-sig strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--green-dark);
}
.ldr-sig span {
  font-size: 0.72rem; color: var(--muted);
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.ldr-divider {
  margin: 64px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--gold) 50%, var(--border) 80%, transparent 100%);
}

@media (max-width: 900px) {
  .ldr-msg, .ldr-msg-reverse { grid-template-columns: 1fr; gap: 44px; }
  .ldr-msg-reverse .ldr-photo-col { order: 0; }
  .ldr-msg-reverse .ldr-text-col  { order: 0; }
  .ldr-portrait { aspect-ratio: 4/3; max-height: 340px; }
  .ldr-name { font-size: 1.9rem; }
  .ldr-divider { margin: 48px 0; }
}

/* ── ACHIEVEMENTS PAGE ── */
.achievement-card {
  background: var(--white); border-radius: 16px;
  padding: 28px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.achievement-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green); }
.achievement-icon { font-size: 2.5rem; margin-bottom: 14px; }
.achievement-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.achievement-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp      { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse       { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
@keyframes shimmer     { to { background-position: 200% center; } }
@keyframes iconFloat   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes orbDrift    { 0%, 100% { transform: translate(0, 0); } 33% { transform: translate(28px, -38px); } 66% { transform: translate(-16px, 20px); } }
@keyframes avatarPulse { 0%, 100% { box-shadow: 0 0 0 6px var(--green-lt); } 50% { box-shadow: 0 0 0 13px rgba(15,122,61,.09); } }

/* scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* directional reveal variants */
.reveal-left {
  opacity: 0; transform: translateX(-52px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(52px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(.88);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* trigger sec-rule growth when parent becomes visible */
.reveal.visible .sec-rule,
.reveal-left.visible .sec-rule,
.reveal-right.visible .sec-rule { transform: scaleX(1); }

/* hero ambient orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(15,122,61,.22) 0%, transparent 65%);
  top: -180px; left: -180px;
  animation: orbDrift 16s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,162,58,.16) 0%, transparent 65%);
  bottom: -90px; right: 60px;
  animation: orbDrift 20s ease-in-out infinite reverse;
}

/* CTA strip ambient orbs */
.cta-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-orb-1 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  top: -100px; left: -70px;
  animation: orbDrift 13s ease-in-out infinite;
}
.cta-orb-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(200,162,58,.2) 0%, transparent 70%);
  bottom: -80px; right: 60px;
  animation: orbDrift 17s ease-in-out infinite reverse;
}

/* hero parallax */
.hero-video-bg { will-change: transform; }

/* reduced motion override */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .sec-rule { transform: scaleX(1) !important; transition: none !important; }
  .stat-icon, .leader-avatar { animation: none !important; }
  .hero-orb, .cta-orb { animation: none !important; }
  .why-icon { transition: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner  { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .leaders-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-img-item img { height: 240px; }
  .section, .section-sm { padding: 60px 24px; }
  .page-hero { padding: 56px 24px 48px; }
  .page-content { padding: 48px 24px; }
  .topbar { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .courses-grid   { grid-template-columns: 1fr; }
  .stats-inner    { grid-template-columns: 1fr 1fr; }
  .gallery-img-item img { height: 180px; }
  .library-grid { grid-template-columns: 1fr; }
  .delnet-grid { grid-template-columns: 1fr; }
  .delnet-section { padding: 56px 24px; }
  .why-grid       { grid-template-columns: 1fr; }
  .leaders-grid   { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; padding: 40px 24px; }
  .footer-bottom  { padding: 18px 24px; }
  .cta-strip      { padding: 48px 24px; }
}
