/* ============================================================
   MTAAC – MasterEdge Training Academy and Assessment Center
   Main Stylesheet
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #8B0000;
  --primary-dk: #5C0000;
  --primary-lt: #B22222;
  --accent:     #C9A84C;
  --accent-dk:  #9E7C2A;
  --text:       #1a0505;
  --text-light: #5a6270;
  --bg:         #ffffff;
  --bg-soft:    #FBF5F0;
  --bg-dark:    #1A0000;
  --border:     #E8DDD5;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(139,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(139,0,0,.16);
  --transition: .25s ease;
  --font-body:  'Inter', sans-serif;
  --font-head:  'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

/* ── Demo / Staging Banner ────────────────────────────────── */
.demo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #F59E0B;
  color: #1a1a1a;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .45rem 1rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,.18);
}
.demo-bar i { font-size: .9rem; }
.demo-bar-label {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.demo-bar-pill {
  background: #1a1a1a;
  color: #F59E0B;
  font-size: .65rem;
  padding: .15rem .55rem;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: .08em;
}
/* push page content up so demo bar doesn't cover footer */
body { padding-bottom: 34px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--bg-soft); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition), color var(--transition);
}
.btn-link:hover { gap: .7rem; color: var(--accent-dk); }

/* ── Section Header ───────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
}
.section-header h2 { font-size: 2.1rem; margin: .5rem 0 1rem; }
.section-header p  { color: var(--text-light); }

.section-label {
  display: inline-block;
  background: rgba(139,0,0,.08);
  color: var(--primary);
  padding: .3rem .9rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
  background: var(--primary-dk);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  padding: .45rem 0;
}
.top-bar .container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.top-bar span { display: flex; align-items: center; gap: .45rem; }
.top-bar i { color: var(--accent); }
.top-bar a, .footer-contact a, .ci-item a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.top-bar a:hover        { color: var(--accent); }
.footer-contact a:hover { color: var(--accent); }
.ci-item a:hover        { color: var(--primary); text-decoration: underline; }

/* Phone/email links inside footer list items */
.footer-contact li a, .ci-item p a {
  color: inherit;
  text-decoration: none;
}
.footer-contact li a:hover, .ci-item p a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  padding: .9rem 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.14); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.site-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.site-logo-img-footer {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}
/* Keep fallback text styles in case image fails to load */
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--primary); }
.logo-sub  { font-size: .65rem; color: var(--text-light); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .85rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(139,0,0,.06);
}
.nav-links .btn-enroll {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-left: .5rem;
  border-radius: 6px;
}
.nav-links .btn-enroll:hover { background: var(--accent-dk); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(92,0,0,.90) 0%, rgba(139,0,0,.82) 60%, rgba(201,168,76,.25) 100%),
    url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,0,0,.55) 0%, rgba(139,0,0,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 6rem 1.5rem 4rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.2);
  border: 1px solid rgba(201,168,76,.6);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}
.hero-content h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent); }
.stat span   { font-size: .8rem; color: rgba(255,255,255,.75); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.25); }

/* ── Features Strip ───────────────────────────────────────── */
.features-strip {
  background: var(--primary);
  color: #fff;
  padding: 1.5rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.feature-item:last-child { border-right: none; }
.feature-item i { font-size: 1.6rem; color: var(--accent); flex-shrink: 0; }
.feature-item strong { display: block; font-size: .9rem; font-weight: 700; }
.feature-item span  { font-size: .78rem; color: rgba(255,255,255,.75); }

/* ── Programs Section (Home) ──────────────────────────────── */
.programs-section { background: var(--bg-soft); }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border-top: 4px solid var(--border);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--primary); }
.program-card.featured { border-top-color: var(--accent); }

