/* ==========================================================================
   LOGICA AVIATION — Modern Design System 2026
   Editorial, Premium, Clean
   ========================================================================== */


/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Brand Colors */
  --gold:      #C9A227;
  --gold-dark: #A07C18;
  --navy:      #0D1B2A;
  --yellow:    #FFD60A;

  /* Neutrals */
  --white:     #FFFFFF;
  --off-white: #F9F8F6;
  --gray-50:   #F5F5F4;
  --gray-100:  #E8E8E5;
  --gray-300:  #ACACAC;
  --gray-600:  #5C5C5C;
  --gray-900:  #1A1A1A;

  /* Typography */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'Geist', system-ui, -apple-system, sans-serif;

  /* Spacing Scale */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg:  0 16px 40px rgba(0,0,0,0.1);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms;
  --t-mid:  300ms;
  --t-slow: 600ms;
}

/* ==========================================================================
   2. 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(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ==========================================================================
   3. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--s6);
}

.section {
  padding: var(--s20) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--s12) 0; }
  .container { padding: 0 var(--s5); }
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--gray-900);
}

h3.heading {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.label-gold {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-full);
  border: none;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-100);
}
.btn-outline:hover {
  border-color: var(--gray-900);
  background: var(--gray-900);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--gray-900);
  padding-left: 0;
}
.btn-ghost:hover { gap: 0.75rem; }
.btn-ghost .arrow {
  width: 32px; height: 32px;
  background: var(--gray-900);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--t-fast) var(--ease);
}
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ================================================================
   HEADER - UPDATED
================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-mid) var(--ease);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: var(--s8);
}

/* Logo - Left */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Navigation - Center */
.nav-primary {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.5rem 0.875rem;
  border-radius: var(--r-full);
  transition: all var(--t-fast) var(--ease);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--gray-900);
  background: var(--gray-50);
}

.nav-link.active {
  color: var(--gray-900);
  background: var(--gray-50);
  position: relative;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Actions - Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.nav-actions .btn-outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}

.nav-actions .btn-outline:hover {
  border-color: var(--gray-900);
  background: var(--gray-900);
  color: white;
}

.nav-actions .btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.nav-actions .btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  color: var(--gray-900);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================================================================
   MOBILE NAVIGATION
================================================================= */

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: var(--s6);
  overflow-y: auto;
  flex-direction: column;
  gap: var(--s2);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  padding: var(--s4);
  border-radius: var(--r-md);
  color: var(--gray-900);
  text-decoration: none;
  transition: background var(--t-fast) var(--ease);
}

.mobile-nav-link:hover {
  background: var(--gray-50);
}

.mobile-nav-link.active {
  background: var(--gray-50);
  color: var(--gold-dark);
}

/* ================================================================
   RESPONSIVE HEADER
================================================================= */

@media (max-width: 992px) {
  .nav-primary {
    display: none;
  }

  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 68px;
    gap: var(--s4);
  }

  .logo img {
    height: 42px;
  }

  .mobile-nav {
    top: 68px;
    padding: var(--s5);
  }

  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
  }
}

/* ==========================================================================
   7. HERO — EDITORIAL LAYOUT
   ========================================================================== */
.hero {
  padding: var(--s8) 0 var(--s12);
  background: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s10);
  align-items: center;
}

/* Left content */
.hero-content { padding-top: var(--s4); }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FBF5E4;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--r-full);
  padding: 0.375rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: var(--s6);
}
.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin-bottom: var(--s6);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 420px;
  margin-bottom: var(--s8);
}

.hero-ctas {
  display: flex;
  gap: var(--s4);
  align-items: center;
  flex-wrap: wrap;
}

.hero-ctas .btn-outline {
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  border: 2px solid var(--gray-200);
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-ctas .btn-outline:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.15);
}

.hero-ctas .btn-outline i {
  transition: transform 0.3s ease;
}

.hero-ctas .btn-outline:hover i {
  transform: translateX(4px);
}

.hero-stats {
  display: flex;
  gap: var(--s8);
  margin-top: var(--s10);
  padding-top: var(--s8);
  border-top: 1px solid var(--gray-100);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* Right image slider */
.hero-slider-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-50);
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform var(--t-slow) var(--ease);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: var(--s5);
  left: var(--s5);
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-md);
}
.slider-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gray-900);
  color: white;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: background var(--t-fast) var(--ease);
}
.slider-btn:hover { background: var(--gold); }
.slider-counter {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  min-width: 40px;
  text-align: center;
}

/* Announcement bar on hero image */
.hero-announce {
  position: absolute;
  bottom: var(--s5);
  right: var(--s5);
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  max-width: 200px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,162,39,0.3);
}
.hero-announce strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}
.hero-announce span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-slider-wrap { aspect-ratio: 16/9; }
  .hero-stats { gap: var(--s6); }
  .hero-headline { font-size: clamp(3rem, 8vw, 5rem); }
}

/* ==========================================================================
   8. MARQUEE / TICKER
   ========================================================================== */
.marquee-section {
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: var(--s8);
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  flex-shrink: 0;
}
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   9. TRUST BAR
   ========================================================================== */
.trust-bar {
  background: var(--navy);
  padding: var(--s10) 0;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s8);
}
.trust-item {
  text-align: center;
  color: white;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trust-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

@media (max-width: 768px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s6); }
  .trust-num { font-size: 2rem; }
}

/* ==========================================================================
   10. SECTION HEADER
   ========================================================================== */
.section-header {
  margin-bottom: var(--s12);
}
.section-header.center { text-align: center; }
.section-header .label { margin-bottom: var(--s4); }
.section-header .display-md { margin-bottom: var(--s4); }
.section-header .body-lg { max-width: 560px; }
.section-header.center .body-lg { margin: 0 auto; }

/* ==========================================================================
   11. COURSE CARDS
   ========================================================================== */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: var(--s6);
}

.course-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-mid) var(--ease);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.course-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.course-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.course-card:hover .course-card__img-wrap img {
  transform: scale(1.06);
}

.course-card__category-pill {
  position: absolute;
  top: var(--s4); left: var(--s4);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-900);
}

.course-card__body {
  padding: var(--s6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--s3);
  line-height: 1.2;
}
.course-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: var(--s6);
  flex: 1;
}
.course-card__meta {
  display: flex;
  gap: var(--s6);
  margin-bottom: var(--s5);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--gray-100);
}
.course-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.course-card__meta-item .label { color: var(--gray-300); }
.course-card__meta-item span:last-child {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-900);
}



/* ==========================================================================
   12. PATHWAY / JOURNEY
   ========================================================================== */
.pathway-section { background: var(--off-white); }

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.pathway-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--gray-100);
}

.pathway-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s4);
  position: relative;
}

.pathway-icon {
  width: 64px; height: 64px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gray-900);
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-sm);
}
.pathway-step:hover .pathway-icon {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pathway-step-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold-dark);
  margin-bottom: var(--s2);
}
.pathway-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--s2);
}
.pathway-step-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .pathway-grid {
    grid-template-columns: 1fr;
    gap: var(--s4);
  }
  .pathway-grid::before { display: none; }
  .pathway-step { flex-direction: row; text-align: left; gap: var(--s4); align-items: flex-start; }
  .pathway-icon { flex-shrink: 0; }
}

/* ==========================================================================
   ABOUT LOGICA - FIXED
   ========================================================================== */
.about-logica-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}

.about-logica-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-logica-content .label-gold {
  margin-bottom: 1rem;
}

.about-logica-content .body-lg {
  max-width: 700px;
  margin-bottom: 1.1rem;
}

.about-logica-content .btn {
  margin-top: .75rem;
}

