 :root {
      --green-deep:  #01452c;
      --green-mid:   #016040;
      --green-light: #e6f5ee;
      --gold:        #f5c518;
      --gold-light:  #fff8dc;
      --cream:       #faf8f3;
      --text-dark:   #1a1a1a;
      --text-mid:    #4a4a4a;
      --text-muted:  #888;
      --radius-lg:   18px;
      --radius-md:   10px;
      --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text-dark);
      padding-top: 80px;
      overflow-x: hidden;
    }
 
 /* ── SCROLL PROGRESS ── */
    #progress-bar {
      position: fixed;
      top: 0; left: 0;
      height: 3px;
      width: 0%;
      background: linear-gradient(90deg, var(--gold), #fff176);
      z-index: 9999;
      transition: width 0.1s linear;
    }

    /* ── NAVBAR ── */
    .navbar {
      background: rgba(1,69,44,0.97) !important;
      backdrop-filter: blur(12px);
      padding: 0.6rem 0;
      transition: all 0.4s ease;
      border-bottom: 1px solid rgba(245,197,24,0.12);
    }

    .navbar.scrolled {
      padding: 0.35rem 0;
      box-shadow: 0 4px 24px rgba(0,0,0,0.25);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-logo {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 2px solid rgba(245,197,24,0.5);
      background: white;
      padding: 4px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .brand-logo:hover {
      transform: rotate(-5deg) scale(1.08);
      box-shadow: 0 0 20px rgba(245,197,24,0.5);
    }

    .brand-text {
      display: flex; flex-direction: column;
    }

    .brand-text .name {
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      line-height: 1.2;
      letter-spacing: 0.01em;
    }

    .brand-text .tagline {
      color: var(--gold);
      font-size: 0.68rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link {
      color: rgba(255,255,255,0.88) !important;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.02em;
      padding: 0.5rem 0.75rem !important;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%;
      width: 0; height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--gold) !important;
    }

    .navbar-nav .nav-link:hover::after { width: 60%; }

    .navbar-nav .nav-link.active::after { width: 60%; }

    .dropdown-menu {
      background: #012e1e;
      border: 1px solid rgba(245,197,24,0.15);
      border-radius: var(--radius-md);
      padding: 0.5rem;
      margin-top: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }

    .dropdown-item {
      color: rgba(255,255,255,0.8);
      font-size: 0.85rem;
      padding: 0.5rem 1rem;
      border-radius: 6px;
      transition: all 0.25s ease;
    }

    .dropdown-item:hover {
      background: rgba(245,197,24,0.12);
      color: var(--gold);
      padding-left: 1.3rem;
    }

    .navbar-toggler {
      border: none;
      padding: 0;
    }


/* ── HERO ── */
        .hero {
            background: var(--green-dark);
            position: relative;
            overflow: hidden;
            padding: 5rem 2rem 4rem;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 80% 20%, rgba(201,168,76,0.12) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(82,183,136,0.10) 0%, transparent 50%);
        }
        /* decorative circles */
        .hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 1px solid rgba(201,168,76,0.15);
            pointer-events: none;
        }
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        .hero-eyebrow {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 14px;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            color: var(--white);
            line-height: 1.1;
            max-width: 520px;
            margin-bottom: 1rem;
        }
        .hero-subtitle {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.65);
            max-width: 440px;
            line-height: 1.7;
            margin-bottom: 2rem;
        }
        .hero-divider {
            width: 56px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

        /* ── FILTER TABS ── */
        .filter-wrap {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 72px;
            z-index: 90;
        }
        .filter-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            gap: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .filter-inner::-webkit-scrollbar { display: none; }
        .filter-btn {
            padding: 1rem 1.5rem;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-muted);
            background: transparent;
            border: none;
            border-bottom: 2px solid transparent;
            cursor: pointer;
            white-space: nowrap;
            transition: color 0.18s, border-color 0.18s;
        }
        .filter-btn:hover { color: var(--green-mid); }
        .filter-btn.active {
            color: var(--green-dark);
            border-bottom-color: var(--green-dark);
        }

        /* ── MAIN ── */
        .main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3.5rem 2rem 5rem;
        }

        /* ── NOTICE BANNER ── */
        .notice {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: var(--gold-light);
            border: 1px solid rgba(201,168,76,0.4);
            border-left: 4px solid var(--gold);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            margin-bottom: 2.5rem;
            font-size: 0.875rem;
            color: #5a4500;
            line-height: 1.6;
        }
        .notice svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }

        /* ── SECTION ── */
        .fee-section { display: none; }
        .fee-section.active { display: block; }

        .section-label {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--green-light);
            margin-bottom: 8px;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--green-dark);
            margin-bottom: 0.5rem;
        }
        .section-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* ── FEE CARD ── */
        .fee-card {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }
        .fee-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            border-bottom: 1px solid var(--border);
            background: linear-gradient(90deg, rgba(26,71,49,0.03) 0%, transparent 100%);
            cursor: pointer;
            gap: 1rem;
            user-select: none;
        }
        .fee-card-header-left { display: flex; align-items: center; gap: 12px; }
        .fee-card-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--green-pale);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .fee-card-icon svg { width: 18px; height: 18px; fill: var(--green-mid); }
        .fee-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: var(--green-dark);
        }
        .fee-card-subtitle {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin-top: 2px;
        }
        .fee-card-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.18s, transform 0.25s;
        }
        .fee-card-toggle svg { width: 14px; height: 14px; fill: var(--text-muted); transition: transform 0.25s; }
        .fee-card.open .fee-card-toggle { background: var(--green-pale); }
        .fee-card.open .fee-card-toggle svg { transform: rotate(180deg); }

        .fee-card-body {
            display: none;
            padding: 0 1.5rem 1.5rem;
        }
        .fee-card.open .fee-card-body { display: block; }

        /* ── FEE TABLE ── */
        .fee-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
            font-size: 0.875rem;
        }
        .fee-table thead th {
            text-align: left;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            padding: 8px 12px;
            border-bottom: 1px solid var(--border);
        }
        .fee-table thead th:last-child { text-align: right; }
        .fee-table tbody tr { transition: background 0.15s; }
        .fee-table tbody tr:hover { background: var(--green-pale); }
        .fee-table tbody td {
            padding: 11px 12px;
            color: var(--text-dark);
            border-bottom: 1px solid rgba(45,106,79,0.06);
            vertical-align: middle;
        }
        .fee-table tbody td:last-child {
            text-align: right;
            font-weight: 500;
            color: var(--green-mid);
            font-variant-numeric: tabular-nums;
        }
        .fee-table tbody tr:last-child td { border-bottom: none; }
        .fee-table tfoot td {
            padding: 12px;
            font-weight: 500;
            font-size: 0.9rem;
            border-top: 2px solid var(--border);
        }
        .fee-table tfoot td:last-child {
            text-align: right;
            color: var(--green-dark);
            font-size: 1rem;
        }
        .fee-badge {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 2px 8px;
            border-radius: 20px;
            margin-left: 8px;
            vertical-align: middle;
        }
        .fee-badge.required {
            background: #fde8e8;
            color: #a32d2d;
        }
        .fee-badge.optional {
            background: var(--green-pale);
            color: var(--green-mid);
        }
        .fee-badge.new {
            background: var(--gold-light);
            color: #7a5500;
        }

        /* ── SUMMARY CARDS ── */
        .summary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .summary-card {
            background: var(--white);
            border-radius: 12px;
            border: 1px solid var(--border);
            padding: 1.25rem;
            box-shadow: var(--shadow);
        }
        .summary-card-label {
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        .summary-card-amount {
            font-family: 'Playfair Display', serif;
            font-size: 1.7rem;
            color: var(--green-dark);
            line-height: 1;
            margin-bottom: 4px;
        }
        .summary-card-sub {
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ── PAYMENT METHODS ── */
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1rem;
        }
        .payment-card {
            background: var(--white);
            border-radius: 14px;
            border: 1px solid var(--border);
            padding: 1.25rem 1.5rem;
            box-shadow: var(--shadow);
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .payment-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--green-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .payment-icon svg { width: 20px; height: 20px; fill: var(--gold); }
        .payment-title {
            font-weight: 500;
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .payment-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

       /* ── FOOTER ── */
    .footer {
      background: #011c13;
      color: white;
      padding: 5rem 0 0;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.55);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-top: 1rem;
    }

    .footer-heading {
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 0.5rem; }

    .footer-links a {
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .footer-links a::before {
      content: '';
      display: inline-block;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: width 0.3s ease;
      vertical-align: middle;
    }

    .footer-links a:hover { color: var(--gold); }
    .footer-links a:hover::before { width: 10px; }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(255,255,255,0.55);
      font-size: 0.82rem;
      margin-bottom: 0.75rem;
      line-height: 1.5;
    }

    .footer-contact li i {
      color: var(--gold);
      margin-top: 2px;
      flex-shrink: 0;
    }

    .social-links { display: flex; gap: 10px; margin-top: 1.25rem; }

    .social-link {
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.65);
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .social-link:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--green-deep);
      transform: translateY(-3px);
    }

    .accred-section {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 2.5rem 0;
      margin-top: 4rem;
    }

    .accred-label {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .accred-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap;
    }

    .accred-logos img {
      max-height: 52px;
      max-width: 100px;
      width: auto;
      opacity: 0.45;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .accred-logos img:hover { opacity: 0.9; transform: scale(1.06); }

    .footer-bottom {
      background: #010f09;
      padding: 1.2rem 0;
      text-align: center;
      color: rgba(255,255,255,0.28);
      font-size: 0.78rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── DIVIDER ── */
    .section-divider {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .section-divider .line {
      flex: 1;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(1,69,44,0.2), transparent);
    }

    .section-divider .dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .hero-stats .d-flex { overflow-x: auto; }
      .hero-title { font-size: 1.9rem; }
      .programs-grid { grid-template-columns: 1fr; }
      .program-card { height: 380px; }
      .why-grid { grid-template-columns: 1fr; }
    }