/* =========================================================
   CONVERTIX.WORK — Global Stylesheet
   Design: Clean Corporate · Light & Professional
   Fonts: Cormorant Garamond + Outfit
   Last Updated: 2025 — Added Premium Mode, Membership Plans, Paid Courses
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --navy:    #0d1b2a;
  --navy2:   #1a2c42;
  --gold:    #c9992a;
  --gold2:   #e8b84b;
  --goldbg:  #fdf3df;
  --white:   #ffffff;
  --off:     #f6f8fc;
  --text:    #1e2d3d;
  --muted:   #5f7285;
  --border:  #e2e8f0;
  --shadow:  0 4px 24px rgba(13,27,42,0.09);
  --shadow2: 0 12px 48px rgba(13,27,42,0.14);
  --radius:  14px;
  --radius2: 22px;
  font-size: 16px;
}

/* ── NEW: PREMIUM MODE THEME VARIABLES ───────────────── */
/* Applied via body.premium-mode class when toggle is activated */
body.premium-mode {
  --navy:    #07101c;
  --navy2:   #0e1d2e;
  --gold:    #e8b84b;
  --gold2:   #f5d27a;
  --goldbg:  #2a1f08;
  --white:   #0f1e30;
  --off:     #0a1625;
  --text:    #e8ecf0;
  --muted:   #8da8c4;
  --border:  #1e3450;
  background: #07101c;
}
body.premium-mode .navbar {
  background: rgba(7,16,28,0.95);
  border-bottom-color: #1e3450;
}
body.premium-mode .nav-logo { color: #f5d27a; }
body.premium-mode .nav-links a { color: rgba(200,215,230,0.7); }
body.premium-mode .nav-links a:hover,
body.premium-mode .nav-links a.active { color: #f5d27a; }
body.premium-mode .section-title { color: #e8ecf0; }
body.premium-mode .footer { background: #04090f; }
body.premium-mode .stats-bar { background: #04090f; }
body.premium-mode .card,
body.premium-mode .feature-card,
body.premium-mode .job-mini,
body.premium-mode .course-mini,
body.premium-mode .tcard,
body.premium-mode .apply-form-card,
body.premium-mode .sidebar-card,
body.premium-mode .contact-form-card {
  background: #0f1e30;
  border-color: #1e3450;
  color: #e8ecf0;
}
body.premium-mode .course-mini h4,
body.premium-mode .tcard-text,
body.premium-mode .feature-card h4,
body.premium-mode .feature-card p {
  color: #8da8c4;
}
/* Smooth transition for ALL properties on theme switch */
*, *::before, *::after {
  transition: background-color 0.5s ease, border-color 0.4s ease, color 0.3s ease, box-shadow 0.4s ease;
}

/* ── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(13,27,42,0.1); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 0.55rem 1.5rem; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.85rem !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold) !important; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,153,42,0.35) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  background: rgba(201,153,42,0.1); transition: background 0.3s;
  border: none;
}
.hamburger:hover { background: rgba(201,153,42,0.2); }
.hamburger span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55); z-index: 198;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-overlay.open {
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none;
  transition: all 0.3s; text-decoration: none;
}
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(13,27,42,0.22); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--white); box-shadow: 0 8px 24px rgba(201,153,42,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,153,42,0.4); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  padding: 140px 5% 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem; letter-spacing: 0.05em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold2); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.page-hero h1 em { color: var(--gold2); font-style: normal; }
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  max-width: 560px; line-height: 1.75;
}

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 90px 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 0.8rem;
}
.section-label::before { content: '—'; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; color: var(--navy);
  letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); margin-top: 0.9rem; line-height: 1.75; font-size: 0.97rem; max-width: 540px; }

.section-header-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}

.bg-off { background: var(--off); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-gold { background: linear-gradient(135deg, #b8841f, var(--gold)); }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius2); overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34,1.3,0.64,1);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: rgba(201,153,42,0.25); }

.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  background: var(--goldbg); color: var(--gold);
  margin-bottom: 0.8rem;
}
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.card-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── STATS BAR ───────────────────────────────────────── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; background: var(--navy); padding: 2.8rem 5%;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 160px; text-align: center;
  padding: 1rem 1.5rem; position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--gold2);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.3rem; letter-spacing: 0.04em; }

/* ── BADGE / TAG ─────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-gold { background: var(--goldbg); color: var(--gold); border: 1px solid rgba(201,153,42,0.25); }
.badge-green { background: #f0fdf4; color: #15803d; border: 1px solid rgba(21,128,61,0.2); }
.badge-blue  { background: #eff6ff; color: #1d4ed8; border: 1px solid rgba(29,78,216,0.2); }
.badge-navy  { background: rgba(13,27,42,0.08); color: var(--navy); border: 1px solid rgba(13,27,42,0.15); }

/* ── DIVIDER ─────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 5% 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 50px;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.75; margin-top: 1rem; }
.footer-col h5 {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact-item .icon { font-size: 1rem; margin-top: 0.05rem; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 700;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.3);
  flex-wrap: wrap; gap: 0.5rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { justify-content: center; text-align: center; } }

/* ── FORMS ───────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text);
  background: var(--off); transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,153,42,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.up { opacity: 1; transform: translateY(0); }

/* ── HERO (HOMEPAGE) ─────────────────────────────────── */
/* ═══════════════════════════════════════════════════
   HERO SECTION — Full-screen video background
   Clean, centered, works perfectly on mobile too
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

/* ── Full-screen background video ── */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Let video breathe — visible but not distracting */
  opacity: 1;
  filter: brightness(0.52) saturate(1.1);
  pointer-events: none;
}

/* ── Overlay: dark on bottom + subtle gold glow ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Strong bottom fade — content below needs contrast */
    linear-gradient(180deg,
      rgba(4, 10, 20, 0.30) 0%,
      rgba(4, 10, 20, 0.40) 50%,
      rgba(4, 10, 20, 0.72) 100%),
    /* Warm gold center glow — premium feel */
    radial-gradient(ellipse 70% 60% at 50% 40%,
      rgba(201,153,42,0.14) 0%,
      transparent 70%);
}

/* ── Main content container ── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 5% 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,153,42,0.14);
  border: 1px solid rgba(201,153,42,0.38);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold2);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.4); }
}

/* Heading */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.hero h1 .accent { color: var(--gold2); }
.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.55);
  color: transparent;
}

/* Description */
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.2rem;
}

/* Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2.8rem;
}
.trust-avatars { display: flex; }
.trust-avatars img {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  margin-right: -10px; object-fit: cover;
}
.trust-text { font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.trust-text strong { color: var(--gold2); }

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 1.2rem 2rem;
  width: 100%;
  max-width: 560px;
}
.hstat {
  flex: 1;
  text-align: center;
}
.hstat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hstat-lbl {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hstat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, #fff);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.3); }
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-inner {
    padding: 110px 1.4rem 80px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 3.8rem);
    line-height: 1.05;
  }
  .hero-desc {
    font-size: 0.97rem;
    max-width: 100%;
  }
  .hero-stats {
    padding: 1rem 1rem;
    gap: 0;
    border-radius: 14px;
  }
  .hstat-num { font-size: 1.4rem; }
  .hstat-lbl { font-size: 0.6rem; }
  .hero-scroll-hint { display: none; }
  .hero-bg-video { filter: brightness(0.45) saturate(1.1); }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 2.6rem; }
  .hero-stats { padding: 0.8rem 0.6rem; }
  .hstat-num { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
  .hero { background: #060f1a; }
}

/* ── NEW: PREMIUM WORK SECTION ───────────────────────── */
/* This is the full dedicated "Premium Work" section on the homepage */
.premium-work-section {
  background: linear-gradient(135deg, #07101c 0%, #0e1d2e 40%, #1a2c0a 100%);
  padding: 90px 5%; position: relative; overflow: hidden;
}
.premium-work-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,184,75,0.07), transparent 65%);
  pointer-events: none;
}
.premium-work-section .section-label { color: var(--gold2); }
.premium-work-section .section-title { color: #ffffff; }
.premium-work-section .section-sub { color: rgba(255,255,255,0.55); }

.premium-toggle-wrap {
  display: flex; align-items: center; gap: 1.5rem;
  margin: 2.5rem 0;
}
.premium-toggle-label { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.7); }
/* The toggle button */
.premium-toggle-btn {
  position: relative; width: 64px; height: 34px;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(232,184,75,0.3);
  border-radius: 50px; cursor: pointer; transition: all 0.35s;
  outline: none; flex-shrink: 0;
}
.premium-toggle-btn::after {
  content: '';
  position: absolute; top: 3px; left: 3px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: all 0.35s cubic-bezier(0.34,1.3,0.64,1);
}
.premium-toggle-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: var(--gold2);
  box-shadow: 0 0 24px rgba(232,184,75,0.4);
}
.premium-toggle-btn.active::after { left: calc(100% - 29px); background: #fff; }
.premium-status-text { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.4); transition: color 0.3s; }
.premium-toggle-btn.active + .premium-status-text { color: var(--gold2); }

