/* ============================================================
   BDC – Baloyo Dental Clinic and Implant Center
   Main Stylesheet
   ============================================================ */

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

:root {
  --primary:    #1B3A8A;   /* logo navy blue */
  --primary-dk: #132970;   /* darker navy */
  --primary-lt: #2756AB;   /* lighter navy */
  --accent:     #00C4DF;   /* logo cyan (BALOYO text) */
  --accent-dk:  #00A8BF;   /* darker cyan */
  --text:       #0c1a2e;
  --text-light: #475569;
  --bg:         #ffffff;
  --bg-soft:    #EEF8FB;   /* very light cyan tint */
  --bg-dark:    #0D1F55;   /* deep navy for footer */
  --border:     #C0D8EE;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(27,58,138,.10);
  --shadow-lg:  0 8px 40px rgba(27,58,138,.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);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
}

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);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -.01em;
}
h1 { font-weight: 800; letter-spacing: -.02em; }
h2 { font-weight: 800; letter-spacing: -.015em; }
h3 { font-weight: 700; }
h4 { font-weight: 700; }

.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(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-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.4rem; margin: .6rem 0 1.1rem; color: var(--text); }
.section-header p  { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }

.section-label {
  display: inline-block;
  background: rgba(27,58,138,.10);
  color: var(--primary);
  padding: .35rem 1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  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 .9rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(27,58,138,.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(19,41,112,.90) 0%, rgba(27,58,138,.82) 60%, rgba(0,196,223,.25) 100%),
    url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1600&q=80') center/cover no-repeat;
  color: #fff;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,41,112,.55) 0%, rgba(27,58,138,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 6rem 1.5rem 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(0,196,223,.18);
  border: 1px solid rgba(0,196,223,.55);
  color: #e0f9fd;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -.025em;
}
.hero-content h1 .highlight { color: var(--accent); }
.hero-content p {
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,.92);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.85rem; font-weight: 800; color: var(--accent); letter-spacing: -.02em; }
.stat span   { font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.85); letter-spacing: .01em; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.2); }

/* ── 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(27,58,138,.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(0,196,223,.12); color: var(--accent-dk); }
.program-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .75rem; color: var(--text); }
.program-card p  { color: var(--text-light); font-size: .925rem; margin-bottom: 1rem; line-height: 1.65; }
.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-1571772996211-2f02c9727629?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); font-size: 1rem; line-height: 1.75; 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: 1rem; font-weight: 700; margin-bottom: .2rem; color: var(--text); }
.why-point p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

/* ── 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); font-size: .975rem; flex: 1; line-height: 1.75; font-weight: 400; }
.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: .9rem; color: rgba(255,255,255,.78); margin-bottom: 1.5rem; line-height: 1.7; }

.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(19,41,112,.90) 0%, rgba(27,58,138,.80) 100%),
    url('https://images.unsplash.com/photo-1588776814546-1ffbb3d1a8b7?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(27,58,138,.05); border-color: var(--primary); }
.mv-vision  { background: rgba(0,196,223,.07); border-color: var(--accent); }
.mv-values  { background: rgba(30,120,60,.05);  border-color: #00A8BF; }

.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: #00A8BF; }

.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: #00A8BF; 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); }

/* ── Dentists Page ────────────────────────────────────────── */
.dentists-section { background: var(--bg); }

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

.dentist-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(27,58,138,.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dentist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(27,58,138,.16);
}

/* Avatar area */
.dentist-avatar-wrap {
  position: relative;
  background: linear-gradient(135deg, #f0f6ff, #e8f4fb);
  padding: 2.5rem 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 3px solid var(--dc);
}
.dentist-avatar-bg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--dc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  margin-bottom: .5rem;
}
.dentist-avatar-icon {
  font-size: 2.4rem;
  color: #fff;
}
.dentist-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 700;
  background: rgba(255,255,255,.85);
  color: var(--dc);
  border: 1.5px solid var(--dc);
  border-radius: 50px;
  padding: .25rem .75rem;
  margin-top: .5rem;
  letter-spacing: .03em;
}

/* Info block */
.dentist-info {
  padding: 1.4rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.dentist-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}
.dentist-role {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: block;
}
.dentist-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.dentist-spec-tag {
  font-size: .72rem;
  font-weight: 600;
  border: 1.5px solid;
  border-radius: 4px;
  padding: .15rem .55rem;
  background: transparent;
}
.dentist-bio {
  font-size: .84rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}
.dentist-edu {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: .4rem;
}
.dentist-edu i { color: var(--primary); margin-top: .15rem; flex-shrink: 0; }

