:root {
  --green-900: #0b3d2e;
  --green-800: #0f4c38;
  --green-700: #14634a;
  --green-600: #1a7a5a;
  --green-100: #e3f2ec;
  --gold-500: #c9a227;
  --gold-400: #dfba49;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1c2321;
  --muted: #5b6663;
  --radius: 14px;
  --shadow-sm: 0 2px 8px rgba(11, 61, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 61, 46, 0.12);
  --shadow-lg: 0 16px 48px rgba(11, 61, 46, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; color: var(--green-900); line-height: 1.25; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container { width: min(1140px, 92%); margin-inline: auto; }

.section { padding: 84px 0; }
.section-alt { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }

.section-sub { color: var(--muted); max-width: 640px; margin-inline: auto; }

.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary { background: var(--green-800); color: var(--white); }
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--gold-500); color: var(--green-900); }
.btn-gold:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--green-800); color: var(--green-800); background: transparent; }
.btn-outline:hover { background: var(--green-800); color: var(--white); transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--green-800); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.topbar {
  background: var(--green-900);
  color: #cfe4db;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold-400); }
.topbar span.dot { color: var(--gold-500); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-600), var(--green-900));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--gold-500);
}

.brand-logo.brand-logo-img {
  background: var(--white);
  padding: 2px;
  overflow: hidden;
}

.brand-logo.brand-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text strong { display: block; font-family: Georgia, serif; font-size: 1.15rem; color: var(--green-900); letter-spacing: 0.02em; }
.brand-text small { color: var(--muted); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 6px; align-items: center; }

.main-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover { background: var(--green-100); color: var(--green-800); }
.main-nav a.active { background: var(--green-800); color: var(--white); }
.main-nav a.nav-cta { background: var(--gold-500); color: var(--green-900); margin-left: 6px; }
.main-nav a.nav-cta:hover { background: var(--gold-400); }
.main-nav a.nav-cta-dash { background: var(--green-700); color: var(--white); }
.main-nav a.nav-cta-dash:hover { background: var(--green-600); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--green-900); margin: 5px 0; border-radius: 3px; transition: 0.3s; }

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--green-900);
}

.hero-slider { position: relative; }

.hero-slides { display: grid; }

.hero-slide {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide.is-active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(11, 61, 46, 0.96) 0%,
    rgba(11, 61, 46, 0.82) 42%,
    rgba(11, 61, 46, 0.4) 78%,
    rgba(11, 61, 46, 0.28) 100%);
}

.hero-slide .container { position: relative; z-index: 2; padding: 96px 0 128px; }

.hero-inner {
  max-width: 780px;
  transform: translateY(30px);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide.is-active .hero-inner { transform: translateY(0); }

.hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.3rem); margin: 16px 0 20px; }
.hero h1 em { color: var(--gold-400); font-style: normal; }

.hero p.lead { font-size: 1.12rem; color: #d9e8e2; max-width: 640px; margin-bottom: 34px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (prefers-reduced-motion: reduce) {
  .hero-inner { transform: none; transition: none; }
  .slide-bg { transition: none; }
  .hero-slide.is-active .slide-bg { transform: none; }
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.slider-arrow:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 36px;
  z-index: 6;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.slider-dots button.active { width: 30px; background: var(--gold-500); }

.slide-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.14);
  z-index: 6;
}

.slide-progress span { display: block; height: 100%; width: 0; background: var(--gold-500); }

.page-hero {
  position: relative;
  color: var(--white);
  padding: 88px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 39, 0.22), transparent 50%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  overflow: hidden;
}

.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 12px; }
.page-hero p { color: #d9e8e2; max-width: 660px; margin-inline: auto; }
.page-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(223, 186, 73, 0.25);
  border-radius: var(--radius);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }

.breadcrumb { font-size: 0.82rem; letter-spacing: 0.06em; color: #bcd6cc; margin-bottom: 16px; text-transform: uppercase; }
.breadcrumb a { color: var(--gold-400); }

.hero-emblem {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold-500);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.stats-band {
  background: var(--gold-500);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(11, 61, 46, 0.15);
}

.stat {
  background: var(--gold-500);
  text-align: center;
  padding: 34px 16px;
  color: var(--green-900);
}

.stat b { display: block; font-family: Georgia, serif; font-size: 2.1rem; line-height: 1.1; }
.stat span { font-size: 0.86rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.85; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid transparent;
  height: 100%;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-top-color: var(--gold-500); }

.card .icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }

.about-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background:
    radial-gradient(circle at 70% 20%, rgba(201, 162, 39, 0.35), transparent 55%),
    linear-gradient(150deg, var(--green-800), var(--green-900));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(223, 186, 73, 0.35);
  border-radius: calc(var(--radius) - 6px);
}

.about-media .glyph {
  font-family: Georgia, serif;
  color: var(--gold-400);
  font-size: 5.5rem;
  text-align: center;
  line-height: 1.15;
  z-index: 2;
}

.about-media .glyph small { display: block; font-size: 0.95rem; letter-spacing: 0.28em; color: #cfe4db; margin-top: 10px; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--ink);
}

.check-list .tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

.check-list b { display: block; }
.check-list p { color: var(--muted); font-size: 0.92rem; }

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.program-banner {
  padding: 44px 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.program-banner::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(223, 186, 73, 0.3);
  border-radius: 10px;
}

.program-banner.siloam { background: linear-gradient(135deg, #14532d, #166534); }
.program-banner.daniel { background: linear-gradient(135deg, #713f12, #a16207); }

.program-banner .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.program-banner h3 { color: var(--white); font-size: 1.3rem; position: relative; z-index: 2; }

.program-body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.program-body p { color: var(--muted); font-size: 0.94rem; flex: 1; }
.program-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.83rem; color: var(--green-800); font-weight: 600; }
.program-meta span { display: inline-flex; align-items: center; gap: 6px; }

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stars { color: var(--gold-500); letter-spacing: 3px; }

.testimonial blockquote { color: var(--ink); font-size: 0.97rem; font-style: italic; flex: 1; }

.testimonial .who { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--green-900));
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: Georgia, serif;
}
.who b { display: block; font-size: 0.94rem; color: var(--green-900); }
.who small { color: var(--muted); font-size: 0.8rem; }

.cta-band {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(223, 186, 73, 0.28), transparent 50%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
  text-align: center;
  padding: 76px 0;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { color: #d9e8e2; max-width: 620px; margin: 0 auto 30px; }

.curriculum { counter-reset: module; }

.module-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 22px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-row:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.module-num {
  counter-increment: module;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green-800);
}

.module-num::before { content: "0" counter(module); }

.module-row h3 { font-size: 1.08rem; margin-bottom: 5px; }
.module-row p { color: var(--muted); font-size: 0.92rem; }
.module-dur { font-size: 0.82rem; font-weight: 700; color: var(--gold-500); white-space: nowrap; padding-top: 4px; }

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 38px 34px;
  border-top: 5px solid var(--green-800);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured { border-top-color: var(--gold-500); position: relative; }
.pricing-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
}

.price { font-family: Georgia, serif; font-size: 2.3rem; color: var(--green-900); margin: 10px 0 2px; }
.price small { font-size: 0.95rem; color: var(--muted); font-family: "Segoe UI", sans-serif; }
.pricing-card > p.desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; }

.fee-table { width: 100%; border-collapse: collapse; margin-top: 10px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fee-table th, .fee-table td { padding: 16px 22px; text-align: left; font-size: 0.95rem; }
.fee-table thead th { background: var(--green-800); color: var(--white); font-family: Georgia, serif; font-weight: 600; }
.fee-table tbody tr:nth-child(even) { background: var(--green-100); }
.fee-table td:last-child, .fee-table th:last-child { text-align: right; font-weight: 700; color: var(--green-800); }

.info-strip { background: var(--white); border-left: 4px solid var(--gold-500); border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-sm); padding: 22px 26px; display: flex; gap: 14px; align-items: flex-start; }
.info-strip .icon { font-size: 1.5rem; }
.info-strip b { color: var(--green-900); }