.premium-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.pf-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius2); padding: 2rem 1.8rem;
  transition: all 0.35s; position: relative; overflow: hidden;
}
.pf-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.pf-card:hover { background: rgba(232,184,75,0.06); border-color: rgba(232,184,75,0.2); }
.pf-card:hover::before { transform: scaleX(1); }
.pf-icon { font-size: 2rem; margin-bottom: 1rem; }
.pf-card h4 { font-size: 1rem; font-weight: 700; color: #ffffff; margin-bottom: 0.5rem; }
.pf-card p { font-size: 0.84rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.pf-badge { display: inline-block; margin-top: 1rem; padding: 0.3rem 0.8rem; background: rgba(232,184,75,0.15); border: 1px solid rgba(232,184,75,0.3); border-radius: 50px; font-size: 0.72rem; font-weight: 700; color: var(--gold2); letter-spacing: 0.06em; }

.premium-cta-row { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; align-items: center; }

/* Active premium mode banner highlight */
body.premium-mode .premium-work-section { outline: 3px solid rgba(232,184,75,0.3); outline-offset: -3px; }

@media (max-width: 900px) { .premium-features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .premium-features-grid { grid-template-columns: 1fr; } }

/* ── NEW: MEMBERSHIP PLANS (Apply Form) ──────────────── */
.membership-section { margin-bottom: 1.4rem; }
.membership-section > label { font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.8rem; display: block; }

.membership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1rem; }
.membership-card {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: 1.2rem 0.8rem; text-align: center; cursor: pointer;
  transition: all 0.25s; background: var(--off); position: relative; overflow: hidden;
}
.membership-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,153,42,0.12); }
.membership-card.selected { border-color: var(--gold); background: var(--goldbg); box-shadow: 0 6px 20px rgba(201,153,42,0.18); }
.membership-card.selected::before { content: '✓'; position: absolute; top: 6px; right: 10px; font-size: 0.75rem; color: var(--gold); font-weight: 700; }
.mp-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.15rem 0.5rem; border-radius: 50px;
  background: rgba(201,153,42,0.15); color: var(--gold); border: 1px solid rgba(201,153,42,0.3);
  margin-bottom: 0.5rem;
}
.mp-duration { font-size: 0.75rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.mp-price { font-size: 1.4rem; font-weight: 800; color: var(--navy); font-family: 'Cormorant Garamond', serif; line-height: 1; }
.mp-desc { font-size: 0.68rem; color: var(--muted); margin-top: 0.3rem; }
.membership-card.selected .mp-price { color: var(--gold); }
.membership-card.selected .mp-duration { color: var(--gold); }

/* The notice box that appears when a plan is selected */
.membership-notice {
  display: none; /* shown via JS */
  background: linear-gradient(135deg, #fdf3df, #fff8ec);
  border: 1.5px solid rgba(201,153,42,0.35);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: 0.85rem; font-weight: 600; color: #7a5010;
  line-height: 1.6; margin-top: 0.5rem;
  animation: fadeSlideIn 0.35s ease;
}
@keyframes fadeSlideIn {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 480px) { .membership-grid { grid-template-columns: 1fr; } }

/* ── PAID COURSES — Course Price Badge ───────────────── */
/* Replaces the free green badge with a gold price badge */
.cf-price {
  font-size: 0.88rem; font-weight: 800; color: var(--gold);
  background: var(--goldbg); padding: 0.3rem 0.8rem;
  border-radius: 50px; border: 1px solid rgba(201,153,42,0.3);
  font-family: 'Cormorant Garamond', serif; letter-spacing: 0.02em;
}
/* Enroll button on course card */
.course-enroll-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--white); padding: 0.55rem 1.1rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  border: none; cursor: pointer; font-family: 'Outfit', sans-serif;
  transition: all 0.3s; text-decoration: none;
  box-shadow: 0 4px 14px rgba(201,153,42,0.25);
}
.course-enroll-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(201,153,42,0.4); }

