/* ============================================================
   CATALYST VIRAAJ INTERNATIONAL — Global Stylesheet
   catalystviraaj.in
   ============================================================ */

/* ── Fonts ── */
/* Loaded via <link> tags in each HTML head with display=swap for performance */
/* Fallback font stacks defined below */

/* ── Skip Link (Accessibility + SEO) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 99999;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* ── Design Tokens ── */
:root {
  --navy:       #0d1b2a;
  --navy-mid:   #152232;
  --gold:       #c9973a;
  --gold-light: #e8c47a;
  --gold-pale:  #f5e9cc;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --grey-light: #ebebeb;
  --grey:       #9a9a9a;
  --text-body:  #2c2c2c;
  --text-muted: #666;

  --font-display: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace; /* kept */

  --radius:   6px;
  --radius-lg: 14px;
  --shadow:   0 4px 32px rgba(0,0,0,0.10);
  --shadow-lg:0 12px 60px rgba(0,0,0,0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);

  --max-width: 1200px;
  --section-pad: 90px 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.overline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-top: 12px;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,151,58,0.35); }
.btn-outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-gold-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--navy); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tag-gold { background: var(--gold-pale); color: var(--gold); }
.tag-navy { background: var(--navy); color: var(--white); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-contact { display: flex; gap: 20px; }
.top-bar-contact span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-main span { color: var(--gold); }
.logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  font-family: var(--font-mono);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta { margin-left: 16px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  min-height: 92vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,151,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,151,58,0.08) 0%, transparent 50%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.hero-content .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-text .overline { font-size: 0.78rem; }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.hero-badge-icon { color: var(--gold); font-size: 1rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-image-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hero-image-card img { width: 100%; height: 480px; object-fit: cover; object-position: top; }
.hero-image-footer {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-image-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}
.hero-image-role { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.accred-pills { display: flex; gap: 6px; }
.accred-pill {
  padding: 4px 10px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============================================================
   CLIENT LOGOS
   ============================================================ */
.clients-bar {
  background: var(--off-white);
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-light);
}
.clients-bar .container { text-align: center; }
.clients-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 28px;
}
.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: 0.55;
}
.client-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
.services-section { background: var(--white); }
.services-section .container { text-align: center; }
.services-section .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--gold-pale); box-shadow: var(--shadow); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.service-link { font-size: 0.82rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; }

/* ============================================================
   WHY CVI
   ============================================================ */
