
:root {
  --navy:    #070f1e;
  --navy2:   #0c1a32;
  --navy3:   #112244;
  --blue:    #1a3a7c;
  --mid:     #2563be;
  --bright:  #3b82f6;
  --accent:  #f5a623;
  --accentH: #fbbf24;
  --orange:  #ff6600;
  --white:   #f0f6ff;
  --muted:   #7a96c2;
  --border:  rgba(255,255,255,0.07);
  --card:    rgba(255,255,255,0.03);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }
ul { list-style: none; }


::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 4px; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 1rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,15,30,.8); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); transition: padding .3s, background .3s;
}
#nav.scrolled { padding: .7rem 2.5rem; background: rgba(7,15,30,.97); }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 900; letter-spacing: -.02em; display: flex; align-items: center; gap: 0; }
.nav-logo em { color: var(--accent); font-style: normal; }
.nav-logo-img { height: 46px; width: auto; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(100,160,255,.5)); transition: filter .3s, transform .3s; mix-blend-mode: screen; margin-right: -8px; }
.nav-logo-img:hover { filter: drop-shadow(0 0 14px rgba(100,160,255,.85)); transform: scale(1.06); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--muted); font-size: .83rem; font-weight: 500; letter-spacing: .04em;
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: var(--accent); color: var(--navy);
  padding: .55rem 1.5rem; border-radius: 100px;
  font-size: .82rem; font-weight: 700; display: inline-block;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-btn:hover { background: var(--accentH); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,.35); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mob-menu {
  display: none; position: fixed; top: 58px; left: 0; right: 0; z-index: 499;
  background: rgba(7,15,30,.98); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem; flex-direction: column; gap: 1.2rem;
}
#mob-menu.open { display: flex; }
#mob-menu a { color: var(--muted); font-size: .95rem; font-weight: 500; }
#mob-menu a:hover { color: var(--accent); }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 9rem 2.5rem 5rem; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 55% -5%, rgba(37,99,190,.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 90%, rgba(245,166,35,.1) 0%, transparent 55%),
    linear-gradient(180deg, var(--navy2) 0%, var(--navy) 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(37,99,190,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,190,.05) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}


#pCv { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.h-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.3);
  color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .38rem .95rem; border-radius: 100px; margin-bottom: 1.4rem;
  animation: fUp .7s ease both;
}
.h-badge::before { content: '●'; font-size: .45rem; animation: blk 2s infinite; }
@keyframes blk { 0%,100%{opacity:1} 50%{opacity:.2} }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,5.5vw,4.2rem); font-weight: 900; line-height: 1.06; letter-spacing: -.025em; animation: fUp .7s .1s ease both; }
h1 .gold { color: var(--accent); }
h1 .dim  { color: rgba(240,246,255,.65); display: block; }
.h-desc { margin-top: 1.4rem; color: var(--muted); font-size: .97rem; line-height: 1.75; max-width: 470px; animation: fUp .7s .2s ease both; }
.h-btns { margin-top: 2.2rem; display: flex; gap: .9rem; flex-wrap: wrap; animation: fUp .7s .3s ease both; }
.btn-gold {
  background: var(--accent); color: var(--navy); padding: .85rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .45rem;
  transition: background .2s, transform .25s, box-shadow .25s; cursor: pointer;
}
.btn-gold:hover { background: var(--accentH); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,166,35,.35); }
.btn-ghost {
  background: transparent; color: var(--white); padding: .85rem 2rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18); font-weight: 500; font-size: .9rem;
  display: inline-flex; align-items: center; gap: .45rem;
  transition: border-color .2s, background .2s, transform .25s; cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); transform: translateY(-3px); }
.h-stats { margin-top: 2.8rem; display: flex; gap: 2.2rem; flex-wrap: wrap; animation: fUp .7s .4s ease both; }
.hs .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hs .lbl { font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.grad-stat .num { color: var(--accentH) !important; }
.grad-stat .lbl { color: rgba(251,191,36,.75) !important; }
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 2rem; backdrop-filter: blur(16px);
  position: relative; overflow: hidden; animation: fUp .8s .35s ease both;
  transition: transform .4s, box-shadow .4s;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: 0 30px 70px rgba(0,0,0,.5); }
.hero-card::before { content: ''; position: absolute; top: -80px; right: -80px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,190,.35), transparent 70%); }
.hc-tag { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: .8rem; }
.hc-year { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 900; line-height: 1; }
.hc-sub  { color: var(--muted); font-size: .85rem; margin-bottom: 1.4rem; margin-top: .3rem; }
.pill-cloud { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.5rem; }
.cpill { background: rgba(37,99,190,.18); border: 1px solid rgba(37,99,190,.3); color: #8ab4f8; font-size: .7rem; font-weight: 500; padding: .28rem .7rem; border-radius: 100px; }
.reg-box { background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.22); border-radius: 14px; padding: .9rem 1.2rem; display: flex; align-items: center; justify-content: space-between; }
.reg-box .rlbl { font-size: .75rem; color: var(--muted); }
.reg-box .ramt { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--accent); }
.reg-box .rsub { font-size: .68rem; color: var(--muted); margin-top: .15rem; }
@keyframes fUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }

/* ── SECTIONS ── */
.sec { padding: 5.5rem 2.5rem; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.sec-tag { font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .55rem; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 700; line-height: 1.18; margin-bottom: .7rem; }
.sec-sub { color: var(--muted); font-size: .94rem; line-height: 1.72; max-width: 560px; }
.rev { opacity:0; transform:translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.rev.vis { opacity:1; transform:none; }
.rev.d1{transition-delay:.05s} .rev.d2{transition-delay:.12s} .rev.d3{transition-delay:.19s}
.rev.d4{transition-delay:.26s} .rev.d5{transition-delay:.33s} .rev.d6{transition-delay:.40s}

/* ── ABOUT ── */
#about { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text p { color: var(--muted); line-height: 1.82; margin-bottom: .95rem; font-size: .93rem; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.atag { background: rgba(37,99,190,.14); border: 1px solid rgba(37,99,190,.28); color: #7cb3ff; font-size: .75rem; font-weight: 500; padding: .35rem .95rem; border-radius: 100px; }
.astat-list { display: flex; flex-direction: column; gap: 1rem; }
.astat { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem 1.5rem; display: flex; align-items: center; gap: 1.2rem; transition: border-color .3s, transform .3s; }
.astat:hover { border-color: rgba(37,99,190,.5); transform: translateX(4px); }
.astat-icon { font-size: 1.8rem; flex-shrink: 0; }
.astat-val { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 900; color: var(--accent); }
.astat-desc { font-size: .77rem; color: var(--muted); margin-top: .1rem; }

/* ── COURSES ── */
#courses { background: var(--navy); }
.courses-hd { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; }
.cc { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 1.55rem; cursor: pointer; transition: all .3s; position: relative; overflow: hidden; user-select: none; }
.cc::after { content: ''; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(135deg, rgba(37,99,190,.14), transparent); opacity: 0; transition: opacity .3s; }
.cc:hover { border-color: rgba(37,99,190,.55); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.45); }
.cc:hover::after { opacity: 1; }
.cc.open { border-color: var(--accent); background: rgba(245,166,35,.04); }
.cc-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(37,99,190,.2); display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: .95rem; transition: background .3s; position: relative; z-index: 1; }
.cc:hover .cc-icon { background: rgba(37,99,190,.35); }
.cc.open .cc-icon { background: rgba(245,166,35,.18); }
.cc-name { font-weight: 700; font-size: .97rem; line-height: 1.3; margin-bottom: .45rem; position: relative; z-index: 1; }
.cc-dur  { font-size: .73rem; color: var(--muted); margin-bottom: .65rem; position: relative; z-index: 1; }
.cc-fee  { font-size: .78rem; font-weight: 600; color: var(--accent); position: relative; z-index: 1; }
.cc-hint { font-size: .7rem; color: var(--muted); margin-top: .75rem; display: flex; align-items: center; gap: .35rem; position: relative; z-index: 1; }
.cc-arrow { display: inline-block; transition: transform .3s; }
.cc.open .cc-arrow { transform: rotate(90deg); }
.cd { display: none; background: rgba(37,99,190,.07); border: 1px solid rgba(37,99,190,.28); border-radius: 20px; padding: 2rem; margin-top: 1rem; animation: sdDown .35s ease both; }
.cd.open { display: block; }
@keyframes sdDown { from{opacity:0;transform:translateY(-12px)} to{opacity:1;transform:none} }
.cd-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.cd-sec h4 { font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.cd-sec ul li { font-size: .81rem; color: var(--muted); padding: .28rem 0; display: flex; align-items: flex-start; gap: .45rem; line-height: 1.5; border-bottom: 1px solid rgba(255,255,255,.04); }
.cd-sec ul li::before { content: '›'; color: var(--accent); flex-shrink:0; font-size: .9rem; }
.cd-imp { grid-column: 1/-1; background: rgba(245,166,35,.07); border: 1px solid rgba(245,166,35,.2); border-radius: 12px; padding: .95rem 1.25rem; font-size: .83rem; color: #c8a052; line-height: 1.65; }
.cd-imp strong { color: var(--accent); }

/* ── PLANS ── */
#plans { background: var(--navy2); border-top: 1px solid var(--border); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.4rem; }
.plan { background: var(--card); border: 1.5px solid var(--border); border-radius: 26px; padding: 2rem; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.plan:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0,0,0,.55); }
.plan.feat { border-color: var(--accent); background: linear-gradient(145deg, rgba(245,166,35,.07), rgba(37,99,190,.07)); }
.plan.feat::before { content: 'MOST POPULAR'; position: absolute; top: 1.1rem; right: 1.1rem; background: var(--accent); color: var(--navy); font-size: .58rem; font-weight: 800; letter-spacing: .15em; padding: .22rem .7rem; border-radius: 100px; }
.plan-name { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; margin-bottom: .25rem; }
.plan-price span { font-size: 1.1rem; color: var(--muted); }
.plan-blurb { font-size: .81rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.plan-features { flex: 1; margin-bottom: 1.8rem; }
.plan-features li { font-size: .8rem; color: var(--muted); padding: .48rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .55rem; }
.plan-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.plan-cta { display: block; text-align: center; border: 1px solid rgba(255,255,255,.18); border-radius: 13px; color: var(--white); font-size: .86rem; font-weight: 600; padding: .9rem; transition: all .22s; }
.plan-cta:hover, .plan.feat .plan-cta { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.plan.feat .plan-cta:hover { background: var(--accentH); }
.om-box { margin-top: 3rem; background: linear-gradient(135deg, rgba(255,102,0,.12), rgba(255,102,0,.04)); border: 1px solid rgba(255,102,0,.3); border-radius: 22px; padding: 2rem 2.2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.om-logo { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, #ff6600, #ff9500); display: flex; align-items: center; justify-content: center; font-size: 1.9rem; flex-shrink: 0; box-shadow: 0 8px 32px rgba(255,102,0,.3); animation: omP 2.5s ease-in-out infinite; }
@keyframes omP { 0%,100%{box-shadow:0 8px 32px rgba(255,102,0,.3)} 50%{box-shadow:0 8px 48px rgba(255,102,0,.55)} }
.om-content h3 { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:700; margin-bottom:.4rem; }
.om-content p  { font-size:.88rem; color:var(--muted); line-height:1.65; max-width:500px; }
.om-num { display: inline-flex; align-items: center; gap: .5rem; margin-top: .75rem; background: rgba(255,102,0,.14); border: 1px solid rgba(255,102,0,.32); border-radius: 100px; padding: .48rem 1.2rem; font-size: .97rem; font-weight: 700; color: #ff8c44; }
.om-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 1.6rem; }
.om-step { background: rgba(255,102,0,.05); border: 1px solid rgba(255,102,0,.14); border-radius: 14px; padding: 1rem; text-align: center; transition: border-color .3s, transform .3s; }
.om-step:hover { border-color: rgba(255,102,0,.4); transform: translateY(-3px); }
.om-sn { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,102,0,.18); color: #ff8c44; font-weight: 700; font-size: .82rem; display: flex; align-items: center; justify-content: center; margin: 0 auto .55rem; }
.om-step p { font-size: .77rem; color: var(--muted); line-height: 1.55; }

/* ── TUITION ── */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.t-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.tc { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.4rem; transition: border-color .3s, transform .3s; }
.tc:hover { border-color: rgba(37,99,190,.5); transform: translateY(-4px); }
.tc-type { font-size: .68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-bottom:.35rem; }
.tc-name { font-weight:600; font-size:.9rem; margin-bottom:.75rem; line-height:1.35; }
.tc-price { font-family:'Playfair Display',serif; font-size:2rem; font-weight:900; color:var(--accent); }
.tc-per   { font-size:.73rem; color:var(--muted); }
.tc-note  { font-size:.76rem; color:var(--muted); margin-top:.55rem; line-height:1.55; }

/* ── CONTACT ── */
#contact { background: var(--navy2); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.cinfo-list { display: flex; flex-direction: column; gap: 1rem; }
.ci { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem 1.4rem; display: flex; align-items: flex-start; gap: 1rem; transition: border-color .3s, transform .3s; }
.ci:hover { border-color: rgba(37,99,190,.45); transform: translateX(5px); }
.ci-icon { width: 42px; height: 42px; border-radius: 11px; background: rgba(37,99,190,.2); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.ci-lbl { font-size: .67rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .18rem; }
.ci-val { font-size: .88rem; font-weight: 500; color: var(--white); }
.ci-val a { color: var(--white); transition: color .2s; }
.ci-val a:hover { color: var(--accent); }
.cform { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 18px; padding: 1.2rem 1.4rem; max-width: 580px; }
.cf-title { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; margin-bottom:1rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 12px; padding: .82rem 1rem; color: var(--white); font-size: .88rem; font-family: 'Plus Jakarta Sans', sans-serif; outline: none; transition: border-color .2s, box-shadow .2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(37,99,190,.18); }
.fg select option { background: var(--navy2); }
.fg textarea { resize: vertical; min-height: 95px; }
.cf-sub { width: 100%; background: var(--accent); color: var(--navy); border-radius: 13px; padding: 1rem; font-size: .95rem; font-weight: 700; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: background .2s, transform .2s, box-shadow .2s; border: none; }
.cf-sub:hover { background: var(--accentH); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.3); }

/* ── FOOTER ── */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 2.2rem; text-align: center; }
footer p { color: var(--muted); font-size: .82rem; line-height: 1.8; }
.footer-logo { font-family:'Playfair Display',serif; font-size:1.4rem; font-weight:900; color:var(--white); margin-bottom:.5rem; }
.footer-logo em { color:var(--accent); font-style:normal; }

/* ── FLOATING WHATSAPP ── */
.wa-btn { position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 400; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 28px rgba(37,211,102,.45); animation: waF 3s ease-in-out infinite; transition: transform .25s, box-shadow .25s; }
.wa-btn:hover { transform: scale(1.12) !important; animation: none; box-shadow: 0 14px 40px rgba(37,211,102,.6); }
@keyframes waF { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .t-cards    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cd-grid    { grid-template-columns: 1fr; }
  .om-steps   { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-btn { display: none; }
  .hamburger  { display: flex; }
  #nav        { padding: .9rem 1.5rem; }
}
@media (max-width: 560px) {
  .courses-grid { grid-template-columns: 1fr; }
  .t-cards  { grid-template-columns: 1fr; }
  .om-steps { grid-template-columns: 1fr; }
  .sec      { padding: 4rem 1.4rem; }
}

/* ── TRUST STRIP ── */
.trust-sec { padding: 3.5rem 0; background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; }
.trust-label { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.trust-track-wrap { overflow: hidden; position: relative; }
.trust-track-wrap::before, .trust-track-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.trust-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--navy2), transparent); }
.trust-track-wrap::after  { right: 0; background: linear-gradient(270deg, var(--navy2), transparent); }
.trust-track { display: flex; gap: 1.2rem; width: max-content; animation: trustScroll 28s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
@keyframes trustScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.trust-logo {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 1.1rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
  min-width: 230px; flex-shrink: 0;
  transition: border-color .3s, transform .3s, background .3s;
}
.trust-logo:hover { border-color: rgba(245,166,35,.4); background: rgba(245,166,35,.05); transform: translateY(-3px); }
.tl-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.tl-green { color: #00b67a; font-size: 1rem; font-weight: 900; letter-spacing: .05em; }
.tl-orange { filter: none; }
.tl-name { font-size: .82rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.tl-sub  { font-size: .68rem; color: var(--muted); margin-top: .18rem; }


.tl-real-img {
  height: 46px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

/* ── WORKING HOURS ── */
.hours-sec { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.hours-header { text-align: center; margin-bottom: 3rem; }
.hours-header .sec-sub { margin: 0 auto; }

.hours-main {
  display: grid; grid-template-columns: 260px 1fr; gap: 3.5rem; align-items: center;
  margin-bottom: 2.5rem;
}

/* Clock panel */
.clock-panel { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.clock-face {
  position: relative; width: 200px; height: 200px;
}
.clock-ring {
  position: absolute; border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}
.ring1 {
  inset: -8px;
  border: 1px solid rgba(37,99,190,.25);
  animation-delay: 0s;
}
.ring2 {
  inset: -16px;
  border: 1px solid rgba(37,99,190,.1);
  animation-delay: 1s;
}
@keyframes ringPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.03)} }

.clock-svg { width: 200px; height: 200px; position: relative; z-index: 1; }

.live-time {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--accent);
  letter-spacing: .05em; line-height: 1;
}
.live-date { font-size: .8rem; color: var(--muted); }

.open-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1.2rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.1);
  font-size: .8rem; font-weight: 600; margin-top: .3rem;
  transition: all .5s ease;
}
.open-badge.is-open  { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.4); color: #34d399; }
.open-badge.is-closed{ background: rgba(239,68,68,.1);   border-color: rgba(239,68,68,.35);  color: #f87171; }
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  animation: badgeBlink 1.8s ease-in-out infinite;
}
.is-open  .badge-dot { background: #34d399; }
.is-closed .badge-dot{ background: #f87171; animation: none; }
@keyframes badgeBlink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* Days grid */
.days-grid { display: flex; flex-direction: column; gap: .75rem; }
.day-row {
  display: grid; grid-template-columns: 110px 1fr 120px 90px;
  align-items: center; gap: 1rem;
  padding: .7rem 1.1rem; border-radius: 14px;
  background: var(--card); border: 1px solid var(--border);
  transition: all .3s;
}
.day-row.today    { border-color: var(--accent); background: rgba(245,166,35,.06); }
.day-row.closed   { opacity: .45; }
.day-name { font-size: .85rem; font-weight: 600; color: var(--white); }
.day-row.today .day-name { color: var(--accent); }

.day-bar-wrap { width: 100%; }
.day-bar {
  height: 6px; background: var(--border); border-radius: 100px; overflow: hidden;
  position: relative;
}
.closed-bar { background: rgba(239,68,68,.15); }
.day-fill {
  height: 100%; border-radius: 100px;
  background: linear-gradient(90deg, var(--mid), var(--accent));
  width: 0%; transition: width 1.2s cubic-bezier(.25,1,.5,1);
}
.day-row.today .day-fill { background: linear-gradient(90deg, #10b981, var(--accent)); }

.day-hours { font-size: .78rem; color: var(--muted); text-align: right; white-space: nowrap; }
.day-row.today .day-hours { color: var(--accent); font-weight: 600; }
.day-status { font-size: .7rem; font-weight: 700; text-align: right; white-space: nowrap; }

/* Next open strip */
.next-open {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(37,99,190,.08); border: 1px solid rgba(37,99,190,.22);
  border-radius: 16px; padding: 1.1rem 1.8rem;
  font-size: .9rem; color: var(--muted);
}
.no-icon { font-size: 1.6rem; flex-shrink: 0; }
.no-text strong { color: var(--accent); }

@media (max-width: 860px) {
  .hours-main { grid-template-columns: 1fr; justify-items: center; }
  .day-row { grid-template-columns: 90px 1fr 90px; }
  .day-status { display: none; }
}
@media (max-width: 480px) {
  .day-row { grid-template-columns: 80px 1fr; }
  .day-hours { display: none; }
}

/* ── AI NEWS SECTION ── */
#news { background: var(--navy); border-top: 1px solid var(--border); }
.news-layout { display: grid; grid-template-columns: 340px 1fr; gap: 2.5rem; align-items: start; }

/* Generator panel */
.news-gen {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 22px; padding: 1.8rem; position: sticky; top: 90px;
}
.news-gen-title {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  margin-bottom: .3rem;
}
.news-gen-sub { font-size: .78rem; color: var(--muted); margin-bottom: 1.4rem; line-height: 1.55; }

.news-category-btns { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; }
.ncat {
  padding: .38rem .85rem; border-radius: 100px; font-size: .72rem; font-weight: 600;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all .2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.ncat:hover { border-color: var(--accent); color: var(--accent); }
.ncat.active { background: var(--accent); border-color: var(--accent); color: var(--navy); }

.news-topic-input {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 12px; padding: .82rem 1rem; color: var(--white);
  font-size: .88rem; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; resize: vertical; min-height: 80px;
  transition: border-color .2s, box-shadow .2s; margin-bottom: 1rem;
}
.news-topic-input:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(37,99,190,.18); }
.news-topic-input::placeholder { color: var(--muted); }

.news-gen-btn {
  width: 100%; background: var(--accent); color: var(--navy);
  border: none; border-radius: 13px; padding: .92rem;
  font-size: .9rem; font-weight: 700; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s; display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.news-gen-btn:hover:not(:disabled) { background: var(--accentH); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.3); }
.news-gen-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.gen-spinner {
  width: 16px; height: 16px; border: 2px solid rgba(7,15,30,.3);
  border-top-color: var(--navy); border-radius: 50%;
  animation: genSpin .7s linear infinite; display: none;
}
.news-gen-btn.loading .gen-spinner { display: block; }
.news-gen-btn.loading .gen-btn-text { display: none; }

@keyframes genSpin { to { transform: rotate(360deg); } }

/* News feed */
.news-feed { display: flex; flex-direction: column; gap: 1.3rem; }
.news-empty {
  background: rgba(255,255,255,.03); border: 1px dashed var(--border);
  border-radius: 18px; padding: 3rem 2rem; text-align: center;
}
.news-empty .ne-icon { font-size: 3rem; margin-bottom: 1rem; }
.news-empty p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

.news-card {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.6rem; position: relative; overflow: hidden;
  animation: newsIn .5s ease both;
  transition: border-color .3s, transform .3s;
}
.news-card:hover { border-color: rgba(37,99,190,.4); transform: translateY(-3px); }
.news-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 18px 18px 0 0;
}
.news-card[data-cat="intake"]::before        { background: linear-gradient(90deg,#f5a623,#fbbf24); }
.news-card[data-cat="success"]::before       { background: linear-gradient(90deg,#10b981,#34d399); }
.news-card[data-cat="courses"]::before       { background: linear-gradient(90deg,#3b82f6,#60a5fa); }
.news-card[data-cat="tips"]::before          { background: linear-gradient(90deg,#7c3aed,#a78bfa); }

@keyframes newsIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

.nc-meta { display: flex; align-items: center; gap: .7rem; margin-bottom: .9rem; }
.nc-badge {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: 100px;
}
.nc-badge.intake  { background: rgba(245,166,35,.15); color: var(--accent); }
.nc-badge.success { background: rgba(16,185,129,.12); color: #34d399; }
.nc-badge.courses { background: rgba(59,130,246,.12); color: #60a5fa; }
.nc-badge.tips    { background: rgba(124,58,237,.12); color: #a78bfa; }

.nc-date { font-size: .72rem; color: var(--muted); margin-left: auto; }
.nc-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: .65rem; line-height: 1.35; }
.nc-body { font-size: .85rem; color: var(--muted); line-height: 1.75; }
.nc-share {
  margin-top: 1rem; display: flex; gap: .5rem; align-items: center;
  padding-top: .9rem; border-top: 1px solid var(--border);
}
.nc-share-btn {
  font-size: .72rem; font-weight: 600; padding: .32rem .85rem; border-radius: 100px;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: all .2s;
}
.nc-share-btn:hover { border-color: var(--accent); color: var(--accent); }
.nc-del-btn {
  margin-left: auto; font-size: .72rem; font-weight: 600; padding: .32rem .85rem;
  border-radius: 100px; border: 1px solid rgba(239,68,68,.25);
  background: transparent; color: rgba(239,68,68,.6);
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; transition: all .2s;
}
.nc-del-btn:hover { border-color: #ef4444; color: #ef4444; }

@media (max-width: 900px) { .news-layout { grid-template-columns: 1fr; } .news-gen { position: static; } }

/* ── LIKES ── */
.nc-like-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .32rem 1rem; border-radius: 100px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); font-size: .78rem; font-weight: 600;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s; user-select: none;
}
.nc-like-btn:hover { border-color: #ec4899; color: #ec4899; }
.nc-like-btn.liked  {
  background: rgba(236,72,153,.1); border-color: rgba(236,72,153,.5);
  color: #ec4899;
}
.nc-like-btn .lk-heart { font-size: 1rem; transition: transform .2s; }
.nc-like-btn.liked .lk-heart { transform: scale(1.35); }
.nc-like-btn .lk-count { font-family: 'Playfair Display', serif; font-size: .85rem; font-weight: 700; }

/* Admin like list modal */
.like-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(7,15,30,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.like-modal-overlay.open { display: flex; }
.like-modal {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 22px; padding: 2rem; width: 90%; max-width: 460px;
  max-height: 80vh; overflow-y: auto; position: relative;
}
.like-modal h3 { font-family:'Playfair Display',serif; font-size:1.3rem; margin-bottom:.3rem; }
.like-modal-sub { font-size:.78rem; color:var(--muted); margin-bottom:1.5rem; }
.like-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .9rem; color: var(--muted);
  transition: all .2s;
}
.like-modal-close:hover { background: rgba(239,68,68,.1); color: #ef4444; border-color: #ef4444; }
.like-row {
  display: flex; align-items: center; gap: .9rem;
  padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .85rem;
}
.like-row:last-child { border-bottom: none; }
.like-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mid), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
}
.like-name { font-weight: 600; color: var(--white); }
.like-time { font-size: .72rem; color: var(--muted); margin-top: .1rem; }
.like-empty { text-align:center; color:var(--muted); font-size:.88rem; padding:2rem 0; }

/* Admin password prompt */
.admin-prompt {
  display: none; position: fixed; inset: 0; z-index: 900;
  background: rgba(7,15,30,.9); backdrop-filter: blur(10px);
  align-items: center; justify-content: center;
}
.admin-prompt.open { display: flex; }
.admin-box {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; width: 90%; max-width: 360px;
}
.admin-box h4 { font-family:'Playfair Display',serif; font-size:1.2rem; margin-bottom:.3rem; }
.admin-box p  { font-size:.82rem; color:var(--muted); margin-bottom:1.2rem; }
.admin-pin-input {
  width:100%; background:rgba(255,255,255,.06); border:1px solid var(--border);
  border-radius:12px; padding:.82rem 1rem; color:var(--white);
  font-size:1.1rem; letter-spacing:.3em; font-family:'Plus Jakarta Sans',sans-serif;
  outline:none; text-align:center; margin-bottom:1rem;
  transition: border-color .2s;
}
.admin-pin-input:focus { border-color:var(--mid); }
.admin-pin-submit {
  width:100%; background:var(--accent); color:var(--navy);
  border:none; border-radius:12px; padding:.9rem;
  font-size:.9rem; font-weight:700; cursor:pointer;
  font-family:'Plus Jakarta Sans',sans-serif; transition:all .2s;
}
.admin-pin-submit:hover { background:var(--accentH); }
.admin-pin-err { color:#ef4444; font-size:.78rem; text-align:center; margin-top:.5rem; display:none; }

/* ═══════════════════════════════════════════════
   MOBILE-FIRST PREMIUM OVERHAUL — BELVANS 2026
═══════════════════════════════════════════════ */

/* ── Base touch improvements ── */
button, a, input, textarea, select {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
input, textarea, select {
  font-size: 16px !important; /* prevent iOS zoom */
}

/* ── Smooth font rendering ── */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Wrap safe padding ── */
.wrap { padding: 0 1rem; }
@media (min-width: 640px) { .wrap { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .wrap { padding: 0 2rem; } }

/* ── Section padding tighter on mobile ── */
@media (max-width: 768px) {
  .sec { padding: 3rem 1.1rem; }
  h2   { font-size: clamp(1.5rem, 6vw, 2.4rem); }
}
@media (max-width: 480px) {
  .sec { padding: 2.4rem 1rem; }
}

/* ── NAV on mobile ── */
@media (max-width: 960px) {
  #nav { padding: 0 1rem; }
  .nav-logo { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 1.3rem; gap: 0; }
  .nav-logo-img { height: 34px; }
}

/* ── HERO mobile ── */
@media (max-width: 768px) {
  #hero { min-height: 100svh; padding: 6rem 1rem 3rem; }
  .hero-inner { gap: 2rem; flex-direction: column; padding: 0; }
  h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .h-desc { font-size: .88rem; }
  .h-btns { flex-direction: column; gap: .7rem; }
  .btn-gold, .btn-ghost { width: 100%; justify-content: center; padding: 1rem; font-size: .95rem; border-radius: 14px; }
  .h-stats { gap: 1rem; justify-content: flex-start; }
  .hs .num { font-size: 1.4rem; }
  .hs .lbl { font-size: .62rem; }
  .grad-stat .num { font-size: 1.4rem; }
  .hero-card { width: 100%; padding: 1.2rem; }
  .pill-cloud { gap: .4rem; }
  .cpill { font-size: .65rem; padding: .3rem .7rem; }
  .hc-year { font-size: 1.6rem; }
}

/* ── ABOUT grid collapse ── */
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .astat-list  { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .astat { padding: .9rem; }
  .astat-val { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .astat-list { grid-template-columns: 1fr 1fr; }
}

/* ── HOURS mobile ── */
@media (max-width: 768px) {
  .hours-main { grid-template-columns: 1fr !important; gap: 2rem; justify-items: center; }
  .clock-face { width: 160px; height: 160px; }
  .clock-svg  { width: 160px; height: 160px; }
  .live-time  { font-size: 1.5rem; }
  .days-grid  { width: 100%; }
  .day-row    { grid-template-columns: 90px 1fr 80px !important; gap: .5rem; padding: .55rem .7rem; }
  .day-name   { font-size: .78rem; }
  .day-hours  { font-size: .7rem; }
  .day-status { display: none; }
  .next-open  { flex-direction: column; gap: .6rem; text-align: center; padding: 1rem; }
  .no-icon    { font-size: 1.3rem; }
  .no-text    { font-size: .82rem; }
}
@media (max-width: 480px) {
  .day-row { grid-template-columns: 80px 1fr !important; }
  .day-hours { display: none; }
}

/* ── NEWS section mobile ── */
@media (max-width: 768px) {
  .news-layout { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .news-gen { position: static !important; }
  .news-category-btns { gap: .35rem; }
  .ncat { font-size: .68rem; padding: .32rem .7rem; }
  .news-gen-title { font-size: 1rem; }
}

/* ── COURSES grid collapse ── */
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 560px) {
  .courses-grid { grid-template-columns: 1fr !important; }
  .cc { padding: 1.1rem; }
  .cc-name { font-size: .9rem; }
}

/* ── PAYMENT PLANS collapse ── */
@media (max-width: 900px) {
  .cd-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem; }
}
@media (max-width: 560px) {
  .cd-grid { grid-template-columns: 1fr !important; }
  .plan { padding: 1.2rem; }
}

/* ── TUITION FEES mobile ── */
@media (max-width: 768px) {
  table   { font-size: .8rem; }
  th, td  { padding: .5rem .6rem; }
}
@media (max-width: 480px) {
  table { font-size: .72rem; }
  th, td { padding: .4rem .4rem; }
}

/* ── CONTACT form mobile ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .cinfo-list { gap: .9rem; }
  .cform { padding: 1.2rem; }
  .ci-val { font-size: .82rem; }
}
@media (max-width: 480px) {
  .cform input, .cform select, .cform textarea { padding: .75rem .9rem; }
}

/* ── TRUST STRIP mobile ── */
@media (max-width: 768px) {
  .trust-track-wrap { overflow: hidden; }
  .trust-logo { min-width: 120px; padding: .6rem .9rem; }
  .tl-name { font-size: .72rem; }
  .tl-sub  { font-size: .6rem; }
  .tl-real-img { height: 36px; }
}

/* ── FOOTER mobile ── */
@media (max-width: 768px) {
  footer { padding: 2rem 1rem; text-align: center; }
  .footer-logo { font-size: 1.6rem; }
  footer p { font-size: .8rem; }
}

/* ── ADMIN modals mobile ── */
@media (max-width: 480px) {
  .like-modal, .admin-box { padding: 1.2rem; width: 95%; border-radius: 16px; }
  .like-modal h3 { font-size: 1.1rem; }
}

/* ── Like buttons on small screens ── */
@media (max-width: 480px) {
  .nc-share { flex-wrap: wrap; gap: .35rem; }
  .nc-like-btn, .nc-share-btn, .nc-del-btn { font-size: .68rem; padding: .3rem .7rem; }
}

/* ── Services section (new) ── */
.services-sec { background: var(--navy2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.services-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: clamp(80px,15vw,180px); font-weight: 900;
  color: rgba(255,255,255,.02); white-space: nowrap; pointer-events: none;
  font-family: 'Playfair Display', serif; user-select: none;
}
.services-intro { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  position: relative; z-index: 1;
  margin-bottom: 3rem;
}
.svc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.25,1,.5,1), border-color .3s, box-shadow .35s;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,.07) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(245,166,35,.4); box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(245,166,35,.15); }
.svc-card:hover::before { opacity: 1; }
.svc-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(37,99,190,.1));
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  transition: transform .3s, background .3s;
}
.svc-card:hover .svc-icon-wrap { transform: scale(1.1) rotate(-5deg); background: linear-gradient(135deg, rgba(245,166,35,.25), rgba(37,99,190,.15)); }
.svc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .45rem; color: var(--white); }
.svc-desc  { font-size: .83rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.svc-price {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 600;
  color: var(--accent); background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.2);
  padding: .3rem .85rem; border-radius: 100px;
}
.svc-corner-deco {
  position: absolute; bottom: -10px; right: -10px;
  width: 80px; height: 80px;
  border: 2px solid rgba(245,166,35,.07);
  border-radius: 50%;
  pointer-events: none;
}
/* Discount banner */
.discount-banner {
  background: linear-gradient(135deg, rgba(245,166,35,.12), rgba(37,99,190,.08));
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 18px;
  padding: 1.4rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  position: relative; overflow: hidden; z-index: 1;
}
.discount-banner::before {
  content: '5%';
  position: absolute; right: -15px; top: -10px;
  font-size: 120px; font-weight: 900;
  color: rgba(245,166,35,.06);
  font-family: 'Playfair Display', serif;
  line-height: 1; pointer-events: none;
}
.discount-badge {
  background: var(--accent); color: var(--navy);
  font-size: 2rem; font-weight: 900;
  padding: .6rem 1.2rem; border-radius: 12px;
  line-height: 1; flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  animation: discPulse 2s ease-in-out infinite;
}
@keyframes discPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
.discount-text { flex: 1; }
.discount-text strong { display: block; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.discount-text span   { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* Portfolio / CV signup form */
.portfolio-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.2rem;
  position: relative; overflow: hidden; z-index: 1;
  margin-top: 2rem;
}
.portfolio-form-wrap::after {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border: 1px solid rgba(245,166,35,.08);
  border-radius: 50%; pointer-events: none;
}
.pf-header { margin-bottom: 1.8rem; }
.pf-title { font-size: 1.3rem; font-weight: 700; margin-bottom: .4rem; }
.pf-sub   { font-size: .85rem; color: var(--muted); line-height: 1.65; }
.pf-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.pf-field { display: flex; flex-direction: column; gap: .35rem; }
.pf-field.full { grid-column: 1 / -1; }
.pf-field label { font-size: .75rem; font-weight: 600; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.pf-input {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 12px; padding: .82rem 1rem; color: var(--white);
  font-size: .9rem; font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.pf-input::placeholder { color: rgba(122,150,194,.5); }
.pf-input:focus { border-color: var(--mid); box-shadow: 0 0 0 3px rgba(37,99,190,.18); }
.pf-input option { background: #0c1a32; color: var(--white); }
.pf-submit {
  width: 100%; padding: 1rem; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accentH));
  color: var(--navy); font-size: .95rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: transform .2s, box-shadow .2s; margin-top: .5rem;
  border: none; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer;
}
.pf-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(245,166,35,.35); }
.pf-submit:active { transform: translateY(0); }
.pf-note { font-size: .73rem; color: var(--muted); text-align: center; margin-top: .8rem; line-height: 1.55; }

@media (max-width: 640px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-field.full { grid-column: 1; }
  .discount-banner { padding: 1rem 1.2rem; gap: 1rem; }
  .discount-badge { font-size: 1.5rem; padding: .5rem .9rem; }
  .discount-text strong { font-size: .9rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .svc-card { padding: 1.3rem 1.2rem; }
  .portfolio-form-wrap { padding: 1.4rem 1.1rem; border-radius: 18px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Animated floating particle on services cards */
.svc-float {
  position: absolute; top: 1rem; right: 1rem;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: svcFloat 3s ease-in-out infinite;
  opacity: .5;
}
@keyframes svcFloat {
  0%,100%{ transform: translateY(0) scale(1); opacity: .5; }
  50%    { transform: translateY(-8px) scale(1.3); opacity: .9; }
}


/* ── SECURITY: honeypot hidden from humans ── */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; tab-index: -1; }

/* ── FOOTER SOCIALS + LEGAL ── */
.footer-socials {
  display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.4rem 0 1rem;
  justify-content: center;
}
.fsoc-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: .8rem; font-weight: 500; transition: all .25s;
  text-decoration: none;
}
.fsoc-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(245,166,35,.07); transform: translateY(-2px); }
.footer-legal {
  margin-top: .8rem; font-size: .72rem; color: rgba(122,150,194,.6);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center;
}
.legal-link {
  font-size: .72rem; color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer; background: transparent;
  border: none; font-family: inherit; padding: 0; transition: color .2s;
}
.legal-link:hover { color: var(--accent); }

/* ── LEGAL MODAL ── */
.legal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,15,30,.92); backdrop-filter: blur(12px);
  align-items: flex-start; justify-content: center;
  padding: 2rem 1rem; overflow-y: auto;
}
.legal-overlay.open { display: flex; }
.legal-modal {
  background: var(--navy2); border: 1px solid var(--border);
  border-radius: 24px; padding: 2.5rem; width: 100%; max-width: 720px;
  position: relative; margin: auto;
  animation: fadeIn .3s ease;
}
.legal-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  color: var(--muted); border-radius: 50%; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; transition: all .2s;
}
.legal-modal-close:hover { background: rgba(239,68,68,.15); color: #f87171; border-color: #ef4444; }
.legal-modal h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: .4rem; }
.legal-modal .legal-date { font-size: .75rem; color: var(--muted); margin-bottom: 1.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.legal-section { margin-bottom: 1.6rem; }
.legal-section h3 { font-size: .9rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .6rem; }
.legal-section p, .legal-section li { font-size: .83rem; color: var(--muted); line-height: 1.75; }
.legal-section ul { padding-left: 1.2rem; margin-top: .4rem; }
.legal-section li { margin-bottom: .35rem; }
.legal-section strong { color: var(--white); font-weight: 600; }
.legal-footer-note { font-size: .75rem; color: rgba(122,150,194,.5); margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); text-align: center; }


/* ── 3D EDUCATION CANVAS ── */
#edu3d-canvas {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  pointer-events: none; z-index: 1;
  opacity: .85;
}
@media (max-width: 900px) { #edu3d-canvas { display: none; } }


/* ── PROGRAMS SECTION ── */
#programs { background: var(--navy2); border-top: 1px solid var(--border); }
.prog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
@media (max-width: 860px) { .prog-grid { grid-template-columns: 1fr; } }

.prog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }

.prog-img {
  width: 100%; max-height: 260px; object-fit: cover;
  display: block;
}

.prog-body { padding: 1.4rem 1.6rem 1.6rem; }
.prog-badge {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: rgba(245,166,35,.15); color: var(--accent);
  border: 1px solid rgba(245,166,35,.3);
  padding: .2rem .7rem; border-radius: 100px; margin-bottom: .7rem;
}
.prog-title { font-size: 1.15rem; font-weight: 700; margin-bottom: .35rem; }
.prog-sub   { font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ── ACCORDION (shared by Programs + Secretarial) ── */
.acc-toggle {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 12px;
  padding: .8rem 1.1rem;
  font-size: .88rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .25s, border-color .25s;
  margin-top: .8rem;
}
.acc-toggle:hover { background: rgba(255,255,255,.09); border-color: rgba(245,166,35,.4); }
.acc-toggle.open  { border-color: var(--accent); background: rgba(245,166,35,.07); border-radius: 12px 12px 0 0; }
.acc-icon { font-size: 1.1rem; transition: transform .35s cubic-bezier(.4,0,.2,1); line-height:1; }
.acc-toggle.open .acc-icon { transform: rotate(45deg); }

.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-sizing: border-box; /* keep the border inside the box max-height animates, so it matches scrollHeight */
}
.acc-body.open { opacity: 1; }
.acc-inner { padding: 1.3rem 1.4rem; margin: 0; } /* all spacing lives on the inner wrapper, not .acc-body */

/* Module list inside accordion */
.mod-semester { margin-bottom: 1.1rem; }
.mod-semester h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .55rem;
}
.mod-list { list-style: none; padding: 0; }
.mod-list li {
  font-size: .82rem; color: var(--muted);
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: .5rem;
}
.mod-list li::before { content: '›'; color: var(--accent); font-weight: 700; }
.mod-list li:last-child { border-bottom: none; }

/* short course tag */
.short-tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(37,99,190,.25); color: #93c5fd;
  border: 1px solid rgba(37,99,190,.4);
  padding: .15rem .55rem; border-radius: 100px;
  vertical-align: middle; margin-left: .5rem;
}

/* Secretarial services section overrides */
.svc-main-img {
  width: 100%; border-radius: 16px; margin: 1.4rem 0;
  object-fit: cover; max-height: 340px;
  border: 1px solid var(--border);
}
.svc-main-list {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .8rem; list-style: none; padding: 0; margin-bottom: 1.2rem;
}
.svc-main-list li {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: .75rem 1rem;
  font-size: .85rem; font-weight: 500; color: var(--white);
  display: flex; align-items: center; gap: .5rem;
}
.svc-main-list li span { font-size: 1.1rem; }

/* More-services list inside accordion */
.more-svc-list { list-style: none; padding: 0; }
.more-svc-list li {
  font-size: .83rem; color: var(--muted);
  padding: .4rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: center; gap: .5rem;
}
.more-svc-list li::before { content: '›'; color: var(--accent); font-weight: 700; }
.more-svc-list li:last-child { border-bottom: none; }

/* Mobile tweaks */
@media (max-width: 600px) {
  .prog-body { padding: 1rem 1.1rem 1.2rem; }
  .acc-toggle { font-size: .82rem; padding: .7rem .9rem; }
  .acc-inner  { padding: 1rem 1rem; }
  .svc-main-list { grid-template-columns: 1fr; }
}


/* ── HOME ENTRANCE ANIMATION ── */
@keyframes fadeSlideUp {
  0%   { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.home-entrance .hero-inner,
.home-entrance h1,
.home-entrance .h-desc,
.home-entrance .h-btns,
.home-entrance .h-stats {
  animation: fadeSlideUp .8s cubic-bezier(.16,1,.3,1) both;
}
.home-entrance .h-desc  { animation-delay: .1s; }
.home-entrance .h-btns  { animation-delay: .2s; }
.home-entrance .h-stats { animation-delay: .3s; }


/* ── PROGRAMS (NEW) ── */
.prog-filter-tabs { display:flex; flex-wrap:wrap; gap:.5rem; margin-bottom:2rem; }
.pft {
  padding:.5rem 1.2rem; border-radius:100px; font-size:.78rem; font-weight:600;
  border:1px solid var(--border); color:var(--muted); cursor:pointer;
  transition: all .2s; background:transparent; font-family:inherit;
}
.pft:hover { border-color:var(--bright); color:var(--white); }
.pft.active { background:var(--accent); border-color:var(--accent); color:var(--navy); }

.prog-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem;
}
.prog-section-head {
  padding:1.2rem 1.5rem;
  background:rgba(37,99,190,.07);
  border:1px solid rgba(37,99,190,.2);
  border-radius:16px;
}

.prog-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:1.4rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position:relative; overflow:hidden;
}
.prog-card:hover { border-color:rgba(37,99,190,.55); transform:translateY(-4px); box-shadow:0 18px 48px rgba(0,0,0,.4); }
.prog-card.open { border-color:var(--accent); }
.prog-icon { font-size:2rem; margin-bottom:.7rem; }
.prog-type-tag {
  display:inline-block; font-size:.62rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:var(--accent); background:rgba(245,166,35,.1);
  border:1px solid rgba(245,166,35,.22); border-radius:100px;
  padding:.22rem .65rem; margin-bottom:.55rem;
}
.corp-tag { color:#60a5fa; background:rgba(37,99,190,.12); border-color:rgba(37,99,190,.3); }
.prog-name { font-weight:700; font-size:.97rem; line-height:1.35; margin-bottom:.4rem; }
.prog-abbr { display:inline-block; background:rgba(37,99,190,.15); border-radius:6px; padding:.1rem .5rem; font-size:.72rem; font-weight:700; color:#7cb3ff; margin-left:.3rem; vertical-align:middle; }
.prog-meta { font-size:.74rem; color:var(--muted); margin-bottom:.9rem; }

.prog-toggle {
  width:100%; text-align:left; padding:.7rem 1rem; border-radius:10px;
  background:rgba(255,255,255,.04); border:1px solid var(--border);
  color:var(--muted); font-size:.8rem; font-weight:600; cursor:pointer;
  display:flex; align-items:center; gap:.4rem; transition: all .2s; font-family:inherit;
}
.prog-toggle:hover { border-color:var(--accent); color:var(--white); }
.pt-icon { font-size:1rem; transition:transform .3s; }
.prog-card.open .pt-icon { transform:rotate(90deg); }

.prog-detail {
  display:none; margin-top:1rem;
  animation: sdDown .35s ease both;
}
.prog-card.open .prog-detail { display:block; }

.prog-cols { display:grid; grid-template-columns:1fr 1fr 1fr; gap:1rem; margin-bottom:1rem; }
.prog-col h4 { font-size:.67rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin-bottom:.6rem; }
.prog-col ul { padding:0; }
.prog-col ul li { font-size:.78rem; color:var(--muted); padding:.25rem 0; border-bottom:1px solid rgba(255,255,255,.04); display:flex; align-items:flex-start; gap:.4rem; line-height:1.5; }
.prog-col ul li::before { content:'›'; color:var(--accent); flex-shrink:0; }

.career-col h4 { color:#60a5fa; }
.career-roles { display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:.6rem; }
.crole { background:rgba(96,165,250,.1); border:1px solid rgba(96,165,250,.25); color:#93c5fd; font-size:.7rem; font-weight:500; padding:.22rem .6rem; border-radius:100px; }
.career-workplaces { font-size:.75rem; color:var(--muted); margin-bottom:.35rem; line-height:1.5; }
.career-salary { font-size:.75rem; color:var(--muted); }
.career-salary strong { color:var(--accent); }

.prog-fee-box {
  display:flex; flex-wrap:wrap; gap:.6rem; align-items:center;
  background:rgba(245,166,35,.06); border:1px solid rgba(245,166,35,.18);
  border-radius:12px; padding:.8rem 1rem; font-size:.78rem; color:var(--muted); margin-top:.5rem;
}
.prog-fee-box strong { color:var(--accent); }
.prog-enrol-btn {
  margin-left:auto; background:var(--accent); color:var(--navy);
  padding:.5rem 1.1rem; border-radius:100px; font-size:.78rem; font-weight:700;
  text-decoration:none; transition: background .2s, transform .2s;
  white-space:nowrap;
}
.prog-enrol-btn:hover { background:var(--accentH); transform:translateY(-2px); }

/* Computer course cards */
.comp-card {
  background:var(--card); border:1px solid var(--border); border-radius:16px;
  padding:1.2rem; text-align:center;
  transition:border-color .3s, transform .3s;
}
.comp-card:hover { border-color:rgba(37,99,190,.5); transform:translateY(-4px); }
.comp-icon { font-size:1.8rem; margin-bottom:.5rem; }
.comp-name { font-weight:700; font-size:.88rem; margin-bottom:.3rem; }
.comp-dur { font-size:.7rem; color:var(--muted); margin-bottom:.5rem; }
.comp-fee { font-family:'Playfair Display',serif; font-size:1.6rem; font-weight:900; color:var(--accent); margin-bottom:.7rem; }
.comp-enrol { display:block; background:rgba(37,99,190,.18); border:1px solid rgba(37,99,190,.3); color:#7cb3ff; padding:.45rem; border-radius:8px; font-size:.75rem; font-weight:600; text-decoration:none; transition:all .2s; }
.comp-enrol:hover { background:var(--mid); color:var(--white); }

/* Mobile prog-grid */
@media (max-width:900px) { .prog-grid { grid-template-columns:1fr 1fr; } .prog-cols { grid-template-columns:1fr 1fr; } .career-col { grid-column:1/-1; } }
@media (max-width:560px) { .prog-grid { grid-template-columns:1fr; } .prog-cols { grid-template-columns:1fr; } }

/* ── PIN LOCK ── */
.pin-lock-icon { font-size:2.8rem; text-align:center; }
.pin-input-row { display:flex; gap:.7rem; align-items:center; margin-top:1rem; }

/* ── CALENDAR SECTION ── */
.cal-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1rem; margin-top:2rem; }
.cal-month { background:var(--card); border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.cal-month-head { background:rgba(37,99,190,.2); padding:.7rem 1rem; font-weight:700; font-size:.82rem; color:var(--accent); letter-spacing:.08em; text-transform:uppercase; }
.cal-event { display:flex; gap:.8rem; padding:.6rem 1rem; border-bottom:1px solid rgba(255,255,255,.04); align-items:flex-start; }
.cal-event:last-child { border-bottom:none; }
.cal-date { font-size:.68rem; font-weight:700; color:var(--accent); min-width:90px; flex-shrink:0; }
.cal-act { font-size:.76rem; color:var(--muted); line-height:1.45; }
.cal-act.bold { color:var(--white); font-weight:600; }


.more-svc-list li { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.svc-name { flex:1; font-size:.82rem; color:var(--muted); }
.svc-price { font-size:.78rem; font-weight:600; color:var(--accent); white-space:nowrap; display:none; }


/* ── INTAKE 2026 BANNER ── */
.intake-banner-2026 {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, var(--accent), #ff9500);
  color: var(--navy); font-size: .82rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .6rem 1.4rem; border-radius: 100px;
  margin-bottom: 1rem; box-shadow: 0 6px 28px rgba(245,166,35,.4);
  animation: fUp .6s ease both;
}

/* ── HRDC LEVY TAG ── */
.hrdc-levy-tag {
  display: flex; align-items: center; gap: .7rem;
  background: linear-gradient(135deg, rgba(245,166,35,.18), rgba(255,102,0,.12));
  border: 1.5px solid rgba(245,166,35,.5); border-radius: 16px;
  padding: 1.1rem 1.4rem; margin-bottom: 1rem;
  font-size: .92rem; font-weight: 700; color: var(--accent);
  line-height: 1.4; box-shadow: 0 0 24px rgba(245,166,35,.12);
}
.hrdc-lightning { font-size: 1.4rem; flex-shrink: 0; }

/* ── PROG ICON PHOTO ── */
.prog-icon-photo {
  width: 56px; height: 56px; border-radius: 12px; overflow: hidden;
  margin-bottom: .9rem; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}
.prog-icon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── COMP ICON PHOTO ── */
.comp-icon-photo { width: 100%; height: 65px; border-radius: 8px; overflow: hidden; margin-bottom: .7rem; }
.comp-icon-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── COMP CARD SQUARE ── */
.comp-card[style*="aspect-ratio"] { overflow: hidden; }

/* ── FNB PAYMENT BOX ── */
.fnb-box {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, rgba(0,93,170,.12), rgba(0,93,170,.04));
  border: 1px solid rgba(0,93,170,.35); border-radius: 22px;
  padding: 2rem 2.2rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.fnb-logo { width: 70px; height: 70px; border-radius: 50%; background: rgba(0,93,170,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fnb-content h3 { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; margin-bottom:.4rem; }
.fnb-content p  { font-size:.87rem; color:var(--muted); line-height:1.65; max-width:480px; }

/* ── HERO RIGHT COL ── */
.hero-right-col { display:flex; flex-direction:column; gap:1.5rem; align-items:center; justify-content:center; }
@media (max-width:900px) { .hero-right-col { gap:1rem; } }


/* ── COMPACT ENROLLMENT FORM ── */
.cform .fg { margin-bottom: .65rem; }
.cform .fg label { font-size: .68rem; margin-bottom: .3rem; }
.cform input, .cform select, .cform textarea {
  padding: .5rem .75rem; font-size: .82rem; border-radius: 8px;
}
.cform textarea { min-height: 70px; }
.cform .cf-submit { padding: .65rem 1.4rem; font-size: .84rem; margin-top: .5rem; }


/* ══════════════════════════════════════════════
   MULTI-PAGE RESTRUCTURE — added for academics.html / services.html
══════════════════════════════════════════════ */

/* Page header banner used on internal pages (academics, services) in place of full hero */
.page-header-sec { padding-top: 7.5rem; }

/* Nav active link indicator */
.nav-links a.nav-link-active { color: var(--accent); }
.nav-links a.nav-link-active::after { width: 100%; }

/* ACADEMIC PROGRAMS — credit-bearing BQA Certificates get a prominent grid with larger cards */
.academic-programs { padding-top: 1rem; }
.academic-programs .prog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.academic-programs .prog-card {
  padding: 2rem 1.8rem;
}
@media (max-width: 900px) { .academic-programs .prog-grid { grid-template-columns: 1fr; } }

/* SHORT COURSES — non-credit-bearing corporate + computer courses, visually separated */
.short-courses {
  background: var(--navy2, #101c33);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.short-courses .prog-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .short-courses .prog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .short-courses .prog-grid { grid-template-columns: 1fr; } }

/* GROUPED SERVICES ACCORDION (native details/summary) */
.svc-groups-note {
  font-size: .72rem; color: var(--muted); margin-bottom: 1rem;
  padding: .5rem .7rem; background: rgba(245,166,35,.06);
  border-radius: 8px; border-left: 3px solid var(--accent);
}
.svc-group {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; margin-bottom: .7rem; overflow: hidden;
}
.svc-group summary {
  cursor: pointer; list-style: none; padding: .9rem 1.2rem;
  font-weight: 600; font-size: .88rem; color: var(--white, #eef2ff);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .2s;
}
.svc-group summary::-webkit-details-marker { display: none; }
.svc-group summary::after {
  content: '+'; color: var(--accent); font-size: 1.1rem; font-weight: 700; margin-left: .5rem;
}
.svc-group[open] summary::after { content: '−'; }
.svc-group summary:hover { background: rgba(245,166,35,.06); }
.svc-group-count { color: var(--muted); font-weight: 400; font-size: .78rem; margin-left: .3rem; }
.svc-group .more-svc-list { padding: 0 1.2rem 1rem; margin: 0; }