/* Updated course footer with price + enroll side by side */
.course-footer {
  padding: 1.2rem 1.6rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 0.5rem;
}
.cf-duration { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; }

/* ── DIGITAL MARKETING SECTION (Jobs) ────────────────── */
/* New split layout for the digital marketing info in jobs.html */
.dm-split-section {
  background: var(--white); padding: 80px 5%;
}
.dm-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.dm-split-grid img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: var(--radius2); box-shadow: var(--shadow2);
}
.dm-text .section-label { margin-bottom: 0.8rem; }
.dm-text p { color: var(--muted); line-height: 1.8; font-size: 0.97rem; margin-top: 1rem; }
.dm-points { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.dm-point { display: flex; align-items: center; gap: 0.7rem; font-size: 0.88rem; font-weight: 500; color: var(--text); }
.dm-point .icon { width: 28px; height: 28px; border-radius: 8px; background: var(--goldbg); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
@media (max-width: 900px) { .dm-split-grid { grid-template-columns: 1fr; } .dm-split-grid img { height: 260px; } }

/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-stack { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 75%; height: 100%;
  object-fit: cover; border-radius: var(--radius2); box-shadow: var(--shadow2);
}
.about-img-sub {
  position: absolute; bottom: -30px; right: 0; width: 55%; height: 65%;
  object-fit: cover; border-radius: var(--radius2);
  border: 6px solid var(--white); box-shadow: var(--shadow2);
}
.about-badge-img {
  position: absolute; top: 2rem; right: 10%; z-index: 2;
  background: var(--gold); color: var(--white);
  border-radius: 16px; padding: 0.8rem 1.2rem; text-align: center;
  box-shadow: 0 12px 30px rgba(201,153,42,0.35);
}
.about-badge-img .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-img .lbl { font-size: 0.7rem; font-weight: 600; opacity: 0.85; }
.about-text .section-label { margin-bottom: 0.8rem; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.about-checks { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 1.5rem; }
.acheck { font-size: 0.9rem; font-weight: 500; color: var(--text); padding-left: 1.5rem; position: relative; }
.acheck::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.mission-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); padding: 2rem; transition: all .3s; }
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); border-color: rgba(201,153,42,0.2); }
.mc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.mission-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.mission-card p { font-size: .84rem; color: var(--muted); line-height: 1.7; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.team-card { border-radius: var(--radius2); overflow: hidden; background: var(--white); border: 1px solid var(--border); transition: all .3s; text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.team-card img { width: 100%; height: 220px; object-fit: cover; object-position: top; }
.team-body { padding: 1.2rem; }
.team-name { font-size: .95rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.team-socials { display: flex; justify-content: center; gap: .5rem; margin-top: .8rem; }
.ts-btn { width: 30px; height: 30px; border-radius: 50%; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .7rem; color: var(--muted); transition: .2s; }
.ts-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

.work-options-section { background: var(--navy); padding: 80px 5%; }
.work-options-section .section-label { color: var(--gold2); }
.work-options-section .section-title { color: var(--white); }
.wo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.wo-card { border-radius: var(--radius2); padding: 2.5rem; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); transition: all .3s; }
.wo-card:hover { background: rgba(201,153,42,0.08); border-color: rgba(201,153,42,0.25); }
.wo-tag { display: inline-block; padding: .3rem .9rem; border-radius: 50px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.2rem; }
.wo-normal .wo-tag { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.2); }
.wo-premium .wo-tag { background: rgba(201,153,42,0.15); color: var(--gold2); border: 1px solid rgba(201,153,42,0.25); }
.wo-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: .8rem; }
.wo-card p { font-size: .88rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 1.5rem; }
.wo-features { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.wo-features li { font-size: .84rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: .6rem; }
.wo-features li::before { content: '→'; color: var(--gold2); font-weight: 700; }

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-img-stack { height: 300px; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .wo-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }

/* ── HOMEPAGE SECTION LAYOUTS ───────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-card { padding: 2rem; border-radius: var(--radius2); background: var(--off); border: 1px solid var(--border); transition: all .3s; }
.feature-card:hover { background: var(--white); box-shadow: var(--shadow2); transform: translateY(-4px); border-color: rgba(201,153,42,0.2); }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--goldbg), #fff3d6); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.feature-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

.jobs-mini-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.job-mini { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1rem; text-align: center; transition: all .3s; cursor: pointer; text-decoration: none; color: var(--text); }
.job-mini:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(201,153,42,0.14); transform: translateY(-4px); }
.job-mini .ji { font-size: 1.8rem; margin-bottom: .6rem; }
.job-mini span { font-size: .8rem; font-weight: 600; color: var(--navy); display: block; line-height: 1.3; }

.courses-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.course-mini { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; transition: all .3s; }
.course-mini:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.course-mini img { width: 100%; height: 190px; object-fit: cover; }
.course-mini-body { padding: 1.4rem; }
.course-mini-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.course-mini h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.course-mini p { font-size: .82rem; color: var(--muted); }
.course-mini-footer { padding: 1rem 1.4rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.course-mini-footer .dur { font-size: .78rem; color: var(--muted); }
.course-mini-footer a { font-size: .8rem; font-weight: 600; color: var(--gold); }

.process-section { background: var(--navy); }
.process-section .section-label { color: var(--gold2); }
.process-section .section-title { color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 3.5rem; background: rgba(255,255,255,0.06); border-radius: var(--radius2); overflow: hidden; }
.step-box { padding: 2.2rem 1.8rem; background: rgba(255,255,255,0.03); transition: background .3s; }
.step-box:hover { background: rgba(201,153,42,0.08); }
.step-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; color: rgba(255,255,255,0.07); line-height: 1; margin-bottom: .8rem; }
.step-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.step-box h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.step-box p { font-size: .83rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.tcard { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); padding: 2rem; transition: all .3s; }
.tcard:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.tcard-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.tcard-text { font-size: .9rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 1.4rem; }
.tcard-author { display: flex; align-items: center; gap: .8rem; }
.author-av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--white); font-weight: 700; flex-shrink: 0; }
.author-name { font-size: .88rem; font-weight: 700; color: var(--navy); }
.author-role { font-size: .76rem; color: var(--muted); }

.cta-banner { background: linear-gradient(135deg, var(--gold) 0%, #b8841f 100%); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px); background-size: 28px 28px; }
.cta-banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); font-weight: 700; margin-bottom: 1rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 480px; margin: 0 auto 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white { background: var(--white); color: var(--gold) !important; }
.btn-white:hover { background: var(--navy); color: var(--white) !important; }
.btn-ow { background: transparent; color: var(--white) !important; border: 2px solid rgba(255,255,255,0.6); }
.btn-ow:hover { background: rgba(255,255,255,0.15); }

/* ── HOMEPAGE RESPONSIVE ────────────────────────────── */
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } .jobs-mini-grid { grid-template-columns: repeat(3, 1fr); } .courses-row { grid-template-columns: repeat(2, 1fr); } .steps-grid { grid-template-columns: repeat(2, 1fr); } .testimonials-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } .jobs-mini-grid { grid-template-columns: repeat(2, 1fr); } .courses-row { grid-template-columns: 1fr; } .steps-grid { grid-template-columns: 1fr; } }