.dentist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-top: .1rem;
}
.dentist-badge {
  font-size: .68rem;
  font-weight: 700;
  background: var(--bg-light);
  color: var(--text-light);
  border-radius: 4px;
  padding: .18rem .5rem;
  letter-spacing: .03em;
}

.dentist-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin-top: auto;
  padding: .65rem 1.25rem;
  border-radius: 50px;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: filter .2s, transform .2s;
}
.dentist-book-btn:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* Trust grid */
.dentists-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.dt-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(27,58,138,.07);
  border-top: 3px solid var(--primary);
}
.dt-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,58,138,.1), rgba(0,196,223,.12));
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}
.dt-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: .4rem; }
.dt-item p  { font-size: .82rem; color: var(--text-light); line-height: 1.6; }

@media (max-width: 1024px) {
  .dentists-grid        { grid-template-columns: repeat(2, 1fr); }
  .dentists-trust-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .dentists-grid        { grid-template-columns: 1fr; }
  .dentists-trust-grid  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .dentists-trust-grid  { grid-template-columns: 1fr; }
}

/* ── 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, #1B3A8A, #2756AB); }
.fpc-header.industrial { background: linear-gradient(135deg, #132970, #1B3A8A); }
.fpc-header.services   { background: linear-gradient(135deg, #00A8BF, #00C4DF); }
.fpc-header.health     { background: linear-gradient(135deg, #0D7A8A, #00A8BF); }

.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(0,196,223,.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(27,58,138,.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(27,58,138,.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(27,58,138,.04); }
.nc-badge {
  display: inline-block;
  background: rgba(27,58,138,.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(27,58,138,.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 #00A8BF; }
.org-dept-assessment > span { color: #00A8BF; }
.org-dept-students  { border-top: 3px solid #2756AB; }
.org-dept-students  > span { color: #2756AB; }
.org-dept-admin     { border-top: 3px solid #132970; }
.org-dept-admin     > span { color: #132970; }

/* 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: #00A8BF; }
.dept-label-students   { background: #2756AB; }
.dept-label-admin      { background: #132970; }

.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: #132970; }

.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(27,58,138,.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(27,58,138,.07), rgba(0,196,223,.08));
  border: 1.5px solid rgba(27,58,138,.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(27,58,138,.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(19,41,112,.7) 0%, rgba(27,58,138,.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(27,58,138,.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(27,58,138,.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, #1B3A8A, #2756AB); }
.partner-sector.ict          { background: linear-gradient(135deg, #132970, #1B3A8A); }
.partner-sector.hospitality  { background: linear-gradient(135deg, #00A8BF, #00C4DF); }
.partner-sector.healthcare   { background: linear-gradient(135deg, #0D7A8A, #00A8BF); }
.partner-sector.construction { background: linear-gradient(135deg, #1B3A8A, #2756AB); }
.partner-sector.services-p   { background: linear-gradient(135deg, #132970, #1B3A8A); }

.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(27,58,138,.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(0,196,223,.10);
  border: 1.5px solid rgba(0,196,223,.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(27,58,138,.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;
}

/* ── Hero Carousel ────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #fff;
  opacity: 0;
  transition: opacity .9s ease;
  z-index: 0;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* reuse hero-content layout inside each slide */
.hero-carousel .hero-content {
  padding: 6rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
  max-width: 760px;
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(4px);
}
.carousel-btn:hover {
  background: rgba(255,255,255,.30);
  border-color: rgba(255,255,255,.85);
}
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .65rem;
}
.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.carousel-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.25);
}
.carousel-dot:hover:not(.active) {
  background: rgba(255,255,255,.4);
}

/* ── Trust / Credentials Bar ─────────────────────────────── */
.trust-bar {
  background: var(--bg-dark);
  padding: .9rem 0;
  border-bottom: 3px solid var(--accent);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,.95);
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .01em;
}
.trust-item i { color: var(--accent); font-size: .95rem; }
.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ── Service Pillars ─────────────────────────────────────── */
.services-section { background: var(--bg); }

.service-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.service-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.service-pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-pillar.sp-featured {
  border-color: var(--accent);
  border-top-width: 3px;
}

.sp-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .85rem;
  border-radius: 0 0 8px 8px;
}

.sp-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.sp-icon-wrap.sp-blue { background: rgba(27,58,138,.1); color: var(--primary); }
.sp-icon-wrap.sp-cyan { background: rgba(0,196,223,.12); color: var(--accent-dk); }