.about-logica-card {
  background: var(--navy, #0D1B2A);
  color: #fff;
  padding: 2.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 22px 60px rgba(13, 27, 42, .16);
}

.about-logica-card__eyebrow {
  color: var(--gold, #D4AF37);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-logica-points {
  display: grid;
  gap: 1.15rem;
}

.about-logica-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .9rem;
  align-items: start;
}

.about-logica-point > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--gold, #D4AF37);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-logica-point strong {
  display: block;
  font-size: .98rem;
  margin-bottom: .22rem;
}

.about-logica-point span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .about-logica-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-logica-content .body-lg {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .about-logica-card {
    padding: 1.5rem;
  }
  
  .about-logica-point {
    grid-template-columns: 36px 1fr;
    gap: .75rem;
  }
  
  .about-logica-point > i {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* ================================================================
   CAREER OPPORTUNITIES
================================================================= */
.career-section {
  background: var(--white);
  padding: var(--s16) 0;
}

.career-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.career-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.career-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 ease;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.08);
  border-color: var(--gold);
}

.career-card:hover::before {
  transform: scaleX(1);
}

.career-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.career-card:hover .career-card-icon {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.05);
}

.career-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.career-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.career-card-list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.career-card-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.career-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-top: 0.5rem;
}

.career-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 3rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
}

.career-note i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .career-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .career-card {
    padding: 1.5rem;
  }

  .career-card h3 {
    font-size: 1rem;
  }

  .career-card-list li {
    font-size: 0.85rem;
    padding: 0.3rem 0 0.3rem 1.25rem;
  }

  .career-note {
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    padding: 1rem;
  }
}

/* ==========================================================================
   PLACED COMPANIES - FIXED
   ========================================================================== */
.placed-companies-section {
  background: #fff;
  padding: var(--s16) 0;
}

.placed-companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.placed-company-card {
  min-height: 200px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(13, 27, 42, .1);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 12px 32px rgba(13,27,42,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.placed-company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(13,27,42,.1);
}

.placed-company-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--navy, #0D1B2A);
  margin-bottom: .75rem;
}

.placed-company-card span {
  font-size: .82rem;
  line-height: 1.5;
  color: #68707a;
}

.placed-companies-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  margin-top: 2rem;
  color: #747b84;
  font-size: .82rem;
}

.placed-companies-note i {
  color: var(--gold, #D4AF37);
}

@media (max-width: 992px) {
  .placed-companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .placed-companies-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .placed-company-card {
    min-height: 150px;
    padding: 1.25rem 1rem;
  }
  
  .placed-company-logo {
    font-size: 1.2rem;
  }
  
  .placed-company-card span {
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .placed-companies-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   13. YOUTUBE SHORTS CAROUSEL
   ========================================================================== */
.ig-video-section {
  overflow: hidden;
  background: var(--white);
  padding: var(--s8) 0;
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: var(--s6);
}

.ig-video-carousel {
  position: relative;
  margin-top: 2.4rem;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.ig-video-track {
  position: relative;
  width: 100%;
  max-width: 1120px;
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-video-card {
  position: absolute;
  width: 250px;
  aspect-ratio: 9 / 12;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, rgba(13,27,42,.98), rgba(38,17,69,.96));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 50px rgba(13,27,42,.2);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease, z-index .45s ease;
  cursor: pointer;
}

.ig-video-card--main {
  z-index: 5;
}

.ig-video-card--main-1 { transform: translateX(-390px) scale(.86); z-index: 4; }
.ig-video-card--main-2 { transform: translateX(-130px) scale(1); z-index: 7; }
.ig-video-card--main-3 { transform: translateX(130px) scale(1); z-index: 7; }
.ig-video-card--main-4 { transform: translateX(390px) scale(.86); z-index: 4; }

.ig-video-card--back {
  width: 225px;
  opacity: .62;
  filter: saturate(.7);
  z-index: 2;
}

.ig-video-card--back-1 { transform: translateX(-520px) scale(.76) rotate(-3deg); }
.ig-video-card--back-2 { transform: translateX(0) translateY(-20px) scale(.68); opacity: .28; z-index: 1; }
.ig-video-card--back-3 { transform: translateX(520px) scale(.76) rotate(3deg); }

.ig-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  text-align: center;
  padding: 1.25rem;
  position: relative;
  background: radial-gradient(circle at 30% 20%, rgba(212,175,55,.18), transparent 35%),
              radial-gradient(circle at 80% 80%, rgba(104,71,156,.2), transparent 35%);
}

.ig-video-placeholder > i {
  font-size: 3rem;
  color: var(--gold, #D4AF37);
}

.ig-video-placeholder span {
  font-size: .95rem;
  font-weight: 700;
}

.ig-video-placeholder small {
  color: rgba(255,255,255,.52);
  font-size: .68rem;
}

.ig-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13,27,42,.12);
  border-radius: 50%;
  background: #fff;
  color: var(--navy, #0D1B2A);
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(13,27,42,.12);
}

.ig-carousel-btn:hover {
  background: var(--navy, #0D1B2A);
  color: #fff;
}

.ig-carousel-btn--prev { left: 0; }
.ig-carousel-btn--next { right: 0; }

.ig-carousel-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}

.ig-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9cdd1;
  cursor: pointer;
  transition: all .25s ease;
}

.ig-carousel-dots button.active {
  width: 24px;
  border-radius: 99px;
  background: var(--gold, #D4AF37);
}

/* YouTube Thumbnail Styles */
.yt-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.yt-placeholder {
  position: relative;
  background: #0a0a0a;
  cursor: pointer;
  overflow: hidden;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  transition: all 0.3s ease;
  gap: 0.5rem;
  z-index: 2;
}

.play-overlay i {
  font-size: 3rem;
  color: #ff0000;
  transition: all 0.3s ease;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.play-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: all 0.3s ease;
}

.yt-placeholder:hover .play-overlay {
  background: rgba(0, 0, 0, 0.6);
}

.yt-placeholder:hover .play-overlay i {
  transform: scale(1.15);
}

.yt-placeholder:hover .play-overlay span {
  opacity: 1;
}

/* When video is playing */
.ig-video-card.playing .yt-placeholder {
  display: none;
}

.ig-video-card.playing .yt-iframe-wrapper {
  display: block !important;
  width: 100%;
  height: 100%;
}

.yt-iframe-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.yt-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Dark gradient overlay for video cards */
.ig-video-card .ig-video-placeholder {
  position: relative;
  background: #0a0a0a;
}

/* YouTube Shorts specific styles */
.ig-video-card.yt-shorts {
  aspect-ratio: 9 / 16;
}

.ig-video-card.yt-shorts .yt-thumbnail {
  object-fit: cover;
  object-position: center;
}

.ig-video-card.yt-shorts .play-overlay i {
  font-size: 2.8rem;
}

.ig-video-card .shorts-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive YouTube Carousel */
@media (max-width: 1100px) {
  .ig-video-card--main-1 { transform: translateX(-290px) scale(.82); }
  .ig-video-card--main-4 { transform: translateX(290px) scale(.82); }
  .ig-video-card--back-1 { transform: translateX(-400px) scale(.68); }
  .ig-video-card--back-3 { transform: translateX(400px) scale(.68); }
}

@media (max-width: 800px) {
  .ig-video-carousel {
    min-height: 400px;
  }

  .ig-video-track {
    height: 400px;
  }

  .ig-video-card {
    width: 205px;
  }

  .ig-video-card--main-1 { transform: translateX(-115px) scale(.78); opacity: .5; z-index: 4; }
  .ig-video-card--main-2 { transform: translateX(0) scale(.94); z-index: 8; }
  .ig-video-card--main-3 { transform: translateX(115px) scale(.78); opacity: .5; z-index: 4; }
  .ig-video-card--main-4 { transform: translateX(0) translateY(12px) scale(.68); opacity: .25; z-index: 2; }

  .ig-video-card--back-1,
  .ig-video-card--back-2,
  .ig-video-card--back-3 {
    opacity: 0;
    pointer-events: none;
  }

  .ig-carousel-btn--prev { left: 5px; }
  .ig-carousel-btn--next { right: 5px; }

  .ig-video-card.yt-shorts {
    aspect-ratio: 9 / 16;
  }
  
  .ig-video-card.yt-shorts .play-overlay i {
    font-size: 2.2rem;
  }

  .play-overlay i {
    font-size: 2.5rem;
  }
  
  .play-overlay span {
    font-size: 0.75rem;
  }
}

@media (max-width: 520px) {
  .ig-video-card {
    width: 190px;
  }

  .ig-video-card--main-1 { transform: translateX(-92px) scale(.72); }
  .ig-video-card--main-3 { transform: translateX(92px) scale(.72); }
}

/* ==========================================================================
   14. WHY LOGICA — FEATURES
   ========================================================================== */
.features-section { background: var(--navy); }
.features-section .section-header .display-md,
.features-section .section-header .body-lg { color: white; }
.features-section .section-header .label { color: rgba(255,255,255,0.4); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--s5);
}

.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: all var(--t-mid) var(--ease);
}
.feature-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(201,162,39,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: var(--s5);
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--s3);
}
.feature-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ================================================================
   WHY CHOOSE US - REDESIGNED