.program-card .badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 0 0 6px 6px;
}
.program-icon {
  width: 56px;
  height: 56px;
  background: rgba(139,0,0,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.program-card.featured .program-icon { background: rgba(201,168,76,.12); color: var(--accent-dk); }
.program-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.program-card p  { color: var(--text-light); font-size: .9rem; margin-bottom: 1rem; }
.program-card ul { margin-bottom: 1.5rem; }
.program-card ul li {
  font-size: .85rem;
  color: var(--text-light);
  padding: .2rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.program-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ── Why Choose Us ────────────────────────────────────────── */
.why-section { background: var(--bg); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.why-image { display: flex; justify-content: center; }
.why-image-box {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.why-img-accent {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?w=800&q=70') center/cover no-repeat;
  opacity: .35;
  mix-blend-mode: luminosity;
}
.experience-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.experience-badge strong { display: block; font-size: 2rem; color: var(--primary); font-family: var(--font-head); font-weight: 800; }
.experience-badge span   { font-size: .78rem; color: var(--text-light); }

.why-content .section-label { margin-bottom: 1rem; display: inline-block; }
.why-content h2 { font-size: 2rem; margin-bottom: 1rem; }
.why-content > p { color: var(--text-light); margin-bottom: 2rem; }

.why-points { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.why-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-icon { color: var(--accent); font-size: 1.3rem; margin-top: .1rem; flex-shrink: 0; }
.why-point strong { display: block; font-size: .95rem; margin-bottom: .2rem; }
.why-point p { font-size: .85rem; color: var(--text-light); }

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-section { background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { color: var(--accent); letter-spacing: 2px; font-size: .9rem; }
.testimonial-card p { color: var(--text-light); font-size: .92rem; font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span  { font-size: .78rem; color: var(--text-light); }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dk) 0%, var(--primary) 100%);
  color: #fff;
  padding: 4rem 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: 1.7rem; color: #fff; margin-bottom: .5rem; }
.cta-inner p  { color: rgba(255,255,255,.8); }
.cta-actions  { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-main { color: #fff; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 1.5rem; }

.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--accent); color: #fff; }

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links ul li { margin-bottom: .65rem; }
.footer-links ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--accent); }

.footer-contact ul li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.footer-contact ul li i { color: var(--accent); margin-top: .25rem; flex-shrink: 0; }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background:
    linear-gradient(135deg, rgba(92,0,0,.90) 0%, rgba(139,0,0,.80) 100%),
    url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1400&q=80') center/cover no-repeat;
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { font-size: 2.5rem; color: #fff; margin-bottom: 1.25rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.breadcrumb li + li::before {
  content: '/';
  color: rgba(255,255,255,.4);
  font-size: .75rem;
  margin: 0;
}
.breadcrumb a {
  color: var(--accent);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: #fff; }

/* ── About Page ───────────────────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.mv-intro .section-label { margin-bottom: 1rem; display: inline-block; }
.mv-intro h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.mv-intro p  { color: var(--text-light); margin-bottom: 1rem; }

.mv-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.mv-card {
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 4px solid;
}
.mv-mission { background: rgba(139,0,0,.05); border-color: var(--primary); }
.mv-vision  { background: rgba(201,168,76,.07); border-color: var(--accent); }
.mv-values  { background: rgba(30,120,60,.05);  border-color: #1e783c; }

.mv-card-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.mv-mission .mv-card-icon { color: var(--primary); }
.mv-vision  .mv-card-icon { color: var(--accent-dk); }
.mv-values  .mv-card-icon { color: #1e783c; }

.mv-card h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.mv-card p  { font-size: .875rem; color: var(--text-light); }
.mv-card ul li {
  font-size: .85rem;
  color: var(--text-light);
  padding: .2rem 0;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mv-card ul li i { color: #1e783c; font-size: .75rem; }

/* Accreditations */
.accred-section { background: var(--bg-soft); }
.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.accred-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.accred-card:hover { transform: translateY(-4px); }
.accred-icon { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.accred-card h4 { font-size: 1rem; margin-bottom: .6rem; }
.accred-card p  { font-size: .85rem; color: var(--text-light); }

/* Team */
.team-section { background: var(--bg); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover { border-top-color: var(--primary); transform: translateY(-4px); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.team-card h4   { font-size: 1rem; margin-bottom: .25rem; }
.team-card span { font-size: .8rem; color: var(--accent-dk); font-weight: 600; display: block; margin-bottom: .75rem; }
.team-card p    { font-size: .83rem; color: var(--text-light); }

/* ── Programs Page ────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .55rem 1.3rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--text-light);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.full-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.full-program-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.full-program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.full-program-card[style*="display: none"] { display: none !important; }

.fpc-header {
  padding: 1.4rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
.fpc-header i { font-size: 1.8rem; }
.fpc-category { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }

.fpc-header.ict        { background: linear-gradient(135deg, #8B0000, #B22222); }
.fpc-header.industrial { background: linear-gradient(135deg, #bf360c, #e64a19); }
.fpc-header.services   { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.fpc-header.health     { background: linear-gradient(135deg, #880e4f, #c2185b); }

.fpc-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.fpc-body h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.fpc-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.fpc-meta span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--text-light);
}
.fpc-meta i { color: var(--primary); }
.fpc-body > p { color: var(--text-light); font-size: .875rem; margin-bottom: 1.1rem; }
.fpc-body h4  { font-size: .85rem; font-weight: 700; margin-bottom: .6rem; color: var(--text); }

.fpc-list { margin-bottom: 1.5rem; flex: 1; }
.fpc-list li {
  font-size: .83rem;
  color: var(--text-light);
  padding: .25rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.fpc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.fpc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.fpc-price { font-size: .85rem; font-weight: 600; color: var(--primary); }

.fpc-popular-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 50px;
  letter-spacing: .04em;
}
.popular-program {
  border: 2px solid var(--accent);
  box-shadow: 0 4px 28px rgba(201,168,76,.20);
}

/* Scholarship */
.scholarship-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%); }
.scholarship-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  color: #fff;
}
.scholarship-icon { font-size: 3rem; color: var(--accent); flex-shrink: 0; }
.scholarship-content { flex: 1; }
.scholarship-content h2 { font-size: 1.5rem; color: #fff; margin-bottom: .75rem; }
.scholarship-content p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 1rem; }
.scholarship-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.scholarship-badges span {
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: .35rem .85rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.scholarship-badges i { color: var(--accent); }

/* ── Assessment Page ──────────────────────────────────────── */
.assessment-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.assessment-intro-text .section-label { margin-bottom: .75rem; display: inline-block; }
.assessment-intro-text h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.assessment-intro-text p  { color: var(--text-light); margin-bottom: 1rem; }

.assessment-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-top: 1.5rem;
}
.ah-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(139,0,0,.06);
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--primary);
}
.ah-item i { font-size: 1.1rem; }

.assessment-intro-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
}
.assessment-intro-card h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--primary); }
.assessment-who li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .88rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.assessment-who li:last-child { border-bottom: none; }
.assessment-who i { color: var(--accent-dk); }

/* Process Steps */
.process-section { background: var(--bg-soft); }
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.process-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  position: relative;
}
.step-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(139,0,0,.07);
  font-family: var(--font-head);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: .75rem; }