.service-pillar h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.service-pillar > p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.sp-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .925rem;
  font-weight: 500;
  color: var(--text);
}
.sp-list li i { color: var(--accent-dk); font-size: .8rem; flex-shrink: 0; }

.sp-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.sp-link:hover { gap: .7rem; color: var(--accent-dk); }

/* ── Emergency Strip ─────────────────────────────────────── */
.emergency-strip {
  background: linear-gradient(90deg, var(--primary-dk) 0%, var(--primary) 100%);
  padding: 1.1rem 0;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}
.emergency-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.emergency-pulse {
  width: 48px;
  height: 48px;
  background: rgba(0,196,223,.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
  flex-shrink: 0;
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,196,223,.4); }
  50%      { box-shadow: 0 0 0 10px rgba(0,196,223,0); }
}
.emergency-text {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
  min-width: 220px;
}
.emergency-text strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.emergency-text span {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  line-height: 1.5;
}

/* ── Why Section: stats grid overlay ────────────────────── */
.why-stats-grid {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem 1.5rem;
  border-left: 4px solid var(--accent);
  min-width: 220px;
  z-index: 2;
}
.why-stat { text-align: center; }
.why-stat strong {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}
.why-stat span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .01em;
}

/* ── Why Section: credentials list ──────────────────────── */
.why-credentials {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.cred-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(27,58,138,.08);
  color: var(--primary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .25rem;
}
.cred-body span {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── Process / How It Works ──────────────────────────────── */
.process-section { background: var(--bg-soft); }

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.process-step:hover { transform: translateY(-4px); }

.step-num {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--accent-dk);
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.step-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(27,58,138,.08);
  color: var(--primary);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .9rem;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .5rem;
}
.process-step p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.process-arrow {
  color: var(--border);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  margin-top: 3.5rem;
  flex-shrink: 0;
}

/* ── Testimonials enhancements ───────────────────────────── */
.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin-top: .75rem;
}
.overall-rating .rating-stars { color: #f59e0b; font-size: 1.05rem; letter-spacing: 2px; }
.overall-rating span { font-size: .9rem; font-weight: 500; color: var(--text-light); }

.tc-quote {
  font-size: 1.8rem;
  color: var(--accent);
  opacity: .35;
  margin-bottom: .4rem;
  line-height: 1;
}

/* ── Payment & Insurance Section ─────────────────────────── */
.payment-section { background: var(--bg-soft); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.payment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.payment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(27,58,138,.08);
  color: var(--primary);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-item span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ── CTA Banner enhancements ──────────────────────────────── */
.cta-inner--pro {
  align-items: center;
}
.cta-text { flex: 1; }
.cta-contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: color var(--transition);
}
.cta-phone:hover { color: #fff; }
.cta-sep { color: rgba(255,255,255,.4); }
.cta-hours {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
}

/* ── Button size variant ──────────────────────────────────── */
.btn-lg {
  padding: .9rem 2rem;
  font-size: .95rem;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--primary); color: #fff; }

/* ── Branches Page ────────────────────────────────────────── */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.branch-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--border);
}
.branch-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.branch-card.branch-main { border-top-color: var(--accent); }

.branch-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.branch-main .branch-header { background: linear-gradient(135deg, var(--primary), var(--primary-lt)); color: #fff; }
.branch-main .branch-header .branch-label,
.branch-main .branch-header h3 { color: #fff; }
.branch-main .branch-header .branch-icon { color: var(--accent); }

.branch-icon {
  font-size: 1.6rem;
  color: var(--primary);
  flex-shrink: 0;
}

.branch-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: .2rem;
}
.branch-card:not(.branch-main) .branch-label { color: var(--accent-dk); }

.branch-header h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text);
}

.branch-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}

.branch-info-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text);
}
.branch-info-item i {
  color: var(--primary);
  font-size: .85rem;
  margin-top: .2rem;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.branch-info-item a { color: var(--primary); font-weight: 500; }
.branch-info-item a:hover { text-decoration: underline; }

.branch-services {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  margin-top: .25rem;
}
.branch-services span {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-light);
}
.branch-services i { color: var(--accent-dk); font-size: .8rem; }

.branch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

/* ── Gallery Page ─────────────────────────────────────────── */

/* Count badge inside filter tabs */
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27,58,138,.12);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  min-width: 20px;
  height: 18px;
  padding: 0 .4rem;
  margin-left: .35rem;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.filter-btn.active .tab-count,