================================================================= */
.why-choose-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}

.why-choose-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.why-choose-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 27, 42, 0.06);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
}

.why-choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.08);
  border-color: var(--gold);
}

.why-choose-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-choose-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(13, 27, 42, 0.04);
  line-height: 1;
  font-weight: 400;
  pointer-events: none;
}

.why-choose-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.why-choose-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .why-choose-card {
    padding: 1.5rem;
  }
  
  .why-choose-number {
    font-size: 2rem;
    top: 1.25rem;
    right: 1.5rem;
  }
}


/* ================================================================
   ALUMNI SECTION - REDESIGNED
================================================================= */
.alumni-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}

.alumni-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.alumni-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.alumni-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
  border-color: var(--gold);
}

.alumni-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-50);
}

.alumni-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alumni-card:hover .alumni-card-image img {
  transform: scale(1.05);
}

.alumni-card-content {
  padding: 1.5rem 1.25rem 1.5rem;
}

.alumni-card-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
}

.alumni-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.alumni-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.alumni-card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--gray-300);
}

.alumni-card-location i {
  color: var(--gold);
  font-size: 0.9rem;
}

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

.alumni-cta .btn {
  padding: 0.875rem 2.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .alumni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 600px) {
  .alumni-section {
    padding: var(--s12) 0;
  }

  .alumni-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .alumni-card-content {
    padding: 1rem 0.9rem;
  }

  .alumni-card h3 {
    font-size: 0.95rem;
  }

  .alumni-card p {
    font-size: 0.78rem;
  }

  .alumni-card-badge {
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
  }

  .alumni-card-location {
    font-size: 0.7rem;
  }
}

@media (max-width: 400px) {
  .alumni-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================================================
   15. PLACEMENTS SECTION
   ========================================================================== */
/* ================================================================
   PLACED LOGOS SECTION - IMAGE LOGOS
================================================================= */
.placed-logos-section {
  background: var(--white);
  padding: var(--s16) 0;
}

.placed-logos-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.placed-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 3rem;
  align-items: center;
}

.placed-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: var(--r-md);
}

.placed-logo-item:hover {
  transform: scale(1.05);
}

.placed-logo-item img {
  width: 100%;
  max-width: 160px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.placed-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.placed-logos-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 3rem;
  color: #747b84;
  font-size: 0.82rem;
}

.placed-logos-note i {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 992px) {
  .placed-logos-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .placed-logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .placed-logo-item img {
    max-height: 60px;
  }
}

@media (max-width: 500px) {
  .placed-logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .placed-logo-item img {
    max-height: 50px;
  }

  .placed-logos-note {
    font-size: 0.7rem;
    flex-wrap: wrap;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .placed-logos-grid {
    gap: 0.75rem;
  }

  .placed-logo-item img {
    max-height: 40px;
  }
}

/* ==========================================================================
   16. PROCESS SECTION
   ========================================================================== */
.process-section { background: var(--off-white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s5);
  counter-reset: step;
}

.process-step {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  border: 1px solid var(--gray-100);
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: var(--s6);
  right: var(--s6);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gray-100);
  line-height: 1;
}
.process-step__icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: var(--s5);
}
.process-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--s3);
}
.process-step__desc {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ==========================================================================
   17. CTA BAND
   ========================================================================== */
.cta-band {
  background: var(--navy);
  padding: var(--s16) 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
  flex-wrap: wrap;
}
.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: white;
  line-height: 1.1;
  max-width: 600px;
}
.cta-band__heading em { font-style: italic; }

.btn-white {
  background: white;
  color: var(--gray-900);
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--t-fast) var(--ease);
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.5);
  padding: var(--s16) 0 var(--s8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s8);
}

.footer-col__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--s5);
}
.footer-col__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--s6);
}
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: var(--s4);
  font-size: 0.85rem;
  align-items: flex-start;
}
.footer-contact-item i { font-size: 1rem; color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }

.footer-col__heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--s6);
}
.footer-links li { margin-bottom: var(--s3); }
.footer-links a {
  font-size: 0.875rem;  
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast) var(--ease);
}
.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: white; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   19. WHATSAPP FLOAT
   ========================================================================== */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: all var(--t-fast) var(--ease);
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}

/* ==========================================================================
   20. ENQUIRY MODAL
   ========================================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--s4);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: white;
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  animation: popIn 0.25s var(--ease) forwards;
  box-shadow: var(--shadow-lg);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s6) var(--s6) var(--s5);
  border-bottom: 1px solid var(--gray-100);
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray-900);
}
.modal-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-50);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-600);
  font-size: 1rem;
  transition: all var(--t-fast) var(--ease);
}
.modal-close-btn:hover { background: var(--gray-100); color: var(--gray-900); }

.modal-body { padding: var(--s6); }

.form-field { margin-bottom: var(--s4); }
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: var(--s2);
  letter-spacing: 0.02em;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 0.875rem var(--s4);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color var(--t-fast) var(--ease);
  appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

/* ==========================================================================
   21. PAGE HERO (inner pages)
   ========================================================================== */
.page-hero {
  background: var(--navy);
  padding: var(--s20) 0 var(--s16);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 60%);
}
.page-hero__tag { margin-bottom: var(--s5); }
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--s6);
  position: relative;
  z-index: 1;
}
.page-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   22. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   23. GALLERY GRID
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  margin-top: var(--s6);
}
.gallery-item {
  aspect-ratio: 3/4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--gray-50);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s2);
  }
}

/* Footer logo */

.site-footer a.logo { margin-bottom: 1.25rem; display: inline-flex; }

/* ==========================================================================
   24. GOLD THEME FINAL POLISH
   ========================================================================== */
