    /* ══════════════════════════════════════════
       DESIGN DIRECTION: Warm Cultural Luxury
       — Deep saffron warmth + temple gold accents
         on rich cream backgrounds. Think heritage
         manuscript meets modern clarity.
    ══════════════════════════════════════════ */

    :root {
      --saffron:   #D4580A;
      --gold:      #E8A020;
      --gold-lt:   #F5C96A;
      --teal:      #1A5276;
      --teal-dk:   #0F3347;
      --cream:     #FDF8F1;
      --cream-dk:  #F5EDE0;
      --brown:     #3D1F08;
      --text:      #2C1810;
      --text-muted:#7A5C42;
      --white:     #FFFFFF;
      --green:     #1E8449;
      --border:    rgba(212,88,10,0.15);
      --shadow:    0 4px 32px rgba(60,20,0,0.12);
      --r-sm:      8px;
      --r-md:      16px;
      --r-lg:      32px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.2;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--cream-dk); }
    ::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

    /* ══════════ ANNOUNCEMENT BAR ══════════ */
    .ann-bar {
      background: var(--saffron);
      color: #fff;
      text-align: center;
      padding: 10px 20px;
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    .ann-bar a { color: #fff; text-decoration: underline; }

    /* ══════════ NAV ══════════ */
    nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(253,248,241,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0 clamp(20px, 5vw, 60px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--teal-dk);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-logo span { color: var(--saffron); }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text-muted);
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }
    .nav-links a:hover { color: var(--saffron); }

    .nav-cta {
      background: var(--saffron);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 40px;
      font-weight: 600 !important;
      font-size: 0.84rem !important;
      transition: background 0.2s, transform 0.15s;
    }
    .nav-cta:hover { background: var(--brown) !important; transform: translateY(-1px); }

    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

    /* ── Courses Dropdown ── */
    .nav-dropdown { position: relative; }
    .nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
    .nav-dropdown > a::after { content: '▾'; font-size: 0.7rem; transition: transform 0.2s; }
    .nav-dropdown:hover > a::after { transform: rotate(180deg); }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      box-shadow: 0 12px 40px rgba(60,20,0,0.14);
      padding: 10px 8px;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateX(-50%) translateY(8px);
      transition: all 0.22s ease;
      z-index: 200;
      list-style: none;
    }
    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown-menu li a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: var(--r-sm);
      font-size: 0.86rem;
      font-weight: 500;
      color: var(--text) !important;
      transition: background 0.15s, color 0.15s;
    }
    .dropdown-menu li a:hover {
      background: rgba(212,88,10,0.07);
      color: var(--saffron) !important;
    }
    .dropdown-menu li a .d-icon { font-size: 1.1rem; width: 22px; text-align: center; }

    /* ══════════ HERO ══════════ */
    .hero {
      min-height: calc(100vh - 108px);
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: clamp(40px, 8vw, 100px) clamp(20px, 5vw, 80px);
      gap: 60px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -80px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(212,88,10,0.1);
      color: var(--saffron);
      border: 1px solid rgba(212,88,10,0.25);
      border-radius: 40px;
      padding: 6px 16px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeInUp 0.6s ease both;
    }

    .hero-title {
      font-size: clamp(2.6rem, 5vw, 4.2rem);
      font-weight: 700;
      color: var(--teal-dk);
      margin-bottom: 20px;
      animation: fadeInUp 0.7s 0.1s ease both;
    }
    .hero-title em { color: var(--saffron); font-style: normal; }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 480px;
      margin-bottom: 36px;
      animation: fadeInUp 0.7s 0.2s ease both;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      animation: fadeInUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      background: var(--saffron);
      color: #fff;
      padding: 14px 32px;
      border-radius: 40px;
      font-size: 0.92rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-primary:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,88,10,0.35); }

    .btn-whatsapp {
      background: #25D366;
      color: #fff;
      padding: 14px 28px;
      border-radius: 40px;
      font-size: 0.92rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-whatsapp:hover { background: #128C4E; transform: translateY(-2px); }

    .btn-outline {
      border: 2px solid var(--saffron);
      color: var(--saffron);
      padding: 12px 28px;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: 600;
      background: transparent;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-outline:hover { background: var(--saffron); color: #fff; }

    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 44px;
      animation: fadeInUp 0.7s 0.4s ease both;
      flex-wrap: wrap;
    }
    .stat { }
    .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--saffron); }
    .stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

    .hero-visual {
      display: flex;
      flex-direction: column;
      gap: 16px;
      animation: fadeInRight 0.8s 0.3s ease both;
    }

    .hero-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .course-pill {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 20px;
      text-align: center;
      transition: all 0.25s;
      box-shadow: 0 2px 12px rgba(60,20,0,0.06);
    }
    .course-pill:hover {
      border-color: var(--saffron);
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }
    .course-pill .emoji { font-size: 2rem; margin-bottom: 8px; }
    .course-pill .name { font-size: 0.85rem; font-weight: 600; color: var(--teal-dk); }
    .course-pill .tag { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

    .hero-trust {
      background: var(--teal-dk);
      color: #fff;
      border-radius: var(--r-md);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .hero-trust .flag-row { display: flex; gap: 4px; font-size: 1.4rem; }
    .hero-trust .trust-text { font-size: 0.82rem; line-height: 1.5; opacity: 0.9; }
    .hero-trust strong { color: var(--gold-lt); }

    /* ══════════ SECTION UTILS ══════════ */
    section { padding: clamp(60px, 8vw, 120px) clamp(20px, 5vw, 80px); }

    .section-label {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--saffron);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 700;
      color: var(--teal-dk);
      margin-bottom: 16px;
    }

    .section-sub {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 560px;
      line-height: 1.7;
    }

    /* ══════════ COURSES SECTION ══════════ */
    #courses { background: var(--cream-dk); }

    .courses-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .course-card {
      background: var(--white);
      border-radius: var(--r-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: all 0.3s;
      position: relative;
    }
    .course-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(60,20,0,0.15); border-color: var(--saffron); }

    .course-header {
      padding: 32px 28px 24px;
      background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .script-flourish {
      position: absolute;
      right: -10px;
      bottom: -20px;
      font-size: 5rem;
      opacity: 0.15;
      font-family: 'Cormorant Garamond', serif;
      line-height: 1;
      pointer-events: none;
    }

    .course-icon { font-size: 2.5rem; margin-bottom: 12px; }
    .course-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; margin-bottom: 4px; }
    .course-sub { font-size: 0.8rem; opacity: 0.8; font-weight: 400; }

    .course-body { padding: 24px 28px 28px; }
    .course-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

    .course-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .course-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.84rem;
      color: var(--text);
    }
    .course-features li::before { content: '✓'; color: var(--saffron); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    .course-cta {
      display: block;
      text-align: center;
      background: rgba(212,88,10,0.08);
      color: var(--saffron);
      border: 1px solid rgba(212,88,10,0.25);
      border-radius: 40px;
      padding: 11px 20px;
      font-size: 0.84rem;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
    }
    .course-cta:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

    /* ══════════ COUNTRIES ══════════ */
    #countries { background: var(--teal-dk); color: #fff; }

    .countries-title { color: #fff; }
    .countries-sub { color: rgba(255,255,255,0.7); }
    .section-label.light { color: var(--gold-lt); }

    .countries-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 44px;
    }

    .country-chip {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 40px;
      padding: 10px 20px;
      font-size: 0.84rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all 0.2s;
      color: rgba(255,255,255,0.9);
    }
    .country-chip:hover { background: rgba(255,255,255,0.15); border-color: var(--gold-lt); color: #fff; }
    .country-chip .flag { font-size: 1.2rem; }

    /* ══════════ WHY US ══════════ */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .why-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 28px 24px;
      transition: all 0.25s;
    }
    .why-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-3px); }

    .why-icon {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, rgba(212,88,10,0.1), rgba(232,160,32,0.15));
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }
    .why-title { font-size: 1rem; font-weight: 600; color: var(--teal-dk); margin-bottom: 8px; }
    .why-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

    /* ══════════ AWARDS ══════════ */
    #awards { background: linear-gradient(135deg, var(--cream-dk), var(--cream)); }

    .awards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      margin-top: 44px;
    }

    .award-card {
      background: var(--white);
      border-radius: var(--r-md);
      padding: 28px 20px;
      text-align: center;
      border: 1px solid var(--border);
      transition: all 0.25s;
    }
    .award-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(232,160,32,0.2); }
    .award-emoji { font-size: 2.5rem; margin-bottom: 12px; }
    .award-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 6px; }
    .award-desc { font-size: 0.8rem; color: var(--text-muted); }

    /* ══════════ TESTIMONIALS ══════════ */
    #reviews { background: var(--cream-dk); }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .review-card {
      background: var(--white);
      border-radius: var(--r-md);
      padding: 28px 26px;
      border: 1px solid var(--border);
      position: relative;
      transition: all 0.25s;
    }
    .review-card:hover { border-color: rgba(212,88,10,0.3); box-shadow: var(--shadow); }

    .review-card::before {
      content: '"';
      position: absolute;
      top: 16px; right: 22px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: rgba(212,88,10,0.1);
      line-height: 1;
    }

    .review-stars { color: #F4A223; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
    .review-text { font-size: 0.88rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--saffron), var(--gold));
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: #fff; font-weight: 700;
      font-family: 'Cormorant Garamond', serif;
      flex-shrink: 0;
    }
    .reviewer-name { font-size: 0.9rem; font-weight: 600; color: var(--teal-dk); }
    .reviewer-loc { font-size: 0.76rem; color: var(--text-muted); }

    .review-video-card {
      background: var(--white);
      border-radius: var(--r-md);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.25s;
      display: flex;
      justify-content: center;
      align-items: flex-start;
    }
    .review-video-card:hover { border-color: rgba(212,88,10,0.3); box-shadow: var(--shadow); }
    .review-video-card iframe { border-radius: var(--r-md) !important; }

    /* ── Social Follow CTA ── */
    .social-cta {
      margin-top: 56px;
      background: var(--teal-dk);
      border-radius: var(--r-lg);
      padding: 48px clamp(24px, 5vw, 64px);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      color: #fff;
    }
    .social-cta-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
    .social-cta-sub { font-size: 0.9rem; opacity: 0.75; }
    .btn-social {
      background: #fff;
      color: var(--teal-dk);
      padding: 14px 28px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }
    .btn-social:hover { background: var(--gold-lt); }

    /* ══════════ ENQUIRY FORM ══════════ */
    #enquiry { background: var(--white); }

    .enquiry-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .enquiry-info .info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }
    .info-icon {
      width: 46px; height: 46px;
      background: rgba(212,88,10,0.1);
      border-radius: var(--r-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .info-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
    .info-val { font-size: 0.95rem; font-weight: 500; color: var(--teal-dk); }

    .enquiry-form {
      background: var(--cream);
      border-radius: var(--r-lg);
      padding: 44px clamp(24px, 4vw, 48px);
      border: 1px solid var(--border);
    }

    .form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--teal-dk); margin-bottom: 6px; }
    .form-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }

    .form-group { margin-bottom: 20px; }
    .form-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
    }
    .form-label .req { color: var(--saffron); }
    .form-label .opt { color: var(--text-muted); font-weight: 400; font-size: 0.72rem; text-transform: none; letter-spacing: 0; }

    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 13px 16px;
      border: 1.5px solid rgba(212,88,10,0.2);
      border-radius: var(--r-sm);
      background: var(--white);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--saffron);
      box-shadow: 0 0 0 3px rgba(212,88,10,0.12);
    }
    .form-input::placeholder { color: #bbb; }
    .form-textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .wa-prefix {
      display: flex;
      align-items: center;
    }
    .wa-prefix span {
      background: rgba(37,211,102,0.12);
      color: #128C4E;
      border: 1.5px solid rgba(37,211,102,0.3);
      border-right: none;
      border-radius: var(--r-sm) 0 0 var(--r-sm);
      padding: 13px 12px;
      font-size: 0.85rem;
      font-weight: 600;
      white-space: nowrap;
    }
    .wa-prefix .form-input { border-radius: 0 var(--r-sm) var(--r-sm) 0; }

    .privacy-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; line-height: 1.6; }

    .form-submit {
      width: 100%;
      background: var(--saffron);
      color: #fff;
      border: none;
      padding: 16px;
      border-radius: 40px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.25s;
      margin-top: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .form-submit:hover { background: var(--brown); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,88,10,0.35); }

    .success-msg {
      display: none;
      background: var(--white);
      border: 1.5px solid rgba(212,88,10,0.2);
      border-radius: var(--r-md);
      padding: 32px 28px;
      text-align: center;
      margin-top: 16px;
    }

    /* ══════════ ABOUT STRIP ══════════ */
    #about { background: var(--cream-dk); }

    .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-founders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
    .founder-chip {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-sm);
      padding: 14px 12px;
      text-align: center;
      transition: all 0.2s;
    }
    .founder-chip:hover { border-color: var(--saffron); }
    .founder-name { font-size: 0.82rem; font-weight: 600; color: var(--teal-dk); }
    .founder-role { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

    /* ══════════ FOOTER ══════════ */
    footer {
      background: var(--brown);
      color: rgba(255,255,255,0.8);
      padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 80px) 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand { }
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 12px;
    }
    .footer-brand-name span { color: var(--gold); }
    .footer-desc { font-size: 0.84rem; line-height: 1.7; opacity: 0.7; margin-bottom: 20px; }
    .footer-socials { display: flex; gap: 12px; }
    .social-btn {
      width: 38px; height: 38px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      transition: all 0.2s;
      color: #fff;
      text-decoration: none;
    }
    .social-btn:hover { background: var(--saffron); transform: translateY(-2px); }

    .footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 0.84rem; opacity: 0.7; transition: opacity 0.2s; }
    .footer-links a:hover { opacity: 1; color: var(--gold-lt); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.78rem;
      opacity: 0.6;
    }

    /* ══════════ ANIMATIONS ══════════ */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(32px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════ MOBILE NAV ══════════ */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(253,248,241,0.98);
      backdrop-filter: blur(12px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--teal-dk); }
    .mobile-menu a:hover { color: var(--saffron); }
    .mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; cursor: pointer; color: var(--text-muted); }

    /* ══════════ RESPONSIVE ══════════ */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 48px clamp(20px, 5vw, 40px); }
      .hero-visual { order: -1; }
      .enquiry-wrap { grid-template-columns: 1fr; gap: 40px; }
      .about-wrap { grid-template-columns: 1fr; gap: 40px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .social-cta { grid-template-columns: 1fr; text-align: center; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
    }

    @media (max-width: 600px) {
      .hero-card-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .about-founders { grid-template-columns: 1fr 1fr; }
      .hero-stats { gap: 20px; }
    }

    /* ── Floating WhatsApp ── */
    .fab-wa {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      z-index: 900;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      color: #fff;
      animation: pulse-wa 2.5s ease infinite;
    }
    .fab-wa:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }

    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
      50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
    }

    /* ══════════ COURSE LANDING PAGES ══════════ */
    .breadcrumb {
      max-width: 1200px;
      margin: 24px auto 0;
      padding: 0 clamp(20px, 5vw, 80px);
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .breadcrumb a { color: var(--saffron); }
    .breadcrumb span { margin: 0 6px; opacity: 0.6; }

    .course-hero {
      padding: 32px clamp(20px, 5vw, 80px) clamp(48px, 6vw, 80px);
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .course-hero-title {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--teal-dk);
      margin-bottom: 18px;
    }
    .course-hero-title em { color: var(--saffron); font-style: normal; }
    .course-hero-sub {
      font-size: 1.02rem;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 32px;
      max-width: 540px;
    }
    .course-hero-visual {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-lg);
      padding: 36px 32px;
      text-align: center;
      box-shadow: var(--shadow);
    }
    .course-hero-visual .glyph { font-size: 4rem; margin-bottom: 12px; font-family: 'Cormorant Garamond', serif; }

    .level-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 44px;
    }
    .level-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 26px 24px;
      transition: all 0.25s;
    }
    .level-card:hover { border-color: var(--saffron); box-shadow: var(--shadow); transform: translateY(-3px); }
    .level-badge {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--saffron);
      background: rgba(212,88,10,0.08);
      border-radius: 20px;
      padding: 4px 12px;
      margin-bottom: 12px;
    }
    .level-card h3 { font-size: 1.1rem; color: var(--teal-dk); margin-bottom: 8px; font-family: 'Cormorant Garamond', serif; }
    .level-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

    .format-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 44px;
    }
    .format-item {
      background: var(--cream-dk);
      border-radius: var(--r-md);
      padding: 22px 20px;
    }
    .format-item .f-icon { font-size: 1.6rem; margin-bottom: 10px; }
    .format-item .f-label { font-size: 0.78rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
    .format-item .f-val { font-size: 0.92rem; color: var(--teal-dk); font-weight: 600; }

    .faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--r-md);
      padding: 22px 26px;
    }
    .faq-item h3 { font-size: 1rem; color: var(--teal-dk); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
    .faq-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

    .course-cta-band {
      background: var(--teal-dk);
      border-radius: var(--r-lg);
      padding: 48px clamp(24px, 5vw, 64px);
      text-align: center;
      color: #fff;
      margin-top: 8px;
    }
    .course-cta-band h2 { color: #fff; margin-bottom: 12px; }
    .course-cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
    .course-cta-band .hero-actions { justify-content: center; }