.process-step h4 { font-size: .95rem; margin-bottom: .6rem; }
.process-step p  { font-size: .82rem; color: var(--text-light); }
.process-arrow { align-self: center; font-size: 1.2rem; color: var(--text-light); margin-top: -1rem; }

/* Qualifications Table */
.qual-table-wrap { overflow-x: auto; margin-top: 1rem; }
.qual-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.qual-table th {
  background: var(--primary);
  color: #fff;
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
}
.qual-table th:first-child { border-radius: 8px 0 0 0; }
.qual-table th:last-child  { border-radius: 0 8px 0 0; }
.qual-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--text); }
.qual-table tr:nth-child(even) td { background: var(--bg-soft); }
.qual-table tr:hover td { background: rgba(139,0,0,.04); }
.nc-badge {
  display: inline-block;
  background: rgba(139,0,0,.1);
  color: var(--primary);
  border-radius: 50px;
  padding: .2rem .7rem;
  font-size: .78rem;
  font-weight: 700;
}

/* Requirements */
.requirements-section { background: var(--bg-soft); }
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.req-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem;
}
.req-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}
.req-card h4 { font-size: .95rem; }
.req-card p  { font-size: .83rem; color: var(--text-light); }

/* ── Org Chart ────────────────────────────────────────────── */
.org-section { background: var(--bg-soft); }