/* ── JOBS PAGE ─────────────────────────────────────── */
.jobs-filter-bar { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn { padding: .45rem 1.1rem; border-radius: 50px; font-size: .8rem; font-weight: 600; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); cursor: pointer; transition: all .2s; font-family: 'Outfit', sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; transition: all .3s; display: flex; flex-direction: column; }
.job-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); border-color: rgba(201,153,42,0.25); }
.job-card-img { width: 100%; height: 200px; object-fit: cover; }
.job-card-body { padding: 1.8rem; flex: 1; }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.job-icon-wrap { width: 52px; height: 52px; border-radius: 14px; background: var(--goldbg); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.job-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .4rem; }
.job-desc { font-size: .86rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.job-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.job-features { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.5rem; }
.job-features li { font-size: .83rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.job-features li::before { content: '✓'; color: var(--gold); font-weight: 800; font-size: .8rem; }
.job-card-footer { padding: 1.2rem 1.8rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.earning-info .earn-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.earning-info .earn-val { font-size: .95rem; font-weight: 700; color: var(--navy); }

.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); padding: 1.8rem; position: sticky; top: 100px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.sidebar-steps { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.sidebar-steps li { display: flex; gap: .8rem; align-items: flex-start; font-size: .84rem; color: var(--muted); }
.sidebar-steps .snum { width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: #fff; font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

.jobs-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }

@media (max-width: 1024px) { .jobs-layout { grid-template-columns: 1fr; } .sidebar-card { position: static; } }
@media (max-width: 700px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ── COURSES PAGE ─────────────────────────────────── */
.courses-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.ci-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow2); }
.ci-image img { width: 100%; height: 420px; object-fit: cover; }
.ci-text .section-label { margin-bottom: .8rem; }
.ci-text p { color: var(--muted); line-height: 1.8; font-size: .97rem; margin-top: 1rem; }
.ci-points { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.ci-point { display: flex; align-items: center; gap: .7rem; font-size: .88rem; font-weight: 500; color: var(--text); }
.ci-point .icon { width: 28px; height: 28px; border-radius: 8px; background: var(--goldbg); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }

.courses-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 3rem; }
.course-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); overflow: hidden; transition: all .35s; display: flex; flex-direction: column; }
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow2); border-color: rgba(201,153,42,0.25); }
.course-img { width: 100%; height: 200px; object-fit: cover; }
.course-body { padding: 1.6rem; flex: 1; }
.course-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.course-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--goldbg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.course-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.course-desc { font-size: .84rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.course-modules { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.course-modules li { font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.course-modules li::before { content: '→'; color: var(--gold); font-weight: 700; font-size: .7rem; }

.why-learn { background: var(--navy); padding: 80px 5%; }
.why-learn .section-label { color: var(--gold2); }
.why-learn .section-title { color: var(--white); margin-bottom: 3rem; }
.wl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.wl-card { padding: 2rem 1.5rem; border-radius: var(--radius2); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); text-align: center; transition: all .3s; }
.wl-card:hover { background: rgba(201,153,42,0.08); border-color: rgba(201,153,42,0.25); }
.wl-icon { font-size: 2rem; margin-bottom: 1rem; }
.wl-card h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.wl-card p { font-size: .82rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

@media (max-width: 1024px) { .courses-intro-grid { grid-template-columns: 1fr; } .ci-image { display: none; } .courses-grid-full { grid-template-columns: repeat(2, 1fr); } .wl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .courses-grid-full { grid-template-columns: 1fr; } .wl-grid { grid-template-columns: 1fr; } }

/* ── APPLY PAGE ─────────────────────────────────────── */
.apply-layout { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: start; }
.apply-left h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: .8rem; }
.apply-left p { color: var(--muted); line-height: 1.8; font-size: .95rem; margin-bottom: 2rem; }
.perks-list { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.5rem; }
.perk { display: flex; align-items: center; gap: .8rem; font-size: .9rem; font-weight: 500; color: var(--text); }
.perk-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--goldbg); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testimonial-mini { background: var(--off); border-radius: var(--radius); padding: 1.4rem; border-left: 3px solid var(--gold); }
.tm-quote { font-size: .88rem; font-style: italic; color: var(--muted); line-height: 1.7; margin-bottom: .8rem; }
.tm-author { display: flex; align-items: center; gap: .6rem; }
.tm-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; font-weight: 700; }
.tm-name { font-size: .82rem; font-weight: 700; color: var(--navy); }
.tm-role { font-size: .72rem; color: var(--muted); }