.marquee-dot { background: var(--gold); }
.trust-bar { background: var(--navy); }
.feature-card__icon {
  background: rgba(201,162,39,0.15);
  color: var(--gold);
}
.course-card__category-pill {
  background: var(--navy);
  color: var(--gold);
}
.process-step__icon {
  background: #FBF5E4;
  color: var(--gold-dark);
}
.cta-band__heading { color: white; }
.slider-btn:hover { background: var(--gold); color: var(--navy); }
.nav-link.active {
  color: var(--gray-900);
  background: var(--gray-50);
  position: relative;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-contact-item i { color: var(--gold); }
.page-hero__tag { color: var(--gold) !important; }
.placement-card:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,162,39,0.15); }
.course-card:hover { border-color: var(--gold); box-shadow: 0 16px 40px rgba(201,162,39,0.1); }
.cta-band { border-top: 2px solid rgba(201,162,39,0.3); }
.btn-ghost .arrow { background: var(--navy); }
.btn-ghost:hover .arrow { background: var(--gold); color: var(--navy); }
.modal-close-btn:hover { background: #FBF5E4; color: var(--gold-dark); }
.form-field input:focus, .form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.pathway-step:hover .pathway-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ==========================================================================
   25. PRODUCTION / ACCESSIBILITY / UX POLISH
   ========================================================================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.45);
  outline-offset: 3px;
}

html,
body {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.btn,
.btn-white,
.btn-ghost,
.slider-btn,
.menu-toggle,
.modal-close-btn {
  -webkit-tap-highlight-color: transparent;
}

.btn:active,
.btn-white:active,
.btn-ghost:active {
  transform: translateY(0);
}

/* ==========================================================================
   26. HERO - MOBILE REFINEMENT
   ========================================================================== */
@media (max-width: 600px) {
  .hero {
    padding: var(--s6) 0 var(--s10);
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-tag {
    margin-bottom: var(--s5);
    font-size: 0.72rem;
  }

  .hero-headline {
    font-size: clamp(3rem, 15vw, 4.5rem);
    line-height: 0.92;
    margin-bottom: var(--s5);
  }

  .hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--s6);
  }

  .hero-ctas {
    gap: var(--s3);
  }

  .hero-ctas .btn {
    min-height: 48px;
  }

  .hero-stats {
    gap: var(--s4);
    margin-top: var(--s8);
    padding-top: var(--s6);
    justify-content: space-between;
  }

  .hero-stat {
    min-width: 0;
  }

  .hero-stat-num {
    font-size: 1.7rem;
  }

  .hero-stat-label {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-slider-wrap {
    aspect-ratio: 4 / 3;
    border-radius: var(--r-lg);
  }

  .slider-nav {
    left: var(--s3);
    bottom: var(--s3);
  }

  .hero-announce {
    right: var(--s3);
    bottom: var(--s3);
    max-width: 165px;
    padding: 0.65rem 0.75rem;
  }

  .hero-announce strong {
    font-size: 0.76rem;
  }

  .hero-announce span {
    font-size: 0.68rem;
    line-height: 1.35;
  }
}

/* ==========================================================================
   27. NAVIGATION - MOBILE
   ========================================================================== */
@media (max-width: 900px) {
  .header-inner {
    height: 72px;
  }

  .logo img {
    height: 46px;
  }

  .mobile-nav {
    top: 72px;
    padding: var(--s5);
  }

  .mobile-nav-link {
    padding: 0.9rem 1rem;
  }
}

/* ==========================================================================
   28. COURSES - CONSISTENT CARD HEIGHT
   ========================================================================== */
.course-card__img-wrap img {
  display: block;
}

.course-card__body {
  min-height: 310px;
}

@media (max-width: 768px) {
  .course-card__body {
    min-height: 0;
    padding: var(--s5);
  }

  .course-card__title {
    font-size: 1.4rem;
  }

  .course-card__desc {
    font-size: 0.88rem;
  }
}

/* ==========================================================================
   29. PATHWAY - MOBILE CONNECTOR
   ========================================================================== */
@media (max-width: 768px) {
  .pathway-step {
    padding: var(--s3) 0;
  }

  .pathway-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 76px;
    bottom: -16px;
    width: 1px;
    background: var(--gray-100);
  }

  .pathway-icon {
    margin-bottom: 0;
  }
}

/* ==========================================================================
   30. FEATURES - RESPONSIVE SPACING
   ========================================================================== */
@media (max-width: 600px) {
  .feature-card {
    padding: var(--s6);
  }
}

/* ==========================================================================
   31. PLACEMENTS - MOBILE SCROLL
   ========================================================================== */
@media (max-width: 700px) {
  .placements-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--s4);
    padding-bottom: var(--s2);
    scrollbar-width: thin;
  }

  .placement-card {
    min-width: min(88vw, 340px);
    scroll-snap-align: start;
  }
}

/* ==========================================================================
   32. PROCESS - MOBILE
   ========================================================================== */