.org-scroll {
  overflow-x: auto;
  padding: .5rem 0 2.5rem;
  -webkit-overflow-scrolling: touch;
}
.org-chart-wrap { min-width: 820px; }

/* Level 1 – Executive */
.org-l1 {
  display: flex;
  justify-content: center;
  position: relative;
}
.org-l1::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
  z-index: 1;
}

.org-root-line { height: 40px; }

/* Level 2 – Departments */
.org-l2 {
  display: flex;
  gap: 1.25rem;
  position: relative;
}
/* Horizontal connecting bar – spans center-of-first to center-of-last branch */
.org-l2::before {
  content: '';
  position: absolute;
  top: 0;
  left: calc(100% / 8);
  right: calc(100% / 8);
  height: 2px;
  background: var(--primary);
}

.org-branch {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  position: relative;
}
/* Vertical drop from horizontal bar to dept node */
.org-branch::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--primary);
}

/* Org node base */
.org-node {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  width: 100%;
}

/* Executive node */
.org-exec {
  padding: 1.5rem 2rem;
  border-top: 4px solid var(--primary);
  max-width: 260px;
  text-align: center;
}
.org-exec .org-av  { margin: 0 auto 1rem; }
.org-exec strong   { display: block; font-size: 1rem; font-family: var(--font-head); font-weight: 700; margin-bottom: .3rem; }
.org-exec > span   { font-size: .8rem; color: var(--accent-dk); font-weight: 600; }

/* Dept node */
.org-dept {
  padding: 1.1rem .85rem;
  text-align: center;
}
.org-dept .org-av { margin: 0 auto .65rem; }
.org-dept strong  { display: block; font-size: .83rem; font-family: var(--font-head); font-weight: 700; margin-bottom: .2rem; }
.org-dept > span  { font-size: .72rem; font-weight: 600; }

