/* =============================================
   SEAL — Course Pages Shared CSS
   ============================================= */

/* ===== PAGE HERO ===== */
.course-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, #5a2899 100%);
}
.course-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.ch-glow {
  position: absolute; top: -120px; right: -120px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 68%);
  animation: glowPulse 5s ease-in-out infinite; pointer-events: none;
}
.ch-glow2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(90,40,153,.35) 0%, transparent 68%);
  animation: glowPulse 6s 1s ease-in-out infinite; pointer-events: none;
}
.ch-content { position: relative; z-index: 2; padding: 90px 0 80px; }
.ch-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15); border: 1px solid rgba(245,166,35,.4);
  color: var(--gold); font-size: 11.5px; font-weight: 700;
  padding: 6px 18px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 20px;
  animation: fadeUp .7s ease both;
}
.ch-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 18px;
  animation: fadeUp .8s .1s ease both;
}
.ch-title .gld { color: var(--gold); position: relative; }
.ch-title .gld::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 2px;
  animation: lineGrow 1s .9s ease both; transform-origin: left;
}
.ch-desc {
  color: rgba(255,255,255,.75); font-size: 15.5px;
  line-height: 1.78; max-width: 520px; margin-bottom: 30px;
  animation: fadeUp .8s .2s ease both;
}
.ch-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .3s ease both; }
.ch-stats { display: flex; gap: 30px; margin-top: 36px; flex-wrap: wrap; animation: fadeUp .8s .4s ease both; }
.ch-stat { position: relative; }
.ch-stat::after { content: ''; position: absolute; right: -15px; top: 10%; bottom: 10%; width: 1px; background: rgba(255,255,255,.2); }
.ch-stat:last-child::after { display: none; }
.ch-stat .num { font-size: 26px; font-weight: 900; color: var(--gold); }
.ch-stat .lbl { font-size: 11.5px; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 2px; }