.apply-photo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.apply-photo-strip img { width: 100%; height: 130px; object-fit: cover; border-radius: 12px; }

/* Form */
.apply-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius2); padding: 2.5rem; box-shadow: var(--shadow); }
.afc-title { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.afc-sub { font-size: .82rem; color: var(--muted); margin-bottom: 2rem; }
.work-opt-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.2rem; }
.work-opt { padding: .9rem 1rem; border-radius: var(--radius); border: 1.5px solid var(--border); background: var(--off); cursor: pointer; transition: all .2s; text-align: center; }
.work-opt h5 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.work-opt p { font-size: .73rem; color: var(--muted); }
.work-opt.active { border-color: var(--gold); background: var(--goldbg); }
.work-opt.active h5 { color: var(--gold); }
.submit-btn { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--white); padding: 1rem; border-radius: var(--radius); font-weight: 700; font-size: 1rem; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; transition: all .3s; box-shadow: 0 8px 24px rgba(201,153,42,0.25); margin-top: .5rem; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(201,153,42,0.4); }
.success-msg { display: none; background: #f0fdf4; border: 1px solid rgba(22,163,74,0.25); border-radius: var(--radius); padding: 1rem; text-align: center; color: #15803d; font-size: .88rem; margin-top: 1rem; }
.form-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: .8rem; }