@media (max-width: 600px) {
  .process-step {
    padding: var(--s6);
  }

  .process-step::before {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   33. CTA - MOBILE
   ========================================================================== */
@media (max-width: 700px) {
  .cta-band {
    padding: var(--s12) 0;
  }

  .cta-band-inner {
    align-items: flex-start;
  }

  .cta-band__heading {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .cta-band-inner > div {
    width: 100%;
  }

  .cta-band-inner .btn-white {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   34. FOOTER - MOBILE
   ========================================================================== */
@media (max-width: 600px) {
  .site-footer {
    padding-top: var(--s12);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    gap: var(--s4) !important;
  }
}

/* ==========================================================================
   35. WHATSAPP FLOAT - MOBILE SAFE AREA
   ========================================================================== */
.wa-float {
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  right: max(1.25rem, env(safe-area-inset-right));
}

@media (max-width: 600px) {
  .wa-float {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   36. MODAL - BETTER MOBILE EXPERIENCE
   ========================================================================== */
.modal-overlay {
  overscroll-behavior: contain;
}

.modal-box {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.form-field input,
.form-field select {
  min-height: 48px;
}

.form-field input::placeholder {
  color: var(--gray-300);
  opacity: 1;
}

@media (max-width: 600px) {
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal-box {
    max-width: 100%;
    max-height: 92vh;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }

  .modal-header {
    padding: var(--s5);
  }

  .modal-body {
    padding: var(--s5);
  }
}

/* ==========================================================================
   37. PAGE HERO - MOBILE
   ========================================================================== */
@media (max-width: 600px) {
  .page-hero {
    padding: var(--s12) 0 var(--s10);
  }

  .page-hero__heading {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .page-hero__desc {
    font-size: 1rem;
  }
}

/* ==========================================================================
   38. PERFORMANCE / MOTION
   ========================================================================== */
.hero-slide img,
.course-card__img-wrap img,
.gallery-item img,
.placement-avatar {
  content-visibility: auto;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-track {
    animation: none;
  }
}

/* ==========================================================================
   39. SMALL SCREEN SAFETY
   ========================================================================== */
@media (max-width: 380px) {
  .container {
    padding-left: var(--s4);
    padding-right: var(--s4);
  }

  .hero-stats {
    gap: var(--s3);
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }

  .hero-stat-label {
    font-size: 0.62rem;
  }

  .hero-ctas {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-ctas .btn,
  .hero-ctas .btn-ghost {
    width: 100%;
  }

  .hero-ctas .btn-ghost {
    justify-content: center;
    padding-left: 0;
  }
}

/* ==========================================================================
   40. INSTAGRAM FEED (Legacy - keeping for reference)
   ========================================================================== */
.ig-section {
  padding: var(--s8) 0;
  background: var(--white);
  overflow: hidden;
}
.ig-grid {
  display: flex;
  gap: var(--s4);
}
.ig-post {
  position: relative;
  width: 25%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--gray-50);
  display: block;
}
.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-mid) var(--ease);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
}
.ig-overlay i {
  color: white;
  font-size: 2.5rem;
  transform: translateY(10px);
  transition: transform var(--t-fast) var(--ease);
}
.ig-post:hover img {
  transform: scale(1.05);
}
.ig-post:hover .ig-overlay {
  opacity: 1;
}
.ig-post:hover .ig-overlay i {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .ig-grid { overflow-x: auto; padding-bottom: var(--s4); }
  .ig-post { width: 45%; }
}
@media (max-width: 600px) {
  .ig-post { width: 70%; }
}

/* ================================================================
   ABOUT PAGE STYLES
================================================================= */

/* Page Hero */
.page-hero {
  background: var(--navy);
  padding: var(--s20) 0 var(--s16);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 60%);
}
.page-hero-tag {
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
}
.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  color: white;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--s6);
  position: relative;
  z-index: 1;
}
.page-hero__heading em {
  font-style: italic;
  color: var(--gold);
}
.page-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* 1. About Institution */
.about-institution-section {
  background: var(--white);
  padding: var(--s16) 0;
}
.about-institution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-institution-content .label-gold {
  margin-bottom: 0.75rem;
}
.about-institution-content .body-lg {
  margin-bottom: 1rem;
}
.about-institution-content .body-lg strong {
  color: var(--navy);
}
.about-institution-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.about-institution-stat {
  display: flex;
  flex-direction: column;
}
.about-institution-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.about-institution-stat-label {
  font-size: 0.8rem;
  color: var(--gray-300);
  font-weight: 500;
  margin-top: 0.25rem;
}
.about-institution-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-institution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-institution-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(201, 162, 39, 0.2);
}
.about-institution-image-badge i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* 2. Vision & Mission */
.vision-mission-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.vision-card, .mission-card {
  padding: 3rem 2.5rem;
  border-radius: var(--r-xl);
  transition: all 0.3s ease;
}
.vision-card {
  background: var(--navy);
  color: white;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
}
.vision-card-icon, .mission-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.vision-card-icon {
  background: rgba(201, 162, 39, 0.2);
  color: var(--gold);
}
.mission-card-icon {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold);
}
.vision-card-label, .mission-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.vision-card-label {
  color: rgba(255, 255, 255, 0.4);
}
.mission-card-label {
  color: var(--gray-300);
}
.vision-card-title, .mission-card-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.2;
  margin: 0.5rem 0 1rem 0;
}
.vision-card-title {
  color: white;
}
.mission-card-title {
  color: var(--navy);
}
.vision-card-desc, .mission-card-desc {
  font-size: 1rem;
  line-height: 1.7;
}
.vision-card-desc {
  color: rgba(255, 255, 255, 0.6);
}
.mission-card-desc {
  color: var(--gray-600);
}

/* 3. Core Values */
.values-section {
  background: var(--white);
  padding: var(--s16) 0;
}
.values-section .display-md em {
  font-style: italic;
  color: var(--gold);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.value-card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(13, 27, 42, 0.04);
  line-height: 1;
  pointer-events: none;
}
.value-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* 4. Founder Message */
.founder-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.founder-image-placeholder {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.founder-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(201, 162, 39, 0.2);
  white-space: nowrap;
}
.founder-content .label-gold {
  margin-bottom: 0.75rem;
}
.founder-content .display-md {
  margin-bottom: 1.5rem;
}
.founder-content .display-md em {
  font-style: italic;
  color: var(--gold);
}
.founder-message p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}
.founder-message p strong {
  color: var(--navy);
}
.founder-signature {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}
.founder-signature-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
}
.founder-signature-title {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 0.2rem;
}
.founder-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* 5. Training Approach */
.approach-section {
  background: var(--white);
  padding: var(--s16) 0;
}
.approach-section .display-md em {
  font-style: italic;
  color: var(--gold);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.approach-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  text-align: center;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.approach-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1rem auto;
}
.approach-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.approach-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* 6. Achievements */
.achievements-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}
.achievements-section .display-md em {
  font-style: italic;
  color: var(--gold);
}
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.achievement-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}
.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.achievement-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.achievement-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.achievement-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* 7. Why Students Trust */
.trust-section {
  background: var(--white);
  padding: var(--s16) 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.trust-content .label-gold {
  margin-bottom: 0.75rem;
}
.trust-content .display-md {
  margin-bottom: 2rem;
}
.trust-content .display-md em {
  font-style: italic;
  color: var(--gold);
}
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.trust-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-point-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}
.trust-point strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}
.trust-point p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
.trust-image-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.trust-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.trust-image-quote {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.15);
}
.trust-image-quote i {
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
  margin-bottom: 0.5rem;
  display: block;
}
.trust-image-quote blockquote {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin: 0 0 0.5rem 0;
}
.trust-image-quote cite {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: normal;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-institution-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-institution-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .about-institution-stat-num {
    font-size: 1.8rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
  }
  .founder-cta {
    flex-direction: column;
  }
  .founder-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .trust-image-quote {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
  }
  .trust-image-card img {
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: var(--s12) 0 var(--s10);
  }
  .page-hero__heading {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .page-hero__desc {
    font-size: 1rem;
  }
  .vision-card, .mission-card {
    padding: 2rem 1.5rem;
  }
  .vision-card-title, .mission-card-title {
    font-size: 1.4rem;
  }
  .achievements-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .achievement-number {
    font-size: 2.2rem;
  }
  .founder-image-placeholder {
    aspect-ratio: 4/3;
  }
}

/* ================================================================
   COURSES PAGE STYLES
================================================================= */

/* Course Detail Section */
.course-detail-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.course-detail-section--alt {
  background: var(--off-white);
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.course-detail-grid--reverse {
  grid-template-columns: 0.8fr 1fr;
}

.course-detail-grid--reverse .course-detail-content {
  order: 2;
}

.course-detail-grid--reverse .course-detail-sidebar {
  order: 1;
}

/* Course Detail Content */
.course-detail-content .label-gold {
  margin-bottom: 0.5rem;
}

.course-detail-content .display-md {
  margin-bottom: 1rem;
}

.course-detail-content .display-md em {
  font-style: italic;
  color: var(--gold);
}

.course-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.course-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.course-detail-meta i {
  color: var(--gold);
  font-size: 1rem;
}

.course-detail-description {
  margin-bottom: 1.5rem;
}

.course-detail-description p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.course-detail-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.course-detail-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.course-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-detail-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.course-detail-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.course-detail-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.course-detail-cta .btn {
  min-width: 200px;
}

/* Course Detail Sidebar */
.course-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-detail-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}

.course-detail-sidebar-card--gold {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.course-detail-sidebar-card--gold h4 {
  color: var(--gold);
}

.course-detail-sidebar-card--gold p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.course-detail-sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.course-detail-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-detail-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}

.course-detail-highlights li:last-child {
  border-bottom: none;
}

.course-detail-highlights li i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.course-detail-sidebar-card--gold .course-detail-highlights li {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.course-detail-sidebar-card--gold .course-detail-highlights li i {
  color: var(--gold);
}

/* Course Card Featured Badge */
.course-card--featured {
  position: relative;
}

.course-card__featured-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Compare Section */
.compare-section {
  background: var(--off-white);
  padding: var(--s16) 0;
}

.compare-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.compare-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.compare-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.compare-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1rem auto;
}

.compare-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.compare-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.08);
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-full);
  display: inline-block;
  margin-bottom: 1rem;
}

.compare-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.compare-card-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.compare-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.compare-card-career {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}

.compare-card-career-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 0.2rem;
}

.compare-card-career span:last-child {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Admission Info Section */
.admission-info-section {
  background: var(--white);
  padding: var(--s16) 0;
}

.admission-info-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 3rem;
  align-items: start;
}