.form-shell {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 46px 42px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }

.field label { font-size: 0.87rem; font-weight: 700; color: var(--green-900); }
.field label span { color: #c0392b; }

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 15px;
  border: 1.5px solid #d5ded9;
  border-radius: 10px;
  background: #fbfdfc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  color: var(--ink);
}

.field textarea { resize: vertical; min-height: 130px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(26, 122, 90, 0.12);
}

fieldset.legend-box { border: 1.5px solid #d5ded9; border-radius: 12px; padding: 20px 22px; grid-column: 1 / -1; }
fieldset.legend-box legend { font-size: 0.85rem; font-weight: 800; color: var(--green-900); letter-spacing: 0.08em; text-transform: uppercase; padding: 0 8px; }
.radio-row { display: flex; gap: 22px; flex-wrap: wrap; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; cursor: pointer; font-size: 0.94rem; }
.radio-row input[type="radio"], .radio-row input[type="checkbox"] { accent-color: var(--green-700); width: 17px; height: 17px; }

.consent { grid-column: 1 / -1; display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); }
.consent input { accent-color: var(--green-700); margin-top: 3px; }

.alert { border-radius: 12px; padding: 16px 20px; margin-bottom: 26px; font-size: 0.94rem; border: 1px solid transparent; }
.alert-success { background: #e6f6ee; border-color: #b5e3cd; color: #14663f; }
.alert-error { background: #fdeeee; border-color: #f3c4c4; color: #96323c; }

.alert ul { list-style: disc; padding-left: 22px; }

.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }

.contact-info-card {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: #cfe4db; font-size: 0.92rem; margin-bottom: 26px; }

.contact-line { display: flex; gap: 15px; margin-bottom: 22px; }
.contact-line .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(223, 186, 73, 0.15);
  border: 1px solid rgba(223, 186, 73, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-line b { display: block; font-size: 0.9rem; color: var(--gold-400); margin-bottom: 2px; }
.contact-line p, .contact-line a { font-size: 0.92rem; color: #e6f1ec; }
.contact-line a:hover { color: var(--gold-400); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 40px;
  line-height: 0;
}

.site-footer { background: var(--green-900); color: #b7cec5; padding: 70px 0 0; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }

.footer-col h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 18px; }
.footer-col p { font-size: 0.9rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand .brand-logo { background: var(--white); }
.footer-brand strong { color: var(--white); font-family: Georgia, serif; font-size: 1.1rem; display: block; }
.footer-brand small { font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8fb3a6; }

.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { font-size: 0.91rem; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-col ul a:hover { color: var(--gold-400); padding-left: 5px; }

.footer-contact li { display: flex; gap: 10px; font-size: 0.89rem; margin-bottom: 13px; }
.footer-contact .icon { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 20px 0;
  font-size: 0.83rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--gold-400); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.vm-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold-500);
}

.vm-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.vm-card h3 { margin-bottom: 10px; }
.vm-card p { color: var(--muted); font-size: 0.95rem; }

.about-media.media-photo { background-size: cover; background-position: center; }
.about-media.media-photo::after { z-index: 2; }

.media-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  background: rgba(11, 61, 46, 0.9);
  border: 1px solid rgba(223, 186, 73, 0.4);
  border-radius: 12px;
  padding: 16px 20px;
  color: #e6f1ec;
  font-size: 0.95rem;
}

.media-badge b { color: var(--gold-400); }

.obj-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 34px;
}

.obj-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px 22px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  font-weight: 500;
}

.obj-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--green-800);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-weight: 700;
}