.org-dept-academic  { border-top: 3px solid var(--primary); }
.org-dept-academic  > span { color: var(--primary); }
.org-dept-assessment{ border-top: 3px solid #1b5e20; }
.org-dept-assessment > span { color: #1b5e20; }
.org-dept-students  { border-top: 3px solid #4a148c; }
.org-dept-students  > span { color: #4a148c; }
.org-dept-admin     { border-top: 3px solid #01579B; }
.org-dept-admin     > span { color: #01579B; }

/* Children (Level 3) */
.org-children {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-top: 30px;
  position: relative;
}
.org-children::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 30px;
  background: var(--border);
}

/* Staff node */
.org-staff {
  padding: .6rem .75rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--border);
  box-shadow: none;
}
.org-staff-info strong { display: block; font-size: .75rem; font-weight: 700; }
.org-staff-info span   { font-size: .7rem; color: var(--text-light); }

/* Avatars */
.org-av {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-head);
  color: #fff;
  flex-shrink: 0;
}
.org-av-lg { width: 64px; height: 64px; font-size: 1.3rem; background: var(--primary); }
.org-av-md { width: 48px; height: 48px; font-size: .95rem; background: var(--primary-lt); }
.org-av-sm { width: 34px; height: 34px; font-size: .72rem; background: var(--text-light); }

/* ── Employee Profile Cards ─────────────────────────────── */
.dept-profiles {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.dept-group-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  padding: .5rem 1.1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
}
.dept-label-academic   { background: var(--primary); }
.dept-label-assessment { background: #1b5e20; }
.dept-label-students   { background: #4a148c; }
.dept-label-admin      { background: #01579B; }

.dept-cards {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.emp-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.emp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.emp-card.emp-head { border-top: 3px solid var(--primary); }

.dept-group:nth-child(2) .emp-card.emp-head { border-top-color: #1b5e20; }
.dept-group:nth-child(3) .emp-card.emp-head { border-top-color: #4a148c; }
.dept-group:nth-child(4) .emp-card.emp-head { border-top-color: #01579B; }

.emp-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-lt);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.emp-avatar-lg { width: 64px; height: 64px; font-size: 1.15rem; }

.emp-info strong   { display: block; font-size: .92rem; font-weight: 700; margin-bottom: .2rem; }
.emp-role          { display: block; font-size: .75rem; font-weight: 600; color: var(--text-light); margin-bottom: .5rem; }
.emp-info p        { font-size: .8rem; color: var(--text-light); line-height: 1.5; }

@media (max-width: 1024px) {
  .dept-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .dept-cards { grid-template-columns: 1fr; }
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap h2 { font-size: 1.7rem; margin-bottom: .5rem; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 2rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.required { color: var(--accent-dk); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,0,0,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-check {
  flex-direction: row !important;
  align-items: flex-start;
  gap: .6rem;
}
.form-check input { width: 18px; height: 18px; margin-top: .15rem; cursor: pointer; flex-shrink: 0; }
.form-check label { font-size: .82rem; font-weight: 400; color: var(--text-light); cursor: pointer; }

/* Pre-fill enroll banner */
.enroll-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(139,0,0,.07), rgba(201,168,76,.08));
  border: 1.5px solid rgba(139,0,0,.25);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.enroll-banner i {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
}
.enroll-banner strong {
  display: block;
  font-size: .9rem;
  color: var(--primary);
}
.enroll-banner strong span { color: var(--accent-dk); }
.enroll-banner > div > span {
  font-size: .78rem;
  color: var(--text-light);
}
.enroll-banner-close {
  position: absolute;
  top: .6rem;
  right: .75rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0 .2rem;
}
.enroll-banner-close:hover { color: var(--text); }

/* Prefilled dropdown highlight */
select.prefilled {
  border-color: var(--primary);
  background-color: rgba(139,0,0,.04);
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #81c784;
  color: #2e7d32;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.form-success i { font-size: 1.2rem; }

.contact-info-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 1.5rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.1rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: .8rem; color: var(--text-light); margin-bottom: .2rem; }
.ci-item p { font-size: .88rem; color: var(--text); }

.contact-social-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
}
.contact-social-card h4 { margin-bottom: 1rem; }
.social-links-lg { display: flex; flex-direction: column; gap: .6rem; }
.social-lg {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 1rem;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
  transition: opacity var(--transition);
}
.social-lg:hover { opacity: .85; }
.social-lg i { width: 20px; text-align: center; }
.facebook { background: #1877f2; }
.twitter  { background: #1da1f2; }
.linkedin { background: #0077b5; }
.youtube  { background: #ff0000; }

/* Map */
.map-section { height: 320px; }
.map-placeholder {
  height: 100%;
  background:
    linear-gradient(135deg, rgba(92,0,0,.7) 0%, rgba(139,0,0,.6) 100%),
    url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1400&q=60') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-overlay { text-align: center; color: #fff; }
.map-overlay i { font-size: 2.5rem; color: var(--accent); margin-bottom: .75rem; display: block; }
.map-overlay p { font-size: 1rem; font-weight: 600; }
.map-overlay small { color: rgba(255,255,255,.6); }

/* ── Employment Page ──────────────────────────────────────── */
.emp-stats-bar { background: var(--primary); color: #fff; padding: 1.5rem 0; }
.emp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.emp-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.emp-stat:last-child { border-right: none; }
.emp-stat i { font-size: 1.8rem; color: var(--accent); flex-shrink: 0; }
.emp-stat strong { display: block; font-size: 1.6rem; font-weight: 800; font-family: var(--font-head); }
.emp-stat span   { font-size: .78rem; color: rgba(255,255,255,.75); }

.emp-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.emp-intro-text .section-label { margin-bottom: .75rem; display: inline-block; }
.emp-intro-text h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.emp-intro-text p  { color: var(--text-light); margin-bottom: 1rem; }
.emp-intro-badges {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-top: 1.25rem;
}
.emp-intro-badges span {
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text);
}
.emp-intro-badges i { color: var(--primary); font-size: .9rem; }

.emp-visual-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.evc-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
}
.evc-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.evc-item strong { display: block; font-size: .88rem; font-weight: 700; }
.evc-item span   { font-size: .78rem; color: var(--text-light); }
.evc-arrow { text-align: center; color: var(--border); font-size: .9rem; padding: .1rem 0; }

/* Graduate cards */
.graduates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.graduate-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  position: relative;
  border-top: 3px solid var(--primary);
  transition: transform var(--transition), box-shadow var(--transition);
}
.graduate-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.grad-badge {
  position: absolute;
  top: -1px;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 0 0 6px 6px;
}
.grad-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.grad-info { text-align: center; }
.grad-info h4 { font-size: .95rem; margin-bottom: .25rem; }
.grad-program {
  display: inline-block;
  background: rgba(139,0,0,.08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-bottom: .85rem;
}
.grad-position {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  text-align: left;
  background: var(--bg-soft);
  border-radius: 8px;
  padding: .65rem .8rem;
}
.grad-position i { color: var(--primary); margin-top: .2rem; font-size: .85rem; flex-shrink: 0; }
.grad-position strong { display: block; font-size: .8rem; font-weight: 700; }
.grad-position span   { font-size: .73rem; color: var(--text-light); }
.grad-quote { font-size: .78rem; color: var(--text-light); font-style: italic; line-height: 1.5; }

/* Employer CTA */
.emp-employer-section { background: var(--bg-soft); }
.emp-employer-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.emp-employer-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.eec-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139,0,0,.08);
  color: var(--primary);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emp-employer-card h3 { font-size: 1.2rem; }
.emp-employer-card p  { font-size: .88rem; color: var(--text-light); }
.emp-employer-divider {
  width: 1px;
  height: 160px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Partners Page ────────────────────────────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 420px));
  gap: 1.5rem;
  justify-content: center;
}
.partner-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.partner-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.partner-card[style*="display: none"] { display: none !important; }

.partner-sector {
  padding: 1.2rem 1.5rem;
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.partner-sector.garments     { background: linear-gradient(135deg, #880e4f, #ad1457); }
.partner-sector.ict          { background: linear-gradient(135deg, #8B0000, #B22222); }
.partner-sector.hospitality  { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.partner-sector.healthcare   { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.partner-sector.construction { background: linear-gradient(135deg, #bf360c, #e64a19); }
.partner-sector.services-p   { background: linear-gradient(135deg, #01579B, #0277BD); }

.partner-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.partner-body h4 { font-size: 1rem; }
.partner-sector-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-light);
}
.partner-body p { font-size: .85rem; color: var(--text-light); flex: 1; }
.partner-stats {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
  margin-top: auto;
}
.partner-stats span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-light);
}
.partner-stats i { color: var(--primary); width: 14px; }
.partner-stats a { color: var(--primary); font-weight: 600; text-decoration: none; }
.partner-stats a:hover { text-decoration: underline; }

/* Partnership Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139,0,0,.08);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}
.benefit-card h4 { font-size: .95rem; margin-bottom: .5rem; }
.benefit-card p  { font-size: .83rem; color: var(--text-light); }

/* Become a Partner */
.become-partner-section { background: var(--bg); }
.become-partner-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bp-text .section-label { margin-bottom: .75rem; display: inline-block; }
.bp-text h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.bp-text p  { color: var(--text-light); margin-bottom: 1.5rem; }
.bp-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
}
.bp-steps li {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .9rem;
  font-weight: 500;
}
.bp-steps li span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bp-contact-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.bp-contact-card h4 { font-size: 1rem; margin-bottom: .25rem; }
.bp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.bp-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: .2rem;
  width: 16px;
  flex-shrink: 0;
}
.bp-contact-item strong { display: block; font-size: .88rem; font-weight: 700; }
.bp-contact-item span, .bp-contact-item a { font-size: .83rem; color: var(--text-light); }
.bp-contact-item a { display: block; }
.bp-contact-item a:hover { color: var(--primary); }

/* ── Downloads Page ──────────────────────────────────────── */
.downloads-notice {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201,168,76,.10);
  border: 1.5px solid rgba(201,168,76,.35);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: .88rem;
  color: var(--text);
}
.downloads-notice i { color: var(--accent-dk); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

.downloads-category { margin-bottom: 3rem; }
.downloads-category-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
  padding-bottom: .65rem;
  margin-bottom: 1.25rem;
}
.downloads-category-label i { font-size: 1.1rem; }

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.download-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.download-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.download-card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.download-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(139,0,0,.08);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.download-card-top h4 { font-size: .92rem; margin-bottom: .3rem; line-height: 1.4; }
.download-type-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 50px;
}
.badge-pdf  { background: rgba(211,47,47,.1);  color: #c62828; }
.badge-docx { background: rgba(21,101,192,.1); color: #1565C0; }

.download-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.55;
  flex: 1;
}

.download-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-top: auto;
}
.download-meta {
  font-size: .75rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.download-meta span { display: flex; align-items: center; gap: .35rem; }
.download-meta i { color: var(--primary); font-size: .75rem; }

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-download:hover { background: var(--primary-dk); color: #fff; }
.btn-download.unavailable {
  background: var(--border);
  color: var(--text-light);
  cursor: default;
  pointer-events: none;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .graduates-grid     { grid-template-columns: repeat(2, 1fr); }
  .partners-grid      { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .emp-stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .emp-intro-grid     { grid-template-columns: 1fr; }
  .emp-employer-inner { flex-direction: column; }
  .emp-employer-divider { width: 100%; height: 1px; }
  .become-partner-inner { grid-template-columns: 1fr; }
  .programs-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .accred-grid      { grid-template-columns: repeat(2, 1fr); }
  .team-grid        { grid-template-columns: repeat(2, 1fr); }
  .full-programs-grid { grid-template-columns: 1fr; }
  .why-inner        { grid-template-columns: 1fr; }
  .why-image        { display: none; }
  .mv-grid          { grid-template-columns: 1fr; }
  .assessment-intro { grid-template-columns: 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .req-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-enroll { margin-left: 0; }

  .features-grid      { grid-template-columns: 1fr 1fr; }
  .feature-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .programs-grid      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .process-steps      { flex-direction: column; align-items: center; }
  .process-arrow      { transform: rotate(90deg); }
  .hero-stats         { gap: 1rem; }
  .cta-inner          { flex-direction: column; text-align: center; }
  .top-bar .container { justify-content: center; }
  .footer-bottom .container { flex-direction: column; align-items: center; }
  .form-row           { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .graduates-grid { grid-template-columns: 1fr; }
  .partners-grid  { grid-template-columns: 1fr; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .emp-stats-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .accred-grid   { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .req-grid      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .assessment-highlights { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .page-hero h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.7rem; }
}