.admission-info-content .label-gold {
  margin-bottom: 0.5rem;
}

.admission-info-content .display-md {
  margin-bottom: 1rem;
}

.admission-info-content .display-md em {
  font-style: italic;
  color: var(--gold);
}

.admission-info-content .body-lg {
  margin-bottom: 2rem;
}

.admission-info-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admission-info-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.admission-info-step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  min-width: 36px;
}

.admission-info-step strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.admission-info-step p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.admission-info-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admission-info-sidebar-card {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
}

.admission-info-sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.admission-info-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admission-info-sidebar-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.admission-info-sidebar-card ul li:last-child {
  border-bottom: none;
}

.admission-info-sidebar-card ul a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.admission-info-sidebar-card ul a:hover {
  color: var(--gold);
}

.admission-info-sidebar-card ul a i {
  color: var(--gold);
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .course-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-detail-grid--reverse {
    grid-template-columns: 1fr;
  }

  .course-detail-grid--reverse .course-detail-content {
    order: 1;
  }

  .course-detail-grid--reverse .course-detail-sidebar {
    order: 2;
  }

  .admission-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .course-detail-sections {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .course-detail-cta {
    flex-direction: column;
  }

  .course-detail-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .admission-info-cta {
    flex-direction: column;
  }

  .admission-info-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .course-detail-meta {
    gap: 1rem;
  }

  .course-detail-meta span {
    font-size: 0.8rem;
  }

  .course-detail-sidebar-card {
    padding: 1.25rem;
  }

  .compare-card {
    padding: 1.5rem;
  }

  .admission-info-sidebar-card {
    padding: 1.25rem;
  }
}

/* ================================================================
   INDIVIDUAL COURSE PAGE STYLES
================================================================= */

/* Course Hero */
.course-hero {
  padding: var(--s8) 0 var(--s12);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.course-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.course-hero-content .course-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.course-hero-breadcrumb a {
  color: var(--gray-600);
  transition: color 0.2s ease;
}

.course-hero-breadcrumb a:hover {
  color: var(--gold);
}

.course-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1rem;
}

.course-hero__heading em {
  font-style: italic;
  color: var(--gold);
}

.course-hero-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.course-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.course-hero-meta i {
  color: var(--gold);
  font-size: 1rem;
}

.course-hero-badge {
  background: rgba(201, 162, 39, 0.1);
  color: var(--gold-dark);
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
}

.course-hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
  max-width: 540px;
  margin-bottom: 1.5rem;
}

.course-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.course-hero-image {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.course-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.course-hero-stats {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: space-between;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.course-hero-stat {
  text-align: center;
}

.course-hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.course-hero-stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Course Overview */
.course-overview-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.course-overview-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.course-overview-content .label-gold {
  margin-bottom: 0.5rem;
}

.course-overview-content .display-md {
  margin-bottom: 1rem;
}

.course-overview-content .display-md em {
  font-style: italic;
  color: var(--gold);
}

.course-overview-content .body-lg {
  margin-bottom: 1.25rem;
}

.course-overview-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.course-overview-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.course-overview-feature i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.course-overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.course-overview-sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}

.course-overview-sidebar-card--gold {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.course-overview-sidebar-card--gold h4 {
  color: var(--gold);
}

.course-overview-sidebar-card--gold p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.course-overview-sidebar-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.course-overview-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-overview-sidebar-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.85rem;
}

.course-overview-sidebar-card ul li:last-child {
  border-bottom: none;
}

.course-overview-sidebar-card ul li .label {
  color: var(--gray-300);
  font-size: 0.7rem;
}

.course-overview-sidebar-card ul li strong {
  color: var(--navy);
}

/* ================================================================
   CURRICULUM - REDESIGNED (TIMELINE)
================================================================= */

.curriculum-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.curriculum-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.curriculum-timeline {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
  padding-left: 3rem;
}

.curriculum-timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 162, 39, 0.15));
}

.curriculum-module {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.5rem;
  position: relative;
}

.curriculum-module-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.curriculum-module-number {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.curriculum-module-line {
  flex: 1;
  width: 2px;
  background: var(--gray-100);
  margin-top: 0.5rem;
}

.curriculum-module:last-child .curriculum-module-line {
  display: none;
}

.curriculum-module-content {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.curriculum-module-content:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.curriculum-module-header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.curriculum-module-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.curriculum-module-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 0.1rem;
}

.curriculum-module-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.curriculum-module-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
}

.curriculum-module-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}

.curriculum-module-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.curriculum-module-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(201, 162, 39, 0.08);
  padding: 0.2rem 0.75rem;
  border-radius: var(--r-full);
}

.curriculum-module-duration i {
  font-size: 0.8rem;
}

/* Responsive Curriculum */
@media (max-width: 768px) {
  .curriculum-timeline {
    padding-left: 0;
  }

  .curriculum-timeline::before {
    display: none;
  }

  .curriculum-module {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .curriculum-module-connector {
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
  }

  .curriculum-module-line {
    display: none !important;
  }

  .curriculum-module-number {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .curriculum-module-list {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   CAREER OPPORTUNITIES - WITH IMAGES
================================================================= */

.career-opportunities-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.career-opportunities-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.career-opp-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-100);
}

.career-opp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.career-opp-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}

.career-opp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.career-opp-card:hover .career-opp-image img {
  transform: scale(1.06);
}

.career-opp-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.career-opp-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.career-opp-content p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Company Logos */
.career-opp-logos {
  margin-top: 3.5rem;
  text-align: center;
}

.career-opp-logos-label {
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-bottom: 1.25rem;
}

.career-opp-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 2.5rem;
}

.career-opp-logos-grid img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(0.2);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.career-opp-logos-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Responsive Career */
@media (max-width: 1024px) {
  .career-opp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .career-opp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .career-opp-logos-grid {
    gap: 1.25rem;
  }

  .career-opp-logos-grid img {
    height: 32px;
    max-width: 90px;
  }
}

/* Why This Course */
.why-course-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.why-course-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.why-course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-course-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  transition: all 0.3s ease;
  align-items: flex-start;
}

.why-course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-course-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.why-course-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.why-course-content p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}
/* ================================================================
   ELIGIBILITY & ADMISSION - REDESIGNED
================================================================= */

.eligibility-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.eligibility-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

/* Eligibility Cards */
.eligibility-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.eligibility-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.eligibility-card:hover {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.eligibility-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.eligibility-card h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.15rem 0;
}

.eligibility-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.4;
}

.eligibility-card p strong {
  color: var(--navy);
}

/* Admission Process */
.eligibility-process h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
}

.eligibility-process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.eligibility-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.eligibility-process-step:hover {
  border-color: var(--gold);
  background: var(--white);
}

.eligibility-process-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1;
  min-width: 28px;
  flex-shrink: 0;
}

.eligibility-process-step strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.eligibility-process-step p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Eligibility CTA */
.eligibility-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Sidebar */
.eligibility-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eligibility-sidebar-card {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 1.75rem;
}

.eligibility-sidebar-card--gold {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.eligibility-sidebar-card--gold h4 {
  color: var(--gold);
}

.eligibility-sidebar-card--gold p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.eligibility-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.eligibility-sidebar-header i {
  font-size: 1.5rem;
  color: var(--gold);
}

.eligibility-sidebar-header h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.eligibility-sidebar-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.eligibility-sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.eligibility-sidebar-phone,
.eligibility-sidebar-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color 0.2s ease;
  padding: 0.4rem 0;
}

.eligibility-sidebar-phone:hover,
.eligibility-sidebar-email:hover {
  color: var(--gold);
}