.why-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 44px 40px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(223, 186, 73, 0.25), transparent 55%),
    linear-gradient(150deg, var(--green-900), var(--green-700));
  box-shadow: var(--shadow-lg);
}

.why-panel::before {
  content: "\201C";
  position: absolute;
  top: -34px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
  color: rgba(223, 186, 73, 0.15);
  pointer-events: none;
}

.why-panel h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.why-panel p { color: #d9e8e2; font-size: 0.97rem; }
.why-panel .big-quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  color: var(--gold-400);
  margin-top: 14px;
}

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.module-head {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
}

.module-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(223, 186, 73, 0.15);
  border: 1px solid rgba(223, 186, 73, 0.4);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.module-head h3 { color: var(--white); font-size: 1.15rem; }
.module-head small {
  display: block;
  color: #bcd6cc;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.module-body {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.module-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.content-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.93rem;
}

.content-list li::before {
  content: "\25B8";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.cols-2 { columns: 2; column-gap: 36px; }
.cols-2 li { break-inside: avoid; }

.outcome-box {
  background: var(--green-100);
  border-radius: 12px;
  padding: 24px 26px;
  align-self: start;
}

.outcome-box .module-label { color: var(--green-700); }

.outcome-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 0.92rem;
}

.outcome-box li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--gold-400);
  font-size: 0.62rem;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-800);
}

.certify-band {
  border-radius: var(--radius);
  text-align: center;
  padding: 58px 32px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(201, 162, 39, 0.28), transparent 55%),
    linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: var(--shadow-lg);
}

.certify-band .medal { font-size: 2.7rem; margin-bottom: 12px; }
.certify-band h3 { color: var(--white); font-size: clamp(1.3rem, 2.6vw, 1.85rem); margin-bottom: 12px; }
.certify-band p { color: #d9e8e2; max-width: 660px; margin: 0 auto; }
.certify-band p + p { margin-top: 10px; }

.enquire-strip {
  margin-top: 42px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 5px solid var(--gold-500);
  box-shadow: var(--shadow-md);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.enquire-strip h3 { font-size: 1.2rem; margin-bottom: 4px; }
.enquire-strip p { color: var(--muted); font-size: 0.93rem; }
.enquire-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.flyer-frame {
  display: block;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid #eadfc4;
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.flyer-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 6px);
}

.royal-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 44px 40px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(223, 186, 73, 0.32), transparent 55%),
    linear-gradient(150deg, #713f12, #a16207);
  box-shadow: var(--shadow-lg);
}

.royal-panel::before {
  content: "\2654";
  position: absolute;
  top: -20px;
  right: 14px;
  font-size: 8rem;
  line-height: 1;
  color: rgba(223, 186, 73, 0.16);
  pointer-events: none;
}

.royal-panel h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.royal-panel p { color: #f3e8cf; font-size: 0.97rem; }
.royal-panel .big-quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-400);
  margin-top: 12px;
}

.royal-band {
  border-radius: var(--radius);
  text-align: center;
  padding: 50px 32px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(223, 186, 73, 0.32), transparent 55%),
    linear-gradient(135deg, #713f12, #a16207);
  box-shadow: var(--shadow-lg);
}

.royal-band .medal { font-size: 2.6rem; margin-bottom: 10px; }
.royal-band h3 { color: var(--white); font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 12px; }
.royal-band p { color: #e9dcc0; max-width: 700px; margin: 0 auto; }
.royal-band p + p { margin-top: 10px; }

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.book-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 500;
}

.book-item .bicon { color: var(--gold-500); }

.module-body.single { grid-template-columns: 1fr; }