.why-section { background: var(--navy); }
.why-section .section-title { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; }
.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-content-title { font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-content-desc { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.why-badge-overlay {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.why-badge-overlay .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.why-badge-overlay .label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.accred-logos {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.accred-logo-box {
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.accred-logo-box strong { color: var(--gold); }

/* ============================================================
   PROGRAMS SHOWCASE
   ============================================================ */
.programs-section { background: var(--off-white); }
.programs-tabs {
  display: flex;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.program-tab {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  border: 1.5px solid var(--grey-light);
  color: var(--text-muted);
  background: var(--white);
  transition: var(--transition);
}
.program-tab.active,
.program-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--gold-pale);
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: var(--transition);
}
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.program-card-header {
  background: var(--navy);
  padding: 28px;
  position: relative;
}
.program-card-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.program-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.program-card-body { padding: 24px; }
.program-card-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }
.program-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.program-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); }
.program-meta-item strong { color: var(--navy); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  padding: 32px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 12px;
}
.testimonial-text { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars { color: var(--gold); font-size: 0.78rem; margin-bottom: 4px; }

/* ============================================================
   GALLERY / EVENTS
   ============================================================ */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .overlay { opacity: 1; }
.overlay-text { font-size: 0.82rem; color: var(--white); font-weight: 500; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8842e 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner-sub { font-size: 1rem; color: rgba(13,27,42,0.75); max-width: 500px; margin: 0 auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo-main { color: var(--white); font-size: 1.4rem; margin-bottom: 14px; }
.footer-desc { font-size: 0.87rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.85rem; }
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--gold); }
.footer-accred { display: flex; gap: 10px; }
.footer-accred-badge {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   INNER PAGE HERO (for sub-pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,151,58,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero .overline { font-size: 0.72rem; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.65); max-width: 550px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================================
   CERTIFICATION / COURSE CARDS
   ============================================================ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.cert-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.cert-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.cert-card-top {
  background: var(--navy);
  padding: 30px;
}
.cert-code {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.cert-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.cert-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cert-tag {
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
}
.cert-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.cert-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.cert-meta-item { background: var(--off-white); padding: 10px 14px; border-radius: var(--radius); }
.cert-meta-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey); margin-bottom: 2px; }
.cert-meta-value { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.cert-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.cert-cta { display: flex; gap: 10px; margin-top: auto; }

/* ============================================================
   CURRICULUM ACCORDION
   ============================================================ */
.curriculum-section { background: var(--off-white); }
.accordion { margin-top: 32px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion-header:hover { background: var(--off-white); }
.accordion-title { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.accordion-icon { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 24px 20px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body ul { display: flex; flex-direction: column; gap: 8px; }
.accordion-body li {
  padding: 8px 12px;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.accordion-body li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   FEATURES IN NUMBERS
   ============================================================ */
.numbers-strip {
  background: var(--gold);
  padding: 50px 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.number-item {}
.number-val {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.number-label { font-size: 0.82rem; color: var(--navy); opacity: 0.7; margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-label .req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text-body);
  transition: border-color 0.2s;
  background: var(--off-white);
}
.form-control:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-control.select-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.83rem; color: var(--text-muted); }
.form-check input { margin-top: 3px; accent-color: var(--gold); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); margin-bottom: 4px; }
.contact-info-value { font-weight: 600; color: var(--navy); font-size: 0.95rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-bio-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
.about-photo {
  position: sticky;
  top: 90px;
}
.about-photo img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-credential-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.credential-pill {
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.about-text .highlight {
  padding: 20px 24px;
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
  margin: 24px 0;
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 50px;
}
.mv-card {
  padding: 36px;
  border-radius: var(--radius-lg);
}
.mv-card.vision { background: var(--navy); color: var(--white); }
.mv-card.mission { background: var(--gold); color: var(--navy); }
.mv-card-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; margin-bottom: 12px; font-family: var(--font-mono); }
.mv-card-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.mv-card p { font-size: 0.92rem; line-height: 1.7; opacity: 0.85; }

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  transition: var(--transition);
}
.training-card:hover { box-shadow: var(--shadow); border-color: var(--gold-pale); }
.training-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.training-card-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.training-benefits { display: flex; gap: 20px; flex-wrap: wrap; }
.training-benefit { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.training-benefit::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ============================================================
   POPUP / MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 540px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--grey);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--grey-light); color: var(--navy); }
.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-sub { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .hero-content .container { grid-template-columns: 1fr; }
  .hero-image-card { max-width: 480px; margin: 0 auto; }
  .grid-2 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-badge-overlay { left: 12px; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-photo { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .program-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px 20px; }
  .top-bar-contact { display: none; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--grey-light); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .training-card { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   V3 ADDITIONS — Blog, Course Detail, Gallery Lightbox, Cards
   ============================================================ */

/* ── Card Hover Colour Animations (lightweight) ── */
.card-hover {
  transition: background-color 0.28s ease, border-color 0.28s ease,
              box-shadow 0.28s ease, transform 0.28s ease;
}
.card-hover:hover {
  border-color: var(--gold-pale) !important;
  box-shadow: 0 6px 28px rgba(201,151,58,0.13);
  transform: translateY(-3px);
}
.card-hover:hover .card-hover-title { color: var(--gold); }
.card-hover-title { transition: color 0.28s ease; }

/* ── Blog Index ── */
.blog-hero { background: var(--navy); padding: 72px 0 56px; position: relative; overflow: hidden; }
.blog-hero::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,151,58,0.1) 0%, transparent 60%); pointer-events:none; }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-img { width:100%; height:200px; object-fit:cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-wrap { overflow:hidden; position:relative; }
.blog-card-body { padding: 24px; flex:1; display:flex; flex-direction:column; }
.blog-card-cat {
  display: inline-block; padding: 3px 12px;
  background: var(--gold-pale); color: var(--gold);
  border-radius: 100px; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); line-height: 1.3; margin-bottom: 10px;
  transition: color 0.25s;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; flex:1; margin-bottom:16px; }
.blog-card-meta { display:flex; justify-content:space-between; align-items:center; font-size:0.76rem; color:var(--grey); border-top:1px solid var(--grey-light); padding-top:12px; margin-top:auto; }
.blog-card-read { font-weight:600; color:var(--gold); font-size:0.8rem; }

/* ── Blog Sidebar ── */
.blog-layout { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }
.blog-sidebar { position:sticky; top:90px; }
.sidebar-widget { background:var(--white); border:1px solid var(--grey-light); border-radius:var(--radius-lg); padding:24px; margin-bottom:24px; }
.sidebar-widget-title { font-family:var(--font-display); font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:16px; padding-bottom:10px; border-bottom:1px solid var(--grey-light); }
.sidebar-post { display:flex; gap:12px; padding:10px 0; border-bottom:1px solid var(--grey-light); }
.sidebar-post:last-child { border-bottom:none; }
.sidebar-post-img { width:60px; height:60px; border-radius:6px; object-fit:cover; flex-shrink:0; }
.sidebar-post-title { font-size:0.82rem; font-weight:600; color:var(--navy); line-height:1.3; margin-bottom:4px; transition:color 0.2s; }
.sidebar-post:hover .sidebar-post-title { color:var(--gold); cursor:pointer; }
.sidebar-post-date { font-size:0.73rem; color:var(--grey); }
.tag-cloud { display:flex; flex-wrap:wrap; gap:8px; }
.blog-tag { padding:5px 12px; border:1px solid var(--grey-light); border-radius:100px; font-size:0.75rem; color:var(--text-muted); cursor:pointer; transition:all 0.2s; }
.blog-tag:hover { border-color:var(--gold); color:var(--gold); }

/* ── Blog Post (Single) ── */
.post-hero { background:var(--navy); padding:72px 0 0; }
.post-header { max-width:800px; margin:0 auto; padding:0 24px 0; }
.post-body { max-width:800px; margin:0 auto; padding:48px 24px 80px; }
.post-body h2 { font-family:var(--font-display); font-size:1.7rem; font-weight:700; color:var(--navy); margin:36px 0 14px; }
.post-body h3 { font-family:var(--font-display); font-size:1.3rem; font-weight:700; color:var(--navy); margin:28px 0 10px; }
.post-body p { font-size:0.97rem; color:var(--text-body); line-height:1.85; margin-bottom:20px; }
.post-body ul, .post-body ol { margin:0 0 20px 20px; }
.post-body li { font-size:0.95rem; color:var(--text-body); line-height:1.75; margin-bottom:8px; }
.post-body blockquote { border-left:3px solid var(--gold); padding:16px 20px; background:var(--gold-pale); border-radius:0 8px 8px 0; margin:28px 0; font-style:italic; color:var(--navy); font-size:1.02rem; }
.post-body img { border-radius:var(--radius-lg); margin:28px 0; width:100%; }
.post-share { display:flex; align-items:center; gap:12px; padding:20px 0; border-top:1px solid var(--grey-light); border-bottom:1px solid var(--grey-light); margin:40px 0; }
.share-btn { padding:7px 16px; border-radius:100px; border:1.5px solid var(--grey-light); font-size:0.8rem; font-weight:600; cursor:pointer; transition:all 0.2s; }
.share-btn:hover { border-color:var(--gold); color:var(--gold); }

/* ── Post Banner ── */
.post-banner { width:100%; height:420px; object-fit:cover; border-radius:0 0 var(--radius-lg) var(--radius-lg); display:block; }
.post-breadcrumb { font-size:0.75rem; color:rgba(255,255,255,0.45); margin-bottom:16px; }
.post-breadcrumb a { transition:color 0.2s; }
.post-breadcrumb a:hover { color:var(--gold); }
.post-cat-pill { display:inline-block; padding:4px 14px; background:var(--gold); color:var(--navy); border-radius:100px; font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:16px; }
.post-title { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); font-weight:700; color:#fff; line-height:1.15; margin-bottom:16px; }
.post-meta { display:flex; align-items:center; gap:20px; color:rgba(255,255,255,0.55); font-size:0.82rem; padding-bottom:28px; }
.post-author-img { width:36px; height:36px; border-radius:50%; border:2px solid var(--gold); object-fit:cover; }

/* ── Category Filter ── */
.cat-filters { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:36px; }
.cat-filter { padding:7px 18px; border-radius:100px; font-size:0.82rem; font-weight:500; border:1.5px solid var(--grey-light); background:var(--white); color:var(--text-muted); cursor:pointer; transition:all 0.25s; }
.cat-filter.active, .cat-filter:hover { border-color:var(--gold); color:var(--navy); background:var(--gold-pale); }

/* ── Course / Certification Detail Pages ── */
.course-detail-hero { background:var(--navy); padding:80px 0 0; position:relative; overflow:hidden; }
.course-detail-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,151,58,0.12) 0%, transparent 60%); pointer-events:none; }
.course-hero-grid { display:grid; grid-template-columns:1fr 380px; gap:48px; align-items:end; padding-bottom:0; }
.course-hero-badge-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.course-accred-badge { padding:5px 14px; border-radius:100px; background:var(--gold); color:var(--navy); font-size:0.7rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; }
.course-hero-title { font-family:var(--font-display); font-size:clamp(2rem,4vw,3rem); font-weight:700; color:#fff; line-height:1.15; margin-bottom:14px; }
.course-hero-sub { font-size:1rem; color:rgba(255,255,255,0.68); margin-bottom:28px; line-height:1.7; max-width:580px; }
.course-meta-pills { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:32px; }
.course-meta-pill { display:flex; align-items:center; gap:7px; padding:8px 16px; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); border-radius:100px; font-size:0.8rem; color:rgba(255,255,255,0.82); }
.course-cta-card { background:var(--white); border-radius:var(--radius-lg) var(--radius-lg) 0 0; padding:28px 24px; }
.course-price-label { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--grey); margin-bottom:4px; }
.course-price { font-family:var(--font-display); font-size:2rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.course-price-note { font-size:0.78rem; color:var(--text-muted); margin-bottom:20px; }
.course-cta-main { width:100%; padding:14px; background:var(--gold); color:var(--navy); border:none; border-radius:var(--radius); font-weight:700; font-size:0.95rem; cursor:pointer; margin-bottom:10px; transition:all 0.25s; }
.course-cta-main:hover { background:var(--gold-light); box-shadow:0 6px 20px rgba(201,151,58,0.35); }
.course-cta-sec { width:100%; padding:12px; background:transparent; color:var(--navy); border:1.5px solid var(--navy); border-radius:var(--radius); font-weight:600; font-size:0.88rem; cursor:pointer; transition:all 0.25s; }
.course-cta-sec:hover { background:var(--navy); color:var(--white); }
.course-quick-facts { margin-top:16px; padding-top:16px; border-top:1px solid var(--grey-light); display:flex; flex-direction:column; gap:10px; }
.course-quick-fact { display:flex; justify-content:space-between; font-size:0.82rem; }
.cqf-label { color:var(--text-muted); }
.cqf-value { font-weight:600; color:var(--navy); }

/* Course Detail Body */
.course-detail-body { background:var(--off-white); }
.course-detail-nav { background:var(--white); border-bottom:1px solid var(--grey-light); position:sticky; top:66px; z-index:100; }
.course-detail-nav .container { display:flex; gap:0; overflow-x:auto; }
.cdn-tab { padding:16px 22px; font-size:0.85rem; font-weight:500; color:var(--text-muted); border-bottom:2px solid transparent; white-space:nowrap; cursor:pointer; transition:all 0.2s; background:none; border-radius:0; }
.cdn-tab.active, .cdn-tab:hover { color:var(--gold); border-bottom-color:var(--gold); }
.cdn-panel { display:none; }
.cdn-panel.active { display:block; }
.course-overview-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.topic-item { display:flex; align-items:flex-start; gap:14px; padding:14px; background:var(--white); border-radius:var(--radius); border:1px solid var(--grey-light); margin-bottom:10px; transition:border-color 0.25s; }
.topic-item:hover { border-color:var(--gold-pale); }
.topic-num { width:28px; height:28px; border-radius:50%; background:var(--gold); color:var(--navy); font-size:0.72rem; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.topic-title { font-weight:600; font-size:0.9rem; color:var(--navy); }
.topic-desc { font-size:0.82rem; color:var(--text-muted); margin-top:2px; }
.outcome-item { display:flex; align-items:flex-start; gap:10px; margin-bottom:12px; font-size:0.9rem; color:var(--text-body); }
.outcome-item::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; margin-top:2px; }
.batch-row { display:grid; grid-template-columns:1fr 1fr 1fr 1fr auto; gap:16px; align-items:center; padding:18px 22px; background:var(--white); border:1px solid var(--grey-light); border-radius:var(--radius); margin-bottom:10px; transition:border-color 0.25s; }
.batch-row:hover { border-color:var(--gold-pale); }
.batch-label { font-size:0.68rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--grey); margin-bottom:3px; }
.batch-value { font-weight:600; font-size:0.88rem; color:var(--navy); }
.badge-status { padding:4px 12px; border-radius:100px; font-size:0.7rem; font-weight:700; }
.status-open { background:#d4edda; color:#155724; }
.status-filling { background:#fff3cd; color:#856404; }
.status-full { background:#f8d7da; color:#721c24; }

/* ── Gallery Lightbox ── */
.gallery-tabs { display:flex; gap:8px; margin-bottom:28px; flex-wrap:wrap; }
.gallery-tab { padding:8px 20px; border-radius:100px; font-size:0.82rem; font-weight:500; border:1.5px solid var(--grey-light); background:var(--white); color:var(--text-muted); cursor:pointer; transition:all 0.25s; }
.gallery-tab.active, .gallery-tab:hover { border-color:var(--gold); color:var(--navy); background:var(--gold-pale); }
.gallery-masonry { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.gallery-thumb { position:relative; border-radius:var(--radius); overflow:hidden; cursor:pointer; }
.gallery-thumb img { width:100%; height:180px; object-fit:cover; transition:transform 0.35s ease; display:block; }
.gallery-thumb:hover img { transform:scale(1.06); }
.gallery-thumb-overlay { position:absolute; inset:0; background:rgba(13,27,42,0); display:flex; align-items:center; justify-content:center; transition:background 0.3s; }
.gallery-thumb:hover .gallery-thumb-overlay { background:rgba(13,27,42,0.45); }
.gallery-thumb-icon { color:#fff; font-size:1.8rem; opacity:0; transform:scale(0.7); transition:all 0.3s; }
.gallery-thumb:hover .gallery-thumb-icon { opacity:1; transform:scale(1); }
.gallery-thumb.wide img { height:372px; }
.gallery-panel { display:none; }
.gallery-panel.active { display:grid; }

/* Lightbox */
.lightbox { position:fixed; inset:0; background:rgba(10,18,26,0.95); z-index:9999; display:none; align-items:center; justify-content:center; padding:20px; }
.lightbox.open { display:flex; }
.lightbox-inner { position:relative; max-width:900px; width:100%; }
.lightbox-img { width:100%; max-height:80vh; object-fit:contain; border-radius:var(--radius); display:block; }
.lightbox-close { position:absolute; top:-44px; right:0; width:36px; height:36px; background:rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.1rem; cursor:pointer; transition:background 0.2s; border:none; }
.lightbox-close:hover { background:var(--gold); color:var(--navy); }
.lightbox-prev, .lightbox-next { position:absolute; top:50%; transform:translateY(-50%); width:44px; height:44px; background:rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.2rem; cursor:pointer; transition:background 0.2s; border:none; }
.lightbox-prev { left:-56px; }
.lightbox-next { right:-56px; }
.lightbox-prev:hover, .lightbox-next:hover { background:var(--gold); color:var(--navy); }
.lightbox-caption { text-align:center; color:rgba(255,255,255,0.65); font-size:0.85rem; margin-top:12px; }
.lightbox-counter { text-align:center; color:rgba(255,255,255,0.35); font-size:0.75rem; margin-top:4px; font-family:var(--font-mono); }

/* ── Blog Template Note Box ── */
.blog-admin-note { background:#fffbf0; border:1px dashed var(--gold); border-radius:var(--radius); padding:16px 20px; margin-bottom:32px; font-size:0.83rem; color:#7a5a00; }
.blog-admin-note strong { color:var(--gold); }

/* Responsive additions */
@media (max-width: 960px) {
  .blog-layout { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:repeat(2,1fr); }
  .course-hero-grid { grid-template-columns:1fr; }
  .course-overview-grid { grid-template-columns:1fr; }
  .gallery-masonry { grid-template-columns:repeat(2,1fr); }
  .batch-row { grid-template-columns:1fr 1fr; }
  .lightbox-prev { left:-20px; }
  .lightbox-next { right:-20px; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns:1fr; }
  .gallery-masonry { grid-template-columns:repeat(2,1fr); }
  .batch-row { grid-template-columns:1fr 1fr; }
  .cat-filters { gap:6px; }
}

/* ============================================================
   V4 ADDITIONS
   Testimonials carousel · Client logos carousel · Google Reviews
   Footer enhancements · Captcha styling · Security · Responsive fixes
   ============================================================ */

/* ── Testimonial Showcase ── */
.testimonial-showcase {
  background: var(--navy);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.testimonial-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,151,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.testimonial-slider-wrap {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 4px;
}
.testimonial-card-v4 {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-avatar-wrap {
  text-align: center;
}
.testimonial-avatar-v4 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  margin: 0 auto 14px;
  display: block;
}
.testimonial-name-v4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.testimonial-role-v4 {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.testimonial-company-v4 {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.testimonial-stars-v4 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.testimonial-quote-v4 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.testimonial-text-v4 {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-style: italic;
}
.testimonial-programme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 5px 14px;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--gold-light);
}
/* Testimonial Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,151,58,0.1);
}
.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ── Client Logo Carousel ── */
.clients-carousel-section {
  background: var(--off-white);
  padding: 44px 0;
  border-bottom: 1px solid var(--grey-light);
  overflow: hidden;
}
.clients-carousel-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  text-align: center;
  margin-bottom: 28px;
}
.clients-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.clients-track {
  display: flex;
  gap: 0;
  animation: scrollLogos 28s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes scrollLogos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-width: 160px;
  flex-shrink: 0;
}
.client-logo-item img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1.0;
  transition: opacity 0.3s, filter 0.3s;
}
.client-logo-item:hover img {
  opacity: 0.8;
  filter: grayscale(1);
}
.client-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  opacity: 0.4;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.client-logo-item:hover .client-logo-text { opacity: 0.75; }

/* ── Google Reviews Widget ── */
.google-reviews-section {
  background: var(--white);
  padding: var(--section-pad);
}
.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.google-rating-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
}
.google-rating-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.google-stars-row {
  color: #fbbc04;
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.google-review-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.google-logo {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.google-logo span:nth-child(1) { color: #4285F4; }
.google-logo span:nth-child(2) { color: #EA4335; }
.google-logo span:nth-child(3) { color: #FBBC05; }
.google-logo span:nth-child(4) { color: #4285F4; }
.google-logo span:nth-child(5) { color: #34A853; }
.google-logo span:nth-child(6) { color: #EA4335; }
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.google-review-card {
  padding: 24px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}
.google-review-card:hover {
  border-color: #fbbc04;
  box-shadow: 0 4px 20px rgba(251,188,4,0.12);
  transform: translateY(-2px);
}
.google-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.google-reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--grey-light);
}
.google-reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.google-review-date { font-size: 0.73rem; color: var(--grey); margin-top: 2px; }
.google-review-stars { color: #fbbc04; font-size: 0.82rem; letter-spacing: 1px; margin-bottom: 10px; }
.google-review-text { font-size: 0.87rem; color: var(--text-body); line-height: 1.7; }
.google-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 0.7rem;
  color: var(--grey);
}
.google-verified-icon { color: #4285F4; }

/* ── Footer v4 Enhancements ── */
.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.footer-accred-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.footer-accred-chip {
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.footer-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-map-embed iframe {
  display: block;
  width: 100%;
  height: 160px;
  border: 0;
  filter: grayscale(0.7) invert(0.85) contrast(0.9);
  opacity: 0.8;
  transition: filter 0.3s, opacity 0.3s;
}
.footer-map-embed:hover iframe {
  filter: grayscale(0) invert(0) contrast(1);
  opacity: 1;
}
.footer-schema-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin-top: 10px;
}

/* ── hCaptcha / Captcha wrapper ── */
.captcha-wrap {
  margin-bottom: 18px;
  min-height: 78px;
  display: flex;
  align-items: center;
}
.captcha-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Security overlay (right-click disabled message) ── */
.cvi-context-shield {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.85);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.cvi-context-shield.show { display: flex; }
.cvi-context-shield-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  text-align: center;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
}
.cvi-context-shield-box h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.cvi-context-shield-box p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ── Fully Responsive v4 fixes ── */
@media (max-width: 1100px) {
  .testimonial-card-v4 { grid-template-columns: 1fr; gap: 24px; }
  .testimonial-avatar-wrap { display: flex; align-items: center; gap: 16px; text-align: left; }
  .testimonial-avatar-v4 { width: 72px; height: 72px; margin: 0; }
  .google-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .google-reviews-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card-v4 { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .testimonial-card-v4 { padding: 22px; }
  .testimonial-text-v4 { font-size: 0.95rem; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .google-reviews-header { flex-direction: column; align-items: flex-start; }
  .google-rating-box { width: 100%; }
  .clients-track { animation-duration: 18s; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-controls { gap: 12px; }
}

/* ============================================================
   V5 — Line Icons System + Misc fixes
   ============================================================ */

/* Lucide icons loaded via CDN — inline SVG approach for performance */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon svg {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Icon sizes */
.icon-sm svg  { width: 14px; height: 14px; }
.icon-md svg  { width: 18px; height: 18px; }
.icon-lg svg  { width: 22px; height: 22px; }
.icon-xl svg  { width: 28px; height: 28px; }
.icon-2xl svg { width: 36px; height: 36px; }

/* Service icon box with line icon */
.service-icon-box {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  transition: background 0.25s;
}
.service-card:hover .service-icon-box { background: var(--gold); color: var(--white); }
.service-icon-box svg { width: 24px; height: 24px; }

/* Contact info icon with line icon */
.contact-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-icon-wrap svg { width: 18px; height: 18px; }

/* Top bar icons */
.topbar-icon svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }

/* Badge / pill icon */
.hero-badge-icon-svg svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Programme meta icons */
.meta-icon svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -1px; }

/* why-section & includes icons */
.section-icon-box {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold);
}
.section-icon-box svg { width: 22px; height: 22px; }

/* Outcome tick */
.outcome-tick svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2.5; fill: none; flex-shrink: 0; margin-top: 2px; }

/* Google verified icon */
.verified-icon-wrap svg { width: 13px; height: 13px; stroke: #4285F4; stroke-width: 2.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Testimonial programme icon */
.prog-icon svg { width: 13px; height: 13px; stroke: var(--gold-light); stroke-width: 2; fill: none; }

/* Share buttons */
.share-icon svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -2px; margin-right: 4px; }

/* User-select none — comprehensive copy protection */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Allow selection only in genuine content areas */
.post-body, .blog-card-body .blog-card-excerpt,
input, textarea, select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
/* Prevent image drag */
img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}
/* But allow pointer events on clickable images */
a img, .gallery-thumb img, .blog-card-img, .sidebar-post-img {
  pointer-events: auto;
}

/* ============================================================
   V6 — Footer Compressed + Blog CMS + Form Updates
   ============================================================ */

/* Footer link compression */
.footer-links a {
  font-size: 0.82rem;
  margin-bottom: 5px;
  line-height: 1.3;
  display: block;
}
.footer-heading {
  font-size: 0.9rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.footer-grid {
  gap: 32px;
}
.footer-about-text {
  font-size: 0.82rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
.footer-social {
  gap: 6px;
  margin-bottom: 10px;
}
.social-btn {
  width: 30px;
  height: 30px;
}
.footer-accred-row {
  gap: 6px;
  margin: 10px 0;
}
.footer-accred-chip {
  font-size: 0.62rem;
  padding: 3px 8px;
}
.footer-schema-text {
  font-size: 0.7rem;
}
.footer-bottom {
  padding: 16px 0;
  font-size: 0.75rem;
}

/* Blog CMS styles */
.blog-cms-notice {
  background: linear-gradient(135deg, var(--navy), #1a3050);
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  color: var(--white);
}
.blog-cms-notice h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.blog-cms-notice p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.6;
}
.cms-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.cms-step {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.cms-step-num {
  width: 28px; height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--navy);
  margin: 0 auto 8px;
}
.cms-step-title { font-size: 0.82rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.cms-step-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

@media (max-width: 640px) {
  .cms-steps { grid-template-columns: 1fr; }
}

/* ================================================================
   V6 OVERRIDES — Footer compression + Blog CMS + misc
   ================================================================ */
.footer-links a {
  font-size: 0.82rem;
  margin-bottom: 4px;
  line-height: 1.3;
  display: block;
}
.footer-heading {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  margin-bottom: 11px;
  padding-bottom: 7px;
}
.footer-grid { gap: 28px; }
.footer-about-text { font-size: 0.81rem; line-height: 1.62; margin-bottom: 10px; }
.footer-social { gap: 5px; margin-bottom: 9px; }
.social-btn { width: 29px; height: 29px; }
.footer-accred-row { gap: 5px; margin: 8px 0; }
.footer-accred-chip { font-size: 0.61rem; padding: 2px 8px; }
.footer-schema-text { font-size: 0.68rem; }
.footer-bottom { padding: 14px 0; font-size: 0.74rem; }

/* ============================================================
   V7 — Icon sizing fixes + Cert card improvements + UI polish
   ============================================================ */

/* Standardised icon sizing across all components */
.icon svg { transition: none; }
.icon-sm svg  { width: 14px !important; height: 14px !important; }
.icon-md svg  { width: 18px !important; height: 18px !important; }
.icon-lg svg  { width: 22px !important; height: 22px !important; }
.icon-xl svg  { width: 26px !important; height: 26px !important; }
.icon-2xl svg { width: 32px !important; height: 32px !important; }

/* Service icon box — consistent 56px box, 26px icon */
.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.service-icon-box svg,
.service-icon-box .icon svg {
  width: 26px !important;
  height: 26px !important;
}
.service-card:hover .service-icon-box { background: var(--gold); color: var(--white); }

/* Certification card improvements */
.cert-card-top {
  padding: 28px 28px 24px;
  position: relative;
}
.cert-code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.cert-name {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 14px;
}
.cert-tag {
  padding: 3px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}
.cert-body { padding: 24px; }
.cert-meta-item {
  padding: 9px 12px;
}
.cert-meta-label { font-size: 0.65rem; }
.cert-meta-value { font-size: 0.83rem; }
.cert-desc { font-size: 0.86rem; line-height: 1.65; }
.cert-cta .btn { font-size: 0.83rem; padding: 9px 16px; }

/* Programme meta pills — icon + text aligned */
.course-meta-pill .icon,
.course-meta-pill .icon svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}
.course-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
}

/* Hero badge icons */
.hero-badge .icon svg { width: 13px !important; height: 13px !important; }

/* Contact info icons — consistent */
.contact-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  border-radius: var(--radius);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-icon svg,
.contact-info-icon .icon svg { width: 20px !important; height: 20px !important; }

/* Section icon boxes (why section, includes, etc.) */
.section-icon-box {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--gold);
}
.section-icon-box svg { width: 22px !important; height: 22px !important; }

/* Social button icons */
.social-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-btn svg { width: 15px !important; height: 15px !important; }

/* Footer adjustments for v7 */
.footer-about-text { font-size: 0.84rem; line-height: 1.72; margin-bottom: 12px; }
.footer-schema-text { font-size: 0.72rem; color: rgba(255,255,255,0.3); line-height: 1.5; margin-top: 8px; }
.footer-accred-chip { font-size: 0.65rem; padding: 3px 10px; }
.footer-accred-row { gap: 6px; margin: 12px 0 8px; }
.footer-links a { font-size: 0.84rem; line-height: 1.4; margin-bottom: 5px; display: block; }
.footer-heading { font-size: 0.9rem; margin-bottom: 14px; }

/* Outcome tick fix */
.outcome-tick svg, .outcome-tick.icon svg { 
  width: 14px !important; height: 14px !important;
  stroke: var(--gold); stroke-width: 2.5; flex-shrink: 0; margin-top: 2px;
}

/* ── Responsive icon fixes ── */
@media (max-width: 960px) {
  .service-icon-box { width: 50px; height: 50px; }
  .service-icon-box svg { width: 24px !important; height: 24px !important; }
  .cert-card-top { padding: 22px 22px 18px; }
  .cert-name { font-size: 1.1rem; }
}
@media (max-width: 640px) {
  .service-icon-box { width: 46px; height: 46px; }
  .service-icon-box svg { width: 22px !important; height: 22px !important; }
  .cert-grid { gap: 18px; }
  .cert-body { padding: 18px; }
  .course-meta-pills { gap: 8px; }
  .course-meta-pill { font-size: 0.78rem; }
  .section-icon-box { width: 44px; height: 44px; }
  .section-icon-box svg { width: 20px !important; height: 20px !important; }
  .contact-info-icon { width: 38px; height: 38px; }
  .contact-info-icon svg { width: 17px !important; height: 17px !important; }
}

/* ── CVI Advantage icons — fix size ── */
.advantage-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,151,58,0.15);
  border-radius: var(--radius);
  margin-bottom: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.advantage-icon svg { width: 26px !important; height: 26px !important; }


/* Programme badge image inside sidebar CTA card */
.cert-programme-badge {
  display: block;
  width: 100px;
  height: auto;
  margin: 16px auto 4px;
  object-fit: contain;
}

.cert-programme-badge-wrap {
  text-align: center;
  padding-top: 16px;
  margin-top: 12px;
  border-top: 1px solid var(--grey-light);
}

.cert-programme-badge-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Enrol section — responsive two-column layout */
@media (max-width: 768px) {
  .enrol-two-col {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

/* ============================================================
   OUTFIT + INTER FONT SYSTEM OVERRIDES
   Outfit replaces Cormorant Garamond as display font.
   Inter replaces DM Sans as body font.
   ============================================================ */

/* Outfit works better with slightly tighter line-height for headings */
.section-title,
.hero-headline,
.page-hero-title,
.course-hero-title,
.post-title {
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Hero headline - Outfit renders bolder, slightly reduce size */
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
}

/* Section titles - Outfit 700 is already strong */
.section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Outfit doesn't need italic for decorative use */
.hero-headline em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold-light);
}

/* Testimonial quote mark — was huge decorative serif, now smaller sans */
.testimonial-quote,
.testimonial-quote-v4 {
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
  opacity: 0.25;
}

/* Logo - Outfit looks great at this weight */
.logo-main {
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Numbers/stats - Outfit is very clean for numerals */
.hero-stat-num,
.number-val,
.google-rating-num {
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* Card titles with Outfit */
.program-card-title,
.service-title,
.cert-name,
.training-card-title,
.modal-title,
.blog-card-title,
.sidebar-widget-title {
  letter-spacing: -0.01em;
}

/* Post body headings */
.post-body h2,
.post-body h3 {
  letter-spacing: -0.015em;
}

/* CTA banner title */
.cta-banner-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Inter body font - very clean, minimal adjustments needed */
body {
  font-size: 15.5px;
  line-height: 1.72;
}

/* Form elements with Inter */
.form-control {
  font-size: 0.88rem;
}

/* Hardcoded font in success message (JS) handled separately */



/* Group Coaching section — responsive 3-column layout */
@media (max-width: 960px) {
  .coaching-three-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