.eligibility-sidebar-phone i,
.eligibility-sidebar-email i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
}

.eligibility-sidebar-timing {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.eligibility-sidebar-timing i {
  color: var(--gold);
}

/* Responsive Eligibility */
@media (max-width: 1024px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .eligibility-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .eligibility-cards {
    grid-template-columns: 1fr;
  }

  .eligibility-process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .eligibility-cta {
    flex-direction: column;
  }

  .eligibility-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .eligibility-process-steps {
    grid-template-columns: 1fr;
  }

  .eligibility-sidebar-card {
    padding: 1.25rem;
  }
}

/* ================================================================
   FAQ - FIXED ANSWER VISIBILITY
================================================================= */

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
  z-index: 2;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  background: var(--white);
}

.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
  padding-bottom: 0;
}

.faq-question[aria-expanded="true"] {
  background: var(--gray-50);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .course-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .course-hero-image {
    order: -1;
  }

  .course-hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: -1rem;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }

  .course-overview-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-opp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .course-hero__heading {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .course-hero-meta {
    gap: 0.75rem;
  }

  .course-hero-meta span {
    font-size: 0.8rem;
  }

  .course-hero-cta {
    flex-direction: column;
  }

  .course-hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .course-overview-features {
    grid-template-columns: 1fr;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
  }

  .career-opp-grid {
    grid-template-columns: 1fr;
  }

  .why-course-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-cta {
    flex-direction: column;
  }

  .eligibility-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .course-hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .course-hero-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .course-hero-stat-num {
    font-size: 1.2rem;
  }

  .course-hero-stat-label {
    font-size: 0.7rem;
  }
}

/* ================================================================
   PLACEMENTS PAGE STYLES
================================================================= */

/* Placement Stats */
.placement-stats-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.placement-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.placement-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.placement-stat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.placement-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.placement-stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.placement-stat-desc {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Alumni Success */
.alumni-success-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.alumni-success-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.alumni-success-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.alumni-success-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.alumni-success-image {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--gray-50);
}

.alumni-success-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alumni-success-card:hover .alumni-success-image img {
  transform: scale(1.05);
}

.alumni-success-content {
  padding: 1.5rem 1.25rem 1.75rem;
}

.alumni-success-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 50%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--gray-100);
}

.alumni-success-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.alumni-success-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.alumni-success-role {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.alumni-success-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.alumni-success-location i {
  color: var(--gold);
}

.alumni-success-quote {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
  padding: 0.75rem 0 0 0;
  border-top: 1px solid var(--gray-50);
}

/* Placement Process */
.placement-process-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.placement-process-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.placement-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.placement-process-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  position: relative;
}

.placement-process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.placement-process-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.placement-process-icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 auto 1rem auto;
}

.placement-process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.placement-process-step p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Hiring Partners */
.hiring-partners-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.hiring-partners-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.hiring-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hiring-partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: all 0.3s ease;
  background: var(--white);
}

.hiring-partner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.hiring-partner img {
  height: 50px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(0.3);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hiring-partner:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.hiring-partner-name {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hiring-partners-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
}

.hiring-partners-note i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.testimonials-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  font-style: italic;
  margin: 0 0 1rem 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* Placement FAQ */
.placement-faq-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.placement-faq-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .placement-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alumni-success-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hiring-partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .placement-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .placement-stat {
    padding: 1.25rem;
  }

  .placement-stat-number {
    font-size: 2.2rem;
  }

  .alumni-success-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hiring-partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .placement-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .placement-stats-grid {
    grid-template-columns: 1fr;
  }

  .hiring-partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .placement-process-grid {
    grid-template-columns: 1fr;
  }

  .hiring-partner img {
    height: 40px;
  }
}

/* ================================================================
   YOUTUBE SHORTS CAROUSEL
================================================================= */

.shorts-section {
  padding: var(--s16) 0;
  background: var(--off-white);
  overflow: hidden;
}

.shorts-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.shorts-section .label-gold i {
  font-size: 1.1rem;
}

/* Carousel Container */
.shorts-carousel {
  position: relative;
  margin-top: 3rem;
  padding: 2rem 0;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shorts-track {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Shorts Cards */
.shorts-card {
  position: absolute;
  width: 220px;
  aspect-ratio: 9 / 16;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--navy);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Card Positions */
.shorts-card--center {
  transform: translateX(0) scale(1);
  z-index: 10;
  border-color: var(--gold);
  box-shadow: 0 25px 70px rgba(13, 27, 42, 0.35);
}

.shorts-card--left {
  transform: translateX(-220px) scale(0.85);
  z-index: 5;
  opacity: 0.7;
}

.shorts-card--right {
  transform: translateX(220px) scale(0.85);
  z-index: 5;
  opacity: 0.7;
}

.shorts-card--far-left {
  transform: translateX(-400px) scale(0.7);
  z-index: 2;
  opacity: 0.4;
}

.shorts-card--far-right {
  transform: translateX(400px) scale(0.7);
  z-index: 2;
  opacity: 0.4;
}

/* Card Hover */
.shorts-card:not(.shorts-card--center):hover {
  opacity: 0.9;
  transform: scale(0.9);
  border-color: var(--gold);
}

/* Thumbnail */
.shorts-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.shorts-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shorts-card:hover .shorts-thumbnail-img {
  transform: scale(1.05);
}

/* Shorts Badge */
.shorts-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

/* Play Overlay */
.shorts-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: white;
  transition: all 0.3s ease;
  gap: 0.5rem;
  z-index: 3;
}

.shorts-play-overlay i {
  font-size: 3rem;
  color: #ff0000;
  transition: all 0.3s ease;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.shorts-play-overlay span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.2rem 0.8rem;
  border-radius: var(--r-full);
}

.shorts-thumbnail:hover .shorts-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.shorts-thumbnail:hover .shorts-play-overlay i {
  transform: scale(1.15);
}

.shorts-thumbnail:hover .shorts-play-overlay span {
  opacity: 1;
}

/* Video Info */
.shorts-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 4;
}

.shorts-views {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.shorts-views i {
  font-size: 0.7rem;
}

.shorts-date {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
}

/* IFrame Wrapper */
.shorts-iframe-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.shorts-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.shorts-card.playing .shorts-thumbnail {
  display: none;
}

.shorts-card.playing .shorts-iframe-wrapper {
  display: block !important;
}

/* Navigation Buttons */
.shorts-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.12);
  transition: all 0.3s ease;
}

.shorts-nav:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.shorts-nav--prev {
  left: 1rem;
}

.shorts-nav--next {
  right: 1rem;
}

/* Dots */
.shorts-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.shorts-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c9cdd1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.shorts-dots button.active {
  width: 28px;
  border-radius: 99px;
  background: var(--gold);
}

/* Channel Link */
.shorts-channel-link {
  text-align: center;
  margin-top: 2rem;
}

.shorts-channel-link .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.shorts-channel-link .btn i:first-child {
  color: #ff0000;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1100px) {
  .shorts-card--left {
    transform: translateX(-160px) scale(0.82);
  }

  .shorts-card--right {
    transform: translateX(160px) scale(0.82);
  }

  .shorts-card--far-left {
    transform: translateX(-300px) scale(0.65);
  }

  .shorts-card--far-right {
    transform: translateX(300px) scale(0.65);
  }
}