/* Hero image col */
.ch-img-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
  animation: fadeInRight .9s .15s ease both;
}
.ch-img-main {
  width: 100%; max-width: 440px; border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.38);
  border: 4px solid rgba(255,255,255,.15);
  object-fit: cover;
}
.ch-img-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 12px 18px; box-shadow: 0 12px 34px rgba(0,0,0,.22);
  display: flex; align-items: center; gap: 10px;
  font-family: 'Satoshi', sans-serif; z-index: 2;
  animation: flt 3.5s ease-in-out infinite;
}
.ch-img-card.c1 { bottom: -20px; left: -10px; animation-delay: 0s; }
.ch-img-card.c2 { top: -20px; right: -10px; background: var(--purple); animation-delay: .6s; }
.ch-img-card .cic-icon { font-size: 22px; }
.ch-img-card .cic-lbl { font-size: 11px; color: var(--tmuted); }
.ch-img-card .cic-val { font-size: 14px; font-weight: 800; color: var(--purple); }
.ch-img-card.c2 .cic-lbl { color: rgba(255,255,255,.65); }
.ch-img-card.c2 .cic-val { color: #fff; }

/* ===== BREADCRUMB ===== */
.bc-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.bc-wrap a { color: rgba(255,255,255,.6); font-size: 13px; font-weight: 500; transition: color .3s; }
.bc-wrap a:hover { color: var(--gold); }
.bc-wrap span { color: rgba(255,255,255,.3); font-size: 13px; }
.bc-wrap .cur { color: var(--gold); font-size: 13px; font-weight: 600; }

/* ===== QUICK INFO STRIP ===== */
.qi-strip { background: #fff; border-bottom: 1px solid var(--border); padding: 0; }
.qi-inner { display: flex; flex-wrap: wrap; gap: 0; border-left: 1px solid var(--border); }
.qi-item {
  flex: 1; min-width: 160px; padding: 22px 24px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  transition: background .25s;
}
.qi-item:hover { background: var(--offwhite); }
.qi-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--purple), var(--purple-dark)); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.qi-lbl { font-size: 11.5px; color: var(--tmuted); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.qi-val { font-size: 14.5px; font-weight: 800; color: var(--purple); }

/* ===== OVERVIEW ===== */
.overview-sec { padding: 90px 0; background: #fff; }
.ov-card {
  background: var(--offwhite); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  height: 100%;
}
.ov-card:hover { background: #fff; box-shadow: 0 14px 40px rgba(61,26,120,.12); transform: translateY(-6px); border-color: rgba(61,26,120,.15); }
.ov-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; transition: transform .3s; }
.ov-card:hover .ov-icon { transform: scale(1.1) rotate(-5deg); }
.ov-title { font-size: 15px; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.ov-desc { font-size: 15px; color: var(--tmuted); line-height: 1.7; }

/* ===== CURRICULUM ===== */
.curr-sec { padding: 80px 0; background: var(--offwhite); }
.curr-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; margin-bottom: 12px;
  overflow: hidden; transition: border-color .3s;
}
.curr-item.open { border-color: rgba(61,26,120,.25); }
.curr-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--purple); transition: color .3s;
}
.curr-q:hover { color: var(--gold); }
.curr-q .yr-badge {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 50px; margin-right: auto; margin-left: 12px;
}
.curr-arrow { width: 32px; height: 32px; border-radius: 50%; background: var(--offwhite); display: flex; align-items: center; justify-content: center; font-size: 13px; color: var(--purple); transition: all .3s; flex-shrink: 0; }
.curr-item.open .curr-arrow { background: var(--purple); color: #fff; transform: rotate(180deg); }
.curr-body { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.curr-item.open .curr-body { max-height: 500px; }
.curr-body-inner { padding: 0 24px 24px; }
.module-list { list-style: none; padding: 0; }
.module-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 16.5px; color: var(--tbody);
}
.module-list li:last-child { border-bottom: none; }
.module-list li i { color: var(--gold); font-size: 12px; flex-shrink: 0; }

/* ===== ELIGIBILITY ===== */
.elig-sec { padding: 80px 0; background: #fff; }
.elig-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 20px; padding: 32px 28px; height: 100%;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.elig-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--purple), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s; }
.elig-card:hover { transform: translateY(-6px); box-shadow: 0 18px 48px rgba(61,26,120,.13); border-color: rgba(61,26,120,.15); }
.elig-card:hover::after { transform: scaleX(1); }
.elig-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #fff; margin-bottom: 18px; }
.elig-title { font-size: 16px; font-weight: 800; color: var(--purple); margin-bottom: 10px; }
.elig-list { list-style: none; padding: 0; }
.elig-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 16.5px; color: var(--tmuted); padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.5; }
.elig-list li:last-child { border-bottom: none; }
.elig-list li i { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

/* ===== CAREER PATH ===== */
.career-path-sec { padding: 80px 0; background: #2e1a5c; position: relative; overflow: hidden; }
.career-path-sec::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.cp-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 28px 24px; text-align: center;
  transition: all .4s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
}
.cp-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: translateX(-100%); transition: transform .6s; }
.cp-card:hover::before { transform: translateX(100%); }
.cp-card:hover { background: rgba(255,255,255,.13); border-color: rgba(245,166,35,.4); transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.cp-icon { width: 64px; height: 64px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: #fff; margin: 0 auto 18px; transition: transform .3s; }
.cp-card:hover .cp-icon { transform: scale(1.12) rotate(-5deg); }
.cp-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cp-role { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.6; }
.cp-salary { display: inline-block; background: rgba(245,166,35,.18); color: var(--gold); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 50px; margin-top: 12px; }

/* ===== FEES ===== */
.fees-sec { padding: 80px 0; background: var(--offwhite); }
.fee-card {
  background: #fff; border-radius: 24px; border: 1.5px solid var(--border);
  padding: 36px 30px; text-align: center;
  transition: all .4s cubic-bezier(.22,1,.36,1); position: relative; overflow: hidden;
  height: 100%;
}
.fee-card.featured { background: linear-gradient(135deg, var(--purple-dark), var(--purple)); border-color: transparent; }
.fee-card.featured * { color: #fff !important; }
.fee-card.featured .fee-badge-top { background: var(--gold); color: #1e0d4a !important; }
.fee-badge-top { position: absolute; top: 18px; right: 18px; background: var(--offwhite); color: var(--purple); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 50px; letter-spacing: .5px; }
.fee-card:hover:not(.featured) { transform: translateY(-8px); box-shadow: 0 22px 56px rgba(61,26,120,.16); border-color: rgba(61,26,120,.2); }
.fee-icon { font-size: 36px; margin-bottom: 14px; }
.fee-name { font-size: 18px; font-weight: 800; color: var(--purple); margin-bottom: 6px; }
.fee-price { font-size: 2.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.fee-price small { font-size: 14px; font-weight: 500; color: var(--tmuted); }
.fee-duration { font-size: 13px; color: var(--tmuted); margin-bottom: 22px; }
.fee-divider { height: 1px; background: var(--border); margin: 18px 0; }
.fee-card.featured .fee-divider { background: rgba(255,255,255,.15); }
.fee-list { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.fee-list li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--tmuted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.fee-card.featured .fee-list li { color: rgba(255,255,255,.8) !important; border-bottom-color: rgba(255,255,255,.12) !important; }
.fee-list li:last-child { border-bottom: none; }
.fee-list li i { color: var(--gold); font-size: 12px; }
.btn-fee { display: block; padding: 13px; border-radius: 50px; font-size: 14px; font-weight: 700; text-align: center; transition: all .3s; border: none; cursor: pointer; font-family: 'Satoshi', sans-serif; }
.btn-fee-outline { background: transparent; border: 2px solid var(--purple); color: var(--purple); }
.btn-fee-outline:hover { background: var(--purple); color: #fff; }
.btn-fee-solid { background: var(--gold); color: #1e0d4a; }
.btn-fee-solid:hover { background: #ffc14d; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,.4); color: #1e0d4a; }

/* ===== CERTIFICATIONS ===== */
.cert-sec { padding: 60px 0; background: #fff; }
.afl-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px; margin-top: 36px; }
.afl-logo { transition: all .35s; display: flex; align-items: center; }
.afl-logo:hover { transform: scale(1.1) translateY(-3px); }
.afl-logo img { height: 100%; object-fit: contain; }

/* ===== APPLY CTA ===== */
.apply-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, #5a2899 100%);
  position: relative; overflow: hidden;
}
.apply-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 38px 38px; }
.apply-cta-glow { position: absolute; top: -100px; right: -100px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(245,166,35,.15) 0%, transparent 68%); animation: glowPulse 5s ease-in-out infinite; }
.apply-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.apply-cta h2 span { color: var(--gold); }
.apply-cta p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; margin-bottom: 32px; max-width: 520px; }

/* RESPONSIVE */
@media(max-width:991px) { .ch-img-wrap { display: none; } .ch-content { padding: 70px 0 70px; } .qi-item { min-width: 140px; } }
@media(max-width:767px) { .ch-title { font-size: 1.9rem; } .ch-stats { gap: 16px; } .qi-item { min-width: 45%; } .fee-card { margin-bottom: 20px; } }
@media(max-width:480px) { .ch-btns { flex-direction: column; } .ch-btns .btn-gold, .ch-btns .btn-ow { width: 100%; text-align: center; } .qi-item { min-width: 100%; } }