.filter-btn:hover .tab-count {
  background: rgba(255,255,255,.25);
  color: #fff;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(27,58,138,.10);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: box-shadow .3s ease, opacity .3s ease, transform .3s ease;
  outline-offset: 3px;
}
.gallery-item:focus-visible { outline: 2px solid var(--accent); }

.gallery-item.gallery-featured {
  grid-column: span 2;
}
.gallery-item.gallery-featured img {
  aspect-ratio: auto;
}

/* Filtered-out state (set by JS) */
.gallery-item.g-hidden {
  opacity: 0 !important;
  transform: scale(.94) !important;
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover img { transform: scale(1.07); }

/* Category tag (top-left, appears on hover) */
.gallery-cat-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(11,25,75,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-item:hover .gallery-cat-tag { opacity: 1; transform: translateY(0); }

/* Zoom icon (center, appears on hover) */
.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Overlay (bottom gradient + text) */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,75,.82) 0%, rgba(11,25,75,.25) 45%, transparent 72%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-content {
  color: #fff;
  transform: translateY(10px);
  transition: transform .3s ease;
}
.gallery-item:hover .gallery-overlay-content { transform: translateY(0); }
.gallery-overlay-content h4 { font-size: 1rem; color: #fff; margin-bottom: .25rem; font-weight: 700; line-height: 1.3; }
.gallery-overlay-content p  { font-size: .8rem; color: rgba(255,255,255,.82); line-height: 1.4; }

/* ── Lightbox ──────────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,10,38,.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  padding: 1.25rem 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-height: 100dvh;
}

.lightbox-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

#lightboxImg {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  display: block;
  transition: opacity .2s ease;
  object-fit: contain;
}

.lightbox-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.lightbox-loading.is-visible { opacity: 1; }
.lb-spinner {
  width: 38px;
  height: 38px;
  border: 3px solid rgba(255,255,255,.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: lb-spin .7s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

.lightbox-caption {
  text-align: center;
  color: #fff;
  max-width: 560px;
  padding: 0 1rem;
}
.lightbox-counter {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.45);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.lightbox-caption h4 {
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: .3rem;
  line-height: 1.3;
}
.lightbox-caption p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* Close button */
.lightbox-close {
  position: fixed;
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 10001;
}
.lightbox-close:hover { background: rgba(255,255,255,.22); color: #fff; }

/* Prev / Next nav */
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  z-index: 10001;
}
.lightbox-prev { left: 1.1rem; }
.lightbox-next { right: 1.1rem; }
.lightbox-prev:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { background: rgba(255,255,255,.22); color: #fff; transform: translateY(-50%) translateX(2px); }
.lightbox-prev:disabled,
.lightbox-next:disabled { opacity: .3; pointer-events: none; }

/* Dot indicators */
.lightbox-dots {
  display: flex;
  gap: .45rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 300px;
}
.lightbox-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.lightbox-dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}
.lightbox-dot:hover:not(.is-active) { background: rgba(255,255,255,.55); }

/* Responsive gallery grid */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; gap: .75rem; }
  .gallery-item.gallery-featured { grid-column: span 1; }
  .lightbox-inner { padding: 1rem 1rem; }
  .lightbox-prev { left: .4rem; }
  .lightbox-next { right: .4rem; }
  #lightboxImg { max-height: 60vh; }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .service-pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .service-pillar.sp-featured { order: -1; }
  .payment-grid       { grid-template-columns: repeat(3, 1fr); }
  .branches-grid      { grid-template-columns: repeat(2, 1fr); }
  .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) {
  .hero-carousel { min-height: 100svh; }
  .carousel-btn  { width: 40px; height: 40px; font-size: .85rem; }
  .carousel-prev { left: .75rem; }
  .carousel-next { right: .75rem; }
  .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; }
  .trust-bar-inner    { gap: .5rem .75rem; }
  .trust-divider      { display: none; }
  .emergency-inner    { flex-direction: column; text-align: center; }
  .emergency-pulse    { margin: 0 auto; }
  .process-steps      { flex-direction: column; align-items: center; }
  .process-arrow      { transform: rotate(90deg); }
  .payment-grid       { grid-template-columns: repeat(2, 1fr); }
  .hero-stats         { gap: 1rem; }
  .cta-inner          { flex-direction: column; text-align: center; }
  .cta-contact-row    { justify-content: center; }
  .cta-inner--pro .cta-actions { align-self: 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) {
  .payment-grid   { grid-template-columns: repeat(2, 1fr); }
  .branches-grid  { grid-template-columns: 1fr; }
  .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: 2rem; }
  .section-header h2 { font-size: 1.9rem; }
}