@media (max-width: 850px) {
  .shorts-carousel {
    min-height: 460px;
  }

  .shorts-track {
    height: 420px;
  }

  .shorts-card {
    width: 180px;
  }

  .shorts-card--left {
    transform: translateX(-120px) scale(0.78);
  }

  .shorts-card--right {
    transform: translateX(120px) scale(0.78);
  }

  .shorts-card--far-left,
  .shorts-card--far-right {
    opacity: 0;
    pointer-events: none;
  }

  .shorts-nav {
    width: 40px;
    height: 40px;
  }

  .shorts-nav--prev {
    left: 0.5rem;
  }

  .shorts-nav--next {
    right: 0.5rem;
  }
}

@media (max-width: 600px) {
  .shorts-carousel {
    min-height: 400px;
    padding: 1rem 0;
  }

  .shorts-track {
    height: 380px;
  }

  .shorts-card {
    width: 160px;
    border-radius: var(--r-md);
  }

  .shorts-card--left {
    transform: translateX(-90px) scale(0.72);
  }

  .shorts-card--right {
    transform: translateX(90px) scale(0.72);
  }

  .shorts-play-overlay i {
    font-size: 2.2rem;
  }

  .shorts-play-overlay span {
    font-size: 0.6rem;
  }

  .shorts-nav {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .shorts-nav--prev {
    left: 0.25rem;
  }

  .shorts-nav--next {
    right: 0.25rem;
  }

  .shorts-info {
    padding: 0.3rem 0.5rem;
  }

  .shorts-views {
    font-size: 0.5rem;
  }

  .shorts-date {
    font-size: 0.45rem;
  }
}

@media (max-width: 420px) {
  .shorts-card {
    width: 140px;
  }

  .shorts-card--left {
    transform: translateX(-70px) scale(0.65);
  }

  .shorts-card--right {
    transform: translateX(70px) scale(0.65);
  }

  .shorts-play-overlay i {
    font-size: 1.8rem;
  }

  .shorts-badge {
    font-size: 0.45rem;
    padding: 1px 6px;
    top: 6px;
    right: 6px;
  }
}

/* ================================================================
   CONTACT PAGE STYLES
================================================================= */

/* Contact Section */
.contact-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Info */
.contact-info .label-gold {
  margin-bottom: 0.5rem;
}

.contact-info .display-md {
  margin-bottom: 0.75rem;
}

.contact-info .display-md em {
  font-style: italic;
  color: var(--gold);
}

.contact-info-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 480px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-info-value:hover {
  color: var(--gold);
}

.contact-info-value address {
  font-style: normal;
  line-height: 1.6;
}

/* Social Links */
.contact-social {
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.contact-social-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1px solid var(--gray-100);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-card .contact-form-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-form-card .form-field {
  margin-bottom: 1.25rem;
}

.contact-form-card .form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.3rem;
}

.contact-form-card .form-field .required {
  color: #e74c3c;
}

.contact-form-card .form-field input,
.contact-form-card .form-field select,
.contact-form-card .form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card .form-field input:focus,
.contact-form-card .form-field select:focus,
.contact-form-card .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.contact-form-card .form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-body);
}

.contact-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--gray-300);
  margin-top: 1rem;
}

.contact-form-note i {
  font-size: 0.9rem;
}

/* Map Section */
.map-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.map-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

.map-wrapper {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2.5rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.map-directions {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.map-directions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Quick Contact */
.quick-contact-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quick-contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.quick-contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 0 auto 1rem auto;
}

.quick-contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.quick-contact-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.quick-contact-link {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s ease;
}

.quick-contact-link:hover {
  color: var(--gold);
}

.quick-contact-link i {
  font-size: 1rem;
}

/* Contact FAQ */
.contact-faq-section {
  padding: var(--s16) 0;
  background: var(--off-white);
}

.contact-faq-section .display-md em {
  font-style: italic;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .quick-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-form-card h3 {
    font-size: 1.4rem;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .quick-contact-card {
    padding: 1.25rem;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .map-directions {
    position: relative;
    bottom: auto;
    right: auto;
    padding: 1rem;
    text-align: center;
  }

  .map-directions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-items {
    gap: 1rem;
  }

  .contact-info-item {
    gap: 0.75rem;
  }

  .contact-info-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .contact-social-links {
    gap: 0.5rem;
  }

  .contact-social-links a {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ================================================================
   TERMS OF USE PAGE STYLES
================================================================= */

.terms-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.terms-block:last-child {
  border-bottom: none;
}

.terms-block-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  margin-top: 0.1rem;
}

.terms-block-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.terms-block-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.terms-block-content p:last-child {
  margin-bottom: 0;
}

.terms-block-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.terms-block-content ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.terms-block-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.terms-contact {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  border: 1px solid var(--gray-100);
}

.terms-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.terms-contact p:last-child {
  margin-bottom: 0;
}

.terms-contact a {
  color: var(--gold-dark);
  transition: color 0.2s ease;
}

.terms-contact a:hover {
  color: var(--gold);
}

/* Terms Footer */
.terms-footer {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.terms-footer p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.terms-footer p:last-child {
  margin-bottom: 0;
}

.terms-footer i {
  color: var(--gold);
  font-size: 1rem;
}

.terms-footer strong {
  color: var(--navy);
}

/* Responsive */
@media (max-width: 768px) {
  .terms-block {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .terms-block-number {
    font-size: 1.5rem;
  }

  .terms-block-content h2 {
    font-size: 1.1rem;
  }

  .terms-block-content p,
  .terms-block-content ul li {
    font-size: 0.9rem;
  }

  .terms-contact {
    padding: 1rem 1.25rem;
  }

  .terms-footer {
    padding: 1.25rem;
    margin-top: 2rem;
  }
}

@media (max-width: 500px) {
  .terms-block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .terms-block-number {
    font-size: 1.25rem;
    color: var(--gold);
  }

  .terms-block-content h2 {
    font-size: 1rem;
  }
}

/* ================================================================
   PRIVACY POLICY PAGE STYLES
================================================================= */

.privacy-section {
  padding: var(--s16) 0;
  background: var(--white);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-block {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.privacy-block:last-child {
  border-bottom: none;
}

.privacy-block-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(201, 162, 39, 0.15);
  line-height: 1;
  margin-top: 0.1rem;
}

.privacy-block-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.privacy-block-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.privacy-block-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.privacy-block-content p:last-child {
  margin-bottom: 0;
}

.privacy-block-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.privacy-block-content ul li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-block-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.privacy-block-content ul li strong {
  color: var(--navy);
}

.privacy-contact {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-top: 0.5rem;
  border: 1px solid var(--gray-100);
}

.privacy-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.privacy-contact p:last-child {
  margin-bottom: 0;
}

.privacy-contact a {
  color: var(--gold-dark);
  transition: color 0.2s ease;
}

.privacy-contact a:hover {
  color: var(--gold);
}

/* Privacy Footer */
.privacy-footer {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--r-xl);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.privacy-footer p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.privacy-footer p:last-child {
  margin-bottom: 0;
}

.privacy-footer i {
  color: var(--gold);
  font-size: 1rem;
}

.privacy-footer strong {
  color: var(--navy);
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-block {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .privacy-block-number {
    font-size: 1.5rem;
  }

  .privacy-block-content h2 {
    font-size: 1.1rem;
  }

  .privacy-block-content h3 {
    font-size: 0.9rem;
  }

  .privacy-block-content p,
  .privacy-block-content ul li {
    font-size: 0.9rem;
  }

  .privacy-contact {
    padding: 1rem 1.25rem;
  }

  .privacy-footer {
    padding: 1.25rem;
    margin-top: 2rem;
  }
}

@media (max-width: 500px) {
  .privacy-block {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .privacy-block-number {
    font-size: 1.25rem;
    color: var(--gold);
  }

  .privacy-block-content h2 {
    font-size: 1rem;
  }
}