/* ============================================================
   NCVET TeaBoard Theme CSS
   Mobile-first responsive. Tea Board of India.
   IT Team, Tea Board India
   ============================================================ */

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  --green:      #0F6E56;
  --green-dk:   #0A5040;
  --teal:       #1D9E75;
  --teal-lt:    #E1F5EE;
  --gold:       #B8860B;
  --gold-lt:    #FDF6E3;
  --navy:       #1A3A5C;
  --navy-lt:    #EBF4FB;
  --amber:      #854F0B;
  --amber-lt:   #FEF3E2;
  --red:        #A32D2D;
  --red-lt:     #FCEBEB;
  --blue:       #185FA5;
  --blue-lt:    #EAF2FB;
  --ink:        #1A1A1A;
  --body-text:  #444444;
  --muted:      #6B7280;
  --border:     #D1D5DB;
  --bg:         #F9FAFB;
  --white:      #ffffff;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --r:          6px;
  --r-lg:       10px;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: 15px; color: var(--body-text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 3px; }
button { cursor: pointer; font-family: var(--font-sans); }
ul { list-style: none; }

/* ── ACCESSIBILITY ───────────────────────────────────────── */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--green); color: #fff; padding: 8px 16px; border-radius: 0 0 var(--r) 0; font-weight: 600; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }

/* ── GOVERNMENT TOP BAR ──────────────────────────────────── */
.govt-bar { background: #2B3A4B; padding: 6px 0; font-size: 11px; color: #B0BEC5; }
.govt-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.govt-bar__left { display: flex; align-items: center; gap: 8px; }
.govt-bar__right { display: flex; align-items: center; gap: 10px; }
.govt-bar a { color: #90CAF9; font-size: 11px; }
.govt-bar a:hover { text-decoration: underline; }
.in-flag { width: 20px; height: 13px; display: inline-flex; flex-direction: column; overflow: hidden; border-radius: 1px; flex-shrink: 0; }
.in-flag span { flex: 1; display: block; }
.font-size-toggle { cursor: pointer; padding: 2px 5px; border-radius: 3px; }
.font-size-toggle:hover { background: rgba(255,255,255,.1); }

/* ── SITE HEADER ─────────────────────────────────────────── */
.site-header { background: var(--white); border-bottom: 3px solid var(--green); box-shadow: var(--shadow-sm); position: relative; z-index: 200; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 12px; flex-wrap: wrap; }
.site-header__brand { display: flex; align-items: center; gap: 12px; }
.brand-logo-link { flex-shrink: 0; display: block; }
.brand-logo { width: 54px; height: 54px; object-fit: contain; }
@media (min-width: 480px) { .brand-logo { width: 64px; height: 64px; } }
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-org { font-family: var(--font-serif); font-size: 18px; font-weight: 600; color: var(--green); line-height: 1.2; }
@media (min-width: 480px) { .brand-org { font-size: 22px; } }
.brand-ministry { font-size: 10px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.brand-dept { font-size: 11px; color: var(--green); font-weight: 500; margin-top: 2px; }
.brand-badge { display: inline-block; margin-top: 3px; padding: 2px 8px; background: var(--gold-lt); border: 1px solid var(--gold); border-radius: 99px; font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: .03em; width: fit-content; }
.site-header__actions { display: flex; align-items: center; gap: 8px; }
.helpline { display: none; text-align: right; }
@media (min-width: 768px) { .helpline { display: block; } }
.helpline__label { display: block; font-size: 10px; color: var(--muted); }
.helpline__number { font-size: 15px; font-weight: 600; color: var(--green); }
.nav-toggle { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r); border: 1px solid var(--border); background: transparent; color: var(--ink); font-size: 20px; }
@media (min-width: 900px) { .nav-toggle { display: none; } }

/* ── MAIN NAV ────────────────────────────────────────────── */
.main-nav { background: var(--green); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,.15); }
.main-nav .container { position: relative; }
.main-nav__list { display: none; flex-direction: column; padding: 8px 0; }
.main-nav__list.open { display: flex; }
@media (min-width: 900px) { .main-nav__list { display: flex; flex-direction: row; padding: 0; align-items: center; } }
.main-nav__list li a { display: flex; align-items: center; gap: 6px; padding: 12px 16px; color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; border-bottom: 3px solid transparent; transition: all .2s; white-space: nowrap; }
.main-nav__list li a:hover,
.main-nav__list li.current > a { color: #fff; border-bottom-color: #A8D5C2; background: rgba(255,255,255,.08); text-decoration: none; }
.main-nav__list li a i { font-size: 15px; }
.panel-nav-badge { margin-left: auto; }
.panel-nav-badge a { display: flex; align-items: center; gap: 6px; padding: 7px 14px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); border-radius: var(--r); color: #fff; font-size: 12px; font-weight: 500; }
.panel-nav-badge a:hover { background: rgba(255,255,255,.25); text-decoration: none; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 9px 20px; border-radius: var(--r); font-size: 13px; font-weight: 500; border: none; transition: all .2s; line-height: 1.4; text-decoration: none !important; cursor: pointer; font-family: var(--font-sans); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dk); transform: translateY(-1px); box-shadow: var(--shadow-md); color: #fff; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--teal-lt); color: var(--green-dk); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-outline-green { background: transparent; border: 1.5px solid var(--green); color: var(--green); }
.btn-outline-green:hover { background: var(--teal-lt); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-danger { background: var(--red-lt); color: var(--red); border: 1px solid var(--red); }
.btn-danger:hover { background: var(--red); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--green); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ── NOTICE STRIP ────────────────────────────────────────── */
.notice-strip { background: var(--gold-lt); border-bottom: 1px solid #D4A017; padding: 9px 0; }
.notice-strip__inner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.notice-badge { background: var(--gold); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 99px; letter-spacing: .06em; white-space: nowrap; flex-shrink: 0; }
.notice-text { font-size: 12px; color: #5C4200; flex: 1; }
.notice-date { font-size: 11px; color: #7A5A00; font-weight: 500; white-space: nowrap; display: flex; align-items: center; gap: 4px; }

/* ── HERO ────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 55%, var(--teal) 100%); padding: 40px 0 36px; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1fr auto; align-items: center; gap: 40px; } }
.hero__eyebrow { font-size: 11px; letter-spacing: .09em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 10px; font-weight: 500; }
.hero__title { font-family: var(--font-serif); font-size: 32px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 12px; }
@media (min-width: 640px) { .hero__title { font-size: 40px; } }
.hero__sub { font-size: 14px; color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 520px; line-height: 1.7; }
.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (max-width: 899px) { .hero__stats { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .hero__stats { grid-template-columns: repeat(2, 1fr); } }
.hero-stat { background: rgba(255,255,255,.13); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-lg); padding: 14px 16px; text-align: center; }
.hero-stat__num { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: #fff; line-height: 1; }
.hero-stat__lbl { font-size: 10px; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 36px 0; }
.section--alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--contact { padding: 24px 0; }
.section-title { font-family: var(--font-serif); font-size: 24px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
@media (min-width: 640px) { .section-title { font-size: 28px; } }
.section-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.page-title { font-family: var(--font-serif); font-size: 26px; font-weight: 600; color: var(--ink); margin: 24px 0 16px; }
.page-wrap { padding: 24px 0 40px; }
.page-body { font-size: 15px; line-height: 1.7; }

/* ── COURSE CARDS (from shortcode) ───────────────────────── */
.ncvet-courses-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .ncvet-courses-grid { grid-template-columns: repeat(2, 1fr); } }
.course-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.course-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.course-card__header { padding: 18px 20px 14px; background: linear-gradient(135deg, var(--green), var(--teal)); }
.course-card__header--gold { background: linear-gradient(135deg, #7B5E00, var(--gold)); }
.course-card__tag { font-size: 10px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 500; margin-bottom: 5px; }
.course-card__title { font-family: var(--font-serif); font-size: 20px; font-weight: 600; color: #fff; line-height: 1.3; }
.course-card__body { padding: 16px 20px; }
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #F0F4F8; font-size: 13px; }
.info-row:last-of-type { border-bottom: none; }
.info-lbl { color: var(--muted); font-size: 12px; }
.info-val { font-weight: 500; color: var(--ink); text-align: right; }
.seats-bar { height: 6px; background: #E5E7EB; border-radius: 99px; overflow: hidden; margin: 12px 0 4px; }
.seats-fill { height: 100%; border-radius: 99px; }
.seats-warning { font-size: 11px; color: var(--amber); font-weight: 500; margin-bottom: 10px; }

/* ── PROCESS STEPS (from shortcode) ──────────────────────── */
.ncvet-steps { display: flex; flex-direction: column; gap: 4px; }
.step-row { display: grid; grid-template-columns: 44px 1fr; gap: 0; align-items: stretch; border-radius: var(--r); overflow: hidden; }
@media (min-width: 640px) { .step-row { grid-template-columns: 48px 190px 1fr; } }
.step-num { background: var(--green); color: #fff; font-family: var(--font-serif); font-size: 22px; font-weight: 600; display: flex; align-items: center; justify-content: center; min-height: 68px; }
.step-meta { display: none; background: #0A5040; padding: 12px 14px; flex-direction: column; justify-content: center; }
@media (min-width: 640px) { .step-meta { display: flex; } }
.step-title { font-weight: 600; font-size: 13px; color: #fff; }
.step-who { font-size: 11px; color: #9FE1CB; margin-top: 3px; font-style: italic; }
.step-desc { background: var(--teal-lt); padding: 12px 16px; font-size: 13px; color: var(--body-text); display: flex; align-items: center; line-height: 1.6; }

/* ── CONTACT CARDS ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); }
.contact-card--green { border-left: 4px solid var(--green); }
.contact-card--gold { border-left: 4px solid var(--gold); }
.contact-card--blue { border-left: 4px solid var(--blue); }
.contact-card__icon { font-size: 22px; color: var(--green); margin-bottom: 8px; }
.contact-card__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.contact-card__sub { font-size: 12px; color: var(--muted); margin-bottom: 6px; line-height: 1.5; }
.contact-card__link { font-size: 14px; font-weight: 500; color: var(--blue); }

/* ── CHECKLIST PAGE ──────────────────────────────────────── */
.checklist-page { max-width: 720px; margin: 0 auto; padding: 24px 0 40px; }
.bank-box { background: var(--gold-lt); border: 1px solid #D4A017; border-radius: var(--r-lg); padding: 16px 18px; margin: 14px 0; }
.bank-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed #D4A017; font-size: 13px; flex-wrap: wrap; gap: 6px; }
.bank-row:last-child { border-bottom: none; }
.bank-lbl { color: #7A5A00; font-size: 12px; flex-shrink: 0; }
.bank-val { font-weight: 600; color: #3B2800; text-align: right; word-break: break-all; }
.check-list { padding: 0; }
.check-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid #F0F4F8; }
.check-item:last-child { border-bottom: none; }
.check-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; margin-top: 1px; }
.ci-warn { background: var(--amber-lt); color: var(--amber); }
.ci-no { background: #F3F4F6; color: #9CA3AF; }
.ci-ok { background: var(--teal-lt); color: var(--teal); }
.ci-info { background: var(--blue-lt); color: var(--blue); }
.ci-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.ci-sub { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── FORMS ───────────────────────────────────────────────── */
.ncvet-form { max-width: 680px; margin: 0 auto; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.form-card__title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.form-card__title i { color: var(--green); font-size: 18px; }
.form-group { margin-bottom: 14px; }
.form-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 5px; display: block; }
.form-label .req { color: var(--red); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--r); background: #fff; color: var(--ink); font-family: var(--font-sans); font-size: 14px; transition: border-color .2s, box-shadow .2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(29,158,117,.12); }
.form-textarea { resize: vertical; min-height: 80px; line-height: 1.6; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.input-group { display: flex; }
.input-prefix { padding: 10px 12px; background: var(--bg); border: 1px solid var(--border); border-right: none; border-radius: var(--r) 0 0 var(--r); font-size: 13px; color: var(--muted); flex-shrink: 0; display: flex; align-items: center; }
.input-group .form-input { border-radius: 0 var(--r) var(--r) 0; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .form-grid--2 { grid-template-columns: 1fr 1fr; gap: 12px; } }
.form-divider { height: 1px; background: var(--border); margin: 16px 0; }
.form-section-label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 10px; margin-top: 4px; }
.radio-row { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 6px; font-size: 13px; cursor: pointer; }
.radio-opt input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; }
.upload-box { border: 2px dashed var(--border); border-radius: var(--r-lg); padding: 20px 16px; text-align: center; cursor: pointer; transition: all .2s; color: var(--muted); margin-bottom: 10px; }
.upload-box:hover,
.upload-box:focus { border-color: var(--teal); background: var(--teal-lt); color: var(--green); outline: none; }
.upload-box.done { border-color: var(--teal); background: var(--teal-lt); border-style: solid; color: var(--green); }
.upload-box i { font-size: 24px; display: block; margin-bottom: 6px; }
.upload-label { font-size: 13px; font-weight: 500; margin-bottom: 3px; }
.upload-hint { font-size: 11px; }

/* ── STEP PILLS ──────────────────────────────────────────── */
.step-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; }
.step-pill { padding: 6px 14px; border-radius: 99px; font-size: 12px; font-weight: 500; cursor: pointer; border: 1px solid var(--border); background: var(--bg); color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.step-pill.active { background: var(--green); color: #fff; border-color: var(--green); }
.step-pill.done { background: var(--teal-lt); color: var(--teal); border-color: #A7E4C8; }

/* ── ALERTS ──────────────────────────────────────────────── */
.alert { padding: 11px 14px; border-radius: var(--r); font-size: 13px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.alert i { flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.alert-success { background: #DCFCE7; color: #166534; border-left: 4px solid #22C55E; }
.alert-info    { background: var(--blue-lt); color: var(--blue); border-left: 4px solid var(--blue); }
.alert-warn    { background: var(--amber-lt); color: var(--amber); border-left: 4px solid #F59E0B; }
.alert-danger  { background: var(--red-lt); color: var(--red); border-left: 4px solid var(--red); }

/* ── BADGES ──────────────────────────────────────────────── */
.badge { display: inline-flex; align-items: center; gap: 3px; padding: 3px 9px; border-radius: 99px; font-size: 11px; font-weight: 600; }
.badge-ok      { background: #DCFCE7; color: #166534; }
.badge-pending { background: var(--amber-lt); color: var(--amber); }
.badge-info    { background: var(--blue-lt); color: var(--blue); }
.badge-red     { background: var(--red-lt); color: var(--red); }
.badge-live    { background: var(--teal-lt); color: var(--teal); border: 1px solid #A7E4C8; }
.badge-draft   { background: #F3F4F6; color: #374151; border: 1px solid var(--border); }

/* ── DATA TABLE ──────────────────────────────────────────── */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 500px; }
.data-table th { background: var(--green); color: #fff; padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid #F0F4F8; }
.data-table tr:hover td { background: #F8FFFE; }
.data-table tr:last-child td { border-bottom: none; }

/* ── METRIC CARDS ────────────────────────────────────────── */
.metrics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
@media (min-width: 640px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px 16px; }
.metric-card .m-lbl { font-size: 10px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .04em; }
.metric-card .m-val { font-family: var(--font-serif); font-size: 28px; font-weight: 600; color: var(--ink); }
.metric-card .m-sub { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── PANEL HEADERS ───────────────────────────────────────── */
.panel-wrap { background: var(--white); min-height: 100vh; }
.panel-header { padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.panel-header--op { background: var(--green-dk); }
.panel-header--ca { background: var(--navy); }
.panel-title { font-size: 14px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.panel-id { font-size: 11px; padding: 3px 10px; border-radius: 99px; background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }
.panel-body { padding: 20px 16px; }
@media (min-width: 640px) { .panel-body { padding: 24px; } }

/* ── TOGGLE SWITCH ───────────────────────────────────────── */
.toggle-wrap { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.toggle-info .t-title { font-size: 13px; font-weight: 500; color: var(--ink); }
.toggle-info .t-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.toggle-sw { width: 42px; height: 24px; border-radius: 99px; border: 1px solid var(--border); background: #D1D5DB; cursor: pointer; position: relative; flex-shrink: 0; transition: background .2s; }
.toggle-sw.on { background: var(--teal); border-color: var(--teal); }
.toggle-sw::after { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: #fff; top: 2px; left: 2px; transition: left .15s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.toggle-sw.on::after { left: 20px; }

/* ── SCREENING PARAMS ────────────────────────────────────── */
.param-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #F0F4F8; gap: 8px; }
.param-row:last-child { border-bottom: none; }
.param-info { flex: 1; }
.param-title { font-size: 13px; color: var(--ink); }
.param-sub { font-size: 11px; color: var(--muted); }
.param-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 0; width: 1px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 16px; }
.tl-dot { width: 16px; height: 16px; border-radius: 50%; position: absolute; left: -22px; top: 2px; }
.tl-dot.done { background: var(--teal); }
.tl-dot.active { background: var(--blue); box-shadow: 0 0 0 3px var(--blue-lt); }
.tl-dot.pending { background: #E5E7EB; border: 1px solid var(--border); }
.tl-title { font-size: 13px; font-weight: 500; color: var(--ink); }
.tl-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── PANEL TWO COL ───────────────────────────────────────── */
.panel-two-col { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .panel-two-col { grid-template-columns: 1fr 1fr; } }

/* ── APPLICANT DASHBOARD ─────────────────────────────────── */
.my-app-wrap { max-width: 680px; margin: 0 auto; padding: 24px 0 40px; }
.app-status-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.app-ref { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── CARD ────────────────────────────────────────────────── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.card--success { border-left: 4px solid var(--teal); }
.card--danger { border-left: 4px solid var(--red); }
.card__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.card__title i { color: var(--green); font-size: 17px; }
.divider { height: 1px; background: var(--border); margin: 14px 0; }

/* ── COURSE ADMIN PANEL ──────────────────────────────────── */
.ca-courses-list { margin-bottom: 16px; }
.ca-course-item { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: border-color .2s; }
.ca-course-item:hover { border-color: var(--teal); }
.ca-course-item.live { border-left: 4px solid var(--teal); }
.ca-course-item.closing { border-left: 4px solid var(--gold); }
.ca-course-name { font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.ca-course-meta { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: #1A2730; color: #9CA3AF; margin-top: auto; }
.footer-main { padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; }
.footer-org-name { font-family: var(--font-serif); font-size: 18px; color: #fff; font-weight: 600; }
.footer-heading { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.footer-desc { font-size: 12px; color: #9CA3AF; line-height: 1.7; margin-bottom: 8px; }
.footer-contact { font-size: 13px; margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.footer-contact a { color: #6EE7B7; }
.footer-links li { margin-bottom: 6px; }
.footer-links a { font-size: 13px; color: #9CA3AF; transition: color .15s; }
.footer-links a:hover { color: #6EE7B7; text-decoration: none; }
.footer-dates li { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 12px; display: flex; flex-direction: column; gap: 2px; }
.footer-dates li:last-child { border-bottom: none; }
.fd-label { color: #9CA3AF; font-size: 11px; }
.fd-val { color: #D1D5DB; font-weight: 500; }
.fd-val.highlight { color: #6EE7B7; }
.footer-helpline { margin-top: 20px; }
.helpline-number { font-size: 18px; font-weight: 700; color: #6EE7B7; display: block; margin-top: 4px; }
.footer-bottom { background: #111820; padding: 14px 0; }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-copyright { font-size: 11px; color: #6B7280; }
.footer-copyright a { color: #9CA3AF; }
.footer-copyright a:hover { color: #6EE7B7; }
.footer-credit { font-size: 11px; color: #6EE7B7; font-weight: 500; display: flex; align-items: center; gap: 4px; }

/* ── UTILITY ─────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 6px; }
.gap-2 { gap: 10px; }
.gap-3 { gap: 16px; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 20px; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.text-muted { color: var(--muted); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-center { text-align: center; }
.fw-5 { font-weight: 500; }
.fw-6 { font-weight: 600; }
.w-full { width: 100%; }
.hidden { display: none !important; }

/* ── PRINT ───────────────────────────────────────────────── */
@media print {
  .main-nav, .govt-bar, .site-header__actions, .hero__actions, .btn { display: none !important; }
  .hero { background: none !important; color: var(--ink) !important; padding: 16px 0; }
  .hero__title, .hero__eyebrow, .hero__sub { color: var(--ink) !important; }
  body { font-size: 12pt; }
}

/* ── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