.steps-banner { background: var(--off); padding: 50px 5%; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--gold), rgba(201,153,42,0.2)); z-index: 0; }
.step-item { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold2)); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 8px 20px rgba(201,153,42,0.3); }
.step-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.step-item p { font-size: .78rem; color: var(--muted); line-height: 1.6; }





.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.footer-logo span {
  color: #d4af37;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-social {
  margin-top: 15px;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #fff;
}

.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1024px) { .apply-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .steps-row { grid-template-columns: repeat(2, 1fr); } .steps-row::before { display: none; } .work-opt-row { grid-template-columns: 1fr; } }

/* =====================================================
   MOBILE MENU — FIXED. #navLinks is outside <nav>
   so backdrop-filter no longer blocks position:fixed
   ===================================================== */

/* Desktop: hide mobile-only items */
.nav-mobile-header { display: none !important; }

/* Desktop nav — fixed to sit visually inside the navbar */
#navLinks {
  position: fixed;
  top: 0;
  right: 5%;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  z-index: 201;
  margin: 0;
  padding: 0;
}

/* ── MOBILE ── */
@media (max-width: 768px) {

  /* Show hamburger */
  .hamburger { display: flex !important; }

  /* Panel hidden off-screen LEFT by default */
  #navLinks {
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-y: auto !important;
    box-shadow: 6px 0 32px rgba(0,0,0,0.25) !important;
    transition: left 0.3s ease !important;
    gap: 0 !important;
  }

  /* OPEN — slides in from left */
  #navLinks.open {
    left: 0 !important;
  }

  /* Dark overlay */
  #navOverlay {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.55) !important;
    z-index: 99998 !important;
  }
  #navOverlay.open { display: block !important; }

  /* Lock scroll */
  body.nav-open { overflow: hidden !important; }

  /* Panel header bar */
  .nav-mobile-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #0d1b2a !important;
    padding: 0 1.2rem !important;
    height: 64px !important;
    min-height: 64px !important;
    flex-shrink: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .nav-mobile-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; font-weight: 700; color: #fff;
  }
  .nav-mobile-logo span { color: #e8b84b; }
  .nav-mobile-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 1.1rem;
    cursor: pointer; display: flex;
    align-items: center; justify-content: center;
    padding: 0; line-height: 1;
  }

  /* List items */
  #navLinks li {
    width: 100% !important;
    list-style: none !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  #navLinks li:first-child { padding: 0 !important; }
  #navLinks li:nth-child(2) { margin-top: 1rem !important; }
  #navLinks li:last-child { padding-bottom: 2rem !important; }

  /* Links */
  #navLinks a {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.85rem 1rem !important;
    margin-bottom: 0.45rem !important;
    font-size: 0.96rem !important;
    font-weight: 600 !important;
    color: #1e2d3d !important;
    background: #f6f8fc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    text-decoration: none !important;
  }
  #navLinks a::before {
    content: '›'; color: #c9992a;
    font-size: 1.2rem; font-weight: 700; flex-shrink: 0;
  }
  #navLinks a::after { display: none !important; }
  #navLinks a:hover, #navLinks a.active {
    color: #c9992a !important;
    background: #fff7e0 !important;
    border-color: #f0d47a !important;
  }

  /* Apply Now CTA */
  #navLinks a.nav-cta {
    background: linear-gradient(135deg,#c9992a,#e8b84b) !important;
    color: #fff !important; border-color: transparent !important;
    justify-content: center !important; font-weight: 700 !important;
    margin-top: 0.4rem !important;
  }
  #navLinks a.nav-cta::before { display: none !important; }
  #navLinks a.nav-cta:hover { background: #0d1b2a !important; }
}