/* ======================== STUDENT SYSTEM ======================== */

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip { padding: 8px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; color: var(--green-800); background: var(--white); border: 1.5px solid #d5ded9; transition: all 0.2s; text-decoration: none; }
.filter-chip:hover, .filter-chip.active { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.course-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform 0.25s, box-shadow 0.25s; border: 1px solid #e5ede8; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.course-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.course-card-media img { width: 100%; height: 100%; object-fit: cover; }
.course-badge { position: absolute; top: 14px; left: 14px; background: var(--green-800); color: var(--white); padding: 5px 14px; border-radius: 999px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }
.course-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.course-card-body h3 { font-size: 1.08rem; line-height: 1.35; }
.course-card-body h3 a { color: var(--green-900); text-decoration: none; }
.course-card-body h3 a:hover { color: var(--green-700); }
.course-short { font-size: 0.88rem; color: var(--muted); line-height: 1.55; flex: 1; }
.course-meta { display: flex; gap: 14px; font-size: 0.8rem; color: var(--green-700); font-weight: 500; flex-wrap: wrap; }
.course-card-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #e5ede8; margin-top: auto; }
.course-price { font-size: 1.15rem; font-weight: 700; color: var(--green-800); }
.btn-sm { padding: 8px 18px !important; font-size: 0.83rem !important; }

.auth-wrap { max-width: 480px; margin: 0 auto; }

/* -- Course detail -- */
.course-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; }
.course-hero-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.course-hero-card img { width: 100%; display: block; }
.course-detail-info { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.legend-box { background: var(--white); border: 1.5px solid #d5ded9; border-radius: 12px; padding: 24px 26px; }

.enroll-card { background: var(--white); border: 1.5px solid #d5ded9; border-radius: 14px; padding: 28px 24px; position: sticky; top: 100px; box-shadow: var(--shadow-sm); }
.enroll-price { font-size: 1.6rem; font-weight: 800; color: var(--green-900); margin-bottom: 6px; text-align: center; }
.enroll-status { padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; margin-bottom: 14px; }
.enroll-status-active { background: #e6f6ee; color: #14663f; }
.enroll-status-pending { background: #fff8e1; color: #8a6d00; }
.enroll-features { margin-top: 20px; border-top: 1px solid #e5ede8; padding-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.enroll-feature { font-size: 0.85rem; color: var(--green-800); }
.manual-enroll-panel { margin-top: 14px; }
.manual-bank-details { background: var(--cream); border-radius: 10px; padding: 16px 18px; font-size: 0.87rem; line-height: 1.65; border: 1px solid #d5ded9; }

/* -- Lesson list -- */
.lesson-list { display: flex; flex-direction: column; }
.lesson-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: 10px; text-decoration: none; color: var(--green-900); transition: background 0.15s; border: 1px solid transparent; }
.lesson-row:hover { background: var(--cream); }
.lesson-row.current { background: #e6f6ee; border-color: #b5e3cd; }
.lesson-row.completed { opacity: 0.82; }
.lesson-num { font-weight: 800; font-size: 0.88rem; color: var(--green-800); min-width: 30px; }
.lesson-info { flex: 1; }
.lesson-info b { font-size: 0.92rem; }
.lesson-dur { font-size: 0.82rem; color: var(--muted); }
.lesson-desc { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.lesson-link { font-size: 0.82rem; font-weight: 700; color: var(--green-800); white-space: nowrap; }
.lesson-lock { opacity: 0.5; }
.lesson-row.locked { opacity: 0.6; cursor: default; }

/* -- Dashboard -- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat-card { background: var(--white); border-radius: 12px; padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid #e5ede8; }
.stat-icon { font-size: 1.6rem; margin-bottom: 8px; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--green-900); }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

.dash-course-list { display: flex; flex-direction: column; gap: 20px; }
.dash-course-card { display: grid; grid-template-columns: 260px 1fr; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #e5ede8; }
.dash-course-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.dash-course-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dash-course-thumb .course-badge { top: 10px; left: 10px; }
.completed-badge { background: var(--gold-500) !important; color: var(--green-900) !important; }
.dash-course-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 8px; }
.dash-course-body h3 { font-size: 1.08rem; }
.dash-course-body h3 a { color: var(--green-900); text-decoration: none; }
.dash-enrolled-on { font-size: 0.82rem; color: var(--muted); }
.dash-progress-bar { height: 8px; background: #e5ede8; border-radius: 999px; overflow: hidden; margin: 4px 0; }
.dash-progress-fill { height: 100%; background: var(--green-700); border-radius: 999px; transition: width 0.4s; }
.dash-progress-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }
.dash-course-actions { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }

/* -- Lesson viewer -- */
.lesson-hero { background: var(--green-900); color: var(--white); padding: 42px 0 38px; }
.lesson-hero .breadcrumb { color: #b5e3cd; font-size: 0.82rem; margin-bottom: 10px; }
.lesson-hero h1 { color: var(--white); }
.lesson-hero-meta { display: flex; gap: 16px; margin-top: 10px; font-size: 0.85rem; color: #d9e8e2; }
.lesson-progress-bar { height: 7px; background: #e5ede8; border-radius: 999px; overflow: hidden; margin-bottom: 6px; }
.lesson-progress-fill { height: 100%; background: var(--green-700); border-radius: 999px; }
.lesson-content-area { min-height: 300px; }
.lesson-body { font-size: 0.96rem; line-height: 1.7; color: var(--green-900); }
.lesson-body h2 { font-size: 1.3rem; margin: 24px 0 10px; }
.lesson-body h3 { font-size: 1.1rem; margin: 20px 0 8px; }
.lesson-body p { margin-bottom: 16px; }
.lesson-body ul { margin: 12px 0 16px 22px; }
.lesson-body li { margin-bottom: 8px; }
.lesson-body blockquote { border-left: 4px solid var(--gold-500); padding: 12px 18px; background: var(--cream); border-radius: 8px; margin: 16px 0; font-style: italic; }
.lesson-completed-badge { display: inline-flex; align-items: center; gap: 6px; background: #e6f6ee; color: #14663f; padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 0.88rem; margin-top: 14px; }
.lesson-nav-grid { display: flex; justify-content: space-between; }
.lesson-list-sidebar { border: 1px solid #d5ded9; border-radius: 10px; overflow: hidden; }
.lesson-list-sidebar .lesson-row { border-radius: 0; border-bottom: 1px solid #e5ede8; }
.lesson-list-sidebar .lesson-row:last-child { border-bottom: none; }
.lesson-list-sidebar .lesson-row:hover { background: var(--cream); }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .module-body { grid-template-columns: 1fr; }
  .slider-arrow { width: 44px; height: 44px; }
  .slider-arrow.prev { left: 14px; }
  .slider-arrow.next { right: 14px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -12px 0 40px rgba(11, 61, 46, 0.18);
    transition: right 0.35s ease;
    padding: 90px 26px 30px;
    z-index: 200;
  }

  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .main-nav a { display: block; padding: 13px 16px; }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 10px; text-align: center; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 61, 46, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 150;
  }

  .nav-overlay.show { opacity: 1; pointer-events: all; }

  .form-grid { grid-template-columns: 1fr; }
  .module-row { grid-template-columns: 58px 1fr; }
  .module-dur { grid-column: 2; padding-top: 0; }
  .section { padding: 62px 0; }
  .hero-slide { min-height: 600px; }
  .hero-slide .container { padding: 76px 0 118px; }
  .slider-arrow { display: none; }
  .slider-dots { bottom: 26px; }
  .obj-list { grid-template-columns: 1fr; }
  .cols-2 { columns: 1; }
  .course-grid { grid-template-columns: 1fr; }
  .course-detail-grid { grid-template-columns: 1fr; }
  .enroll-card { position: static; }
  .dash-course-card { grid-template-columns: 1fr; }
  .dash-course-thumb { aspect-ratio: 16/9; }
}

@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .topbar .container { justify-content: center; }
  .form-shell { padding: 32px 22px; }
  .lesson-nav-grid { flex-direction: column; gap: 10px; }
}
