/* ============================================================
   MSM GRAD — Executive Master's in International Business
   CSS Stylesheet
   Primary: #E30613 (MSM Grad Red)
   Dark: #1A1A1A / #2D2D2D
   Light: #F5F5F5
   White: #FFFFFF
============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

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

.section-pad { padding: 80px 0; }

.bg-light { background: #F5F5F5; }
.bg-dark  { background: #1A1A1A; }
.red-text { color: #E30613; }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { font-size: 1rem; color: #444; line-height: 1.7; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header p { margin-top: 12px; }
.section-header.light h2,
.section-header.light p { color: #fff; }
.section-header.light .section-label { color: #E30613; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E30613;
  background: rgba(227,6,19,0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
    white-space: nowrap;
}
.btn-red {
  background: #E30613!important;
  color: #fff!important;
}
.btn-red:hover { background: #b8000f!important; transform: translateY(-1px)!important; box-shadow: 0 4px 16px rgba(227,6,19,0.35)!important; }
.btn-outline {
  border: 2px solid #E30613!important;
  color: #E30613!important;
  background: transparent!important;
}
.btn-outline:hover { background: #E30613!important; color: #fff!important; }
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6)!important;
  color: #fff!important;
  background: transparent!important;
}
.btn-outline-light:hover { background: #fff!important; color: #1A1A1A!important; }
.btn-lg { padding: 15px 32px!important; font-size: 1rem!important; }
.btn-full { width: 100%!important; justify-content: center!important; margin-top: 16px!important; }

/* ---------- TOP BAR ---------- */
.topbar {
  background: #1A1A1A;
  color: #ccc;
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar-inner i { color: #E30613; margin-right: 5px; }
.topbar-right { margin-left: auto; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: #fff;
  /*border-bottom: 1px solid #eee;*/
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.site-header.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}
/*.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}*/
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-link { flex-shrink: 0; }
.logo-img {
  height: 64px!important;
  width: auto;
  object-fit: contain;
}
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 8px; align-items: center; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover { color: #E30613; background: rgba(227,6,19,0.06); }
.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.88rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: transform 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  background: #F5F5F5;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(227,6,19,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227,6,19,0.08);
  color: #E30613;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 18px; }
.hero-sub {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
}
.partner-link { color: #E30613; font-weight: 700; }
.partner-link:hover { text-decoration: underline; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #E30613;
  line-height: 1;
}
.stat-unit {
  font-size: 0.7rem;
  font-weight: 600;
  color: #888;
  margin-left: 2px;
}
.stat-label {
  display: block;
  font-size: 0.73rem;
  color: #888;
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: #eee;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
}
.trust-item i { color: #E30613; }

/* Video */
.hero-video { position: relative; }
.video-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  background: #000;
  position: relative;
}
.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 14px 14px 0 0;
}
.video-caption {
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.video-caption i { color: #E30613; font-size: 1rem; }

/* ---------- PARTNER BANNER ---------- */
.partner-banner {
  background: #1A1A1A;
  padding: 32px 0;
  border-top: 3px solid #E30613;
}
.partner-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-inner-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.partner-text {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  white-space: nowrap;
}
.partner-logo-link {
  display: flex;
  flex-direction: column;
}
.partner-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.partner-tag {
  font-size: 0.72rem;
  color: #888;
  margin-top: 3px;
}
.partner-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.partner-badges-centered {
  justify-content: center;
  margin-left: 0;
}
.badge-pill {
  background: rgba(255,255,255,0.08);
  color: #ccc;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-pill i { color: #27ae60; }

/* ---------- HIGHLIGHTS ---------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.highlight-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: #E30613;
  transition: height 0.3s ease;
}
.highlight-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: #E30613; }
.highlight-card:hover::before { height: 100%; }
.hc-icon {
  width: 52px;
  height: 52px;
  background: rgba(227,6,19,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #E30613;
  margin-bottom: 18px;
}
.highlight-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.highlight-card p { font-size: 0.9rem; color: #666; }

/* ---------- OVERVIEW STRIP ---------- */
.overview-strip {
  background: #E30613;
  padding: 32px 0;
}
.overview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ov-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.ov-item i {
  font-size: 1.5rem;
  opacity: 0.8;
  flex-shrink: 0;
}
.ov-item div { display: flex; flex-direction: column; }
.ov-item strong { font-size: 0.75rem; font-weight: 600; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.05em; }
.ov-item span { font-size: 0.92rem; font-weight: 700; margin-top: 2px; }

/* ---------- CURRICULUM ---------- */
.curriculum-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.accordion-wrap { display: flex; flex-direction: column; gap: 0; }
.acc-item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.acc-item.open, .acc-item:focus-within {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.acc-trigger {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: left;
  transition: background 0.2s;
}
.acc-trigger:hover { background: #fafafa; color: #1A1A1A;}
.acc-item.open .acc-trigger { background: #fff; color: #E30613; }
.acc-num {
  font-size: 0.78rem;
  font-weight: 800;
  color: #E30613;
  background: rgba(227,6,19,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.acc-title { flex: 1; }
.acc-icon {
  font-size: 0.85rem;
  color: #999;
  margin-left: auto;
  transition: transform 0.3s;
}
.acc-item.open .acc-icon { transform: rotate(180deg); color: #E30613; }
.acc-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: #fafafa;
}
.acc-item.open .acc-body {
  padding: 16px 24px 24px;
  max-height: 300px;
}
.acc-body ul { list-style: none; }
.acc-body li {
  padding: 7px 0;
  font-size: 0.93rem;
  color: #555;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.acc-body li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #E30613;
  border-radius: 50%;
  flex-shrink: 0;
}
.acc-body li:last-child { border-bottom: none; }
.acc-credits {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #E30613;
  background: rgba(227,6,19,0.08);
  padding: 4px 12px;
  border-radius: 50px;
}

/* Curriculum Sidebar */
.csb-card {
  background: #1A1A1A;
  color: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  position: sticky;
  top: 90px;
}
.csb-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #E30613;
}
.csb-list { display: flex; flex-direction: column; gap: 10px; }
.csb-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #ccc;
}
.csb-list li i { color: #E30613; font-size: 0.8rem; flex-shrink: 0; }

/* ---------- WHO IS THIS FOR ---------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.who-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #eee;
  transition: transform 0.25s, box-shadow 0.25s;
}
.who-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,0.09); }
.who-icon {
  width: 64px;
  height: 64px;
  background: rgba(227,6,19,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #E30613;
  margin: 0 auto 18px;
}
.who-card h3 { font-size: 1rem; margin-bottom: 10px; }
.who-card p { font-size: 0.88rem; color: #666; }

/* ---------- OUTCOMES ---------- */
.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcomes-text .section-label { margin-bottom: 14px; }
.outcomes-text h2 { margin-bottom: 16px; }
.outcomes-text > p { margin-bottom: 28px; }
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 36px;
}
.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
}
.outcomes-list li i { color: #E30613; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }

/* Outcomes Visual */
.outcomes-img-wrap {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcomes-img-inner {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fa-globe-large {
  font-size: 5rem;
  color: #E30613;
  opacity: 0.9;
  z-index: 2;
  position: relative;
}
.circle-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(227,6,19,0.2);
  animation: pulse-ring 3s ease-out infinite;
}
.ring-1 { width: 120px; height: 120px; animation-delay: 0s; }
.ring-2 { width: 180px; height: 180px; animation-delay: 0.7s; }
.ring-3 { width: 240px; height: 240px; animation-delay: 1.4s; }
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.floating-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #E30613;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(227,6,19,0.2);
  animation: float-dot 4s ease-in-out infinite;
}
.dot1 { top: 10%;  left: 20%; animation-delay: 0s; }
.dot2 { top: 15%;  right: 15%; animation-delay: 1s; }
.dot3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.dot4 { bottom: 10%; right: 20%; animation-delay: 1.5s; }
@keyframes float-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.outcomes-stat-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  text-align: center;
  z-index: 5;
}
.outcomes-stat-badge.top-left { top: 30px; left: 0; }
.outcomes-stat-badge.bottom-right { bottom: 30px; right: 0; }
.ob-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #E30613;
  line-height: 1;
}
.ob-text {
  display: block;
  font-size: 0.72rem;
  color: #888;
  font-weight: 600;
  margin-top: 4px;
}

/* ---------- FACULTY ---------- */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.faculty-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0 0 28px;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
  overflow: hidden;
}
.faculty-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  border-color: #E30613;
}
/* Photo wrapper */
.faculty-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.faculty-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.faculty-card:hover .faculty-photo { transform: scale(1.04); }
.faculty-avatar {
  width: 100%;
  height: 100%;
  background: rgba(227,6,19,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #E30613;
}
.faculty-card h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; padding: 0 16px; }
.faculty-role {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #E30613;
  margin-bottom: 12px;
  padding: 0 16px;
}
.faculty-card p { color: #aaa; font-size: 0.86rem; padding: 0 16px; }
.faculty-cta { text-align: center; margin-top: 36px; }

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.1);
}
.testimonial-card.featured {
  border-color: #E30613;
  box-shadow: 0 8px 32px rgba(227,6,19,0.12);
}
.tcard-stars { color: #f4a100; margin-bottom: 16px; font-size: 0.85rem; }
.tcard-quote {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.tcard-quote::before { content: '"'; font-size: 2rem; color: #E30613; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.tcard-person {
  display: flex;
  align-items: center;
  gap: 14px;
}
/* Real face avatar for testimonials */
.tcard-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #E30613;
  position: relative;
}
.tcard-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.tcard-avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  background: #E30613;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}
.tcard-avatar {
  width: 44px;
  height: 44px;
  background: #E30613;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.tcard-person strong { display: block; font-size: 0.9rem; color: #1A1A1A; }
.tcard-person span { font-size: 0.78rem; color: #888; margin-top: 2px; display: block; }
.featured-tag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: #E30613;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}

/* ---------- ADMISSIONS STEPS ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step-item {
  text-align: center;
  position: relative;
}
.step-num {
  width: 60px;
  height: 60px;
  background: #E30613;
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
.step-connector {
  position: absolute;
  top: 29px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(to right, #E30613, #fcc);
  z-index: 1;
}
.step-connector.last { display: none; }
.step-item h4 { font-size: 1rem; margin-bottom: 10px; }
.step-item p { font-size: 0.88rem; color: #666; }

/* ---------- ENROLL / FORM ---------- */
.enroll {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}
.enroll-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}
.enroll-text .section-label { color: #E30613; background: rgba(227,6,19,0.15); }
.enroll-text h2 { color: #fff; margin-bottom: 16px; }
.enroll-text > p { color: #aaa; margin-bottom: 24px; }

/* Fees Box */
.fees-box {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-left: 4px solid #E30613;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.fees-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  margin-bottom: 6px;
}
.fees-amount {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.fees-note {
  font-size: 0.82rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px;
}
.fees-note i { color: #E30613; }

.enroll-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.enroll-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #ddd;
}
.enroll-perks li i { color: #27ae60; }
.enroll-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.enroll-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.enroll-form-card > p { font-size: 0.88rem; color: #888; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 7px !important;
}
.form-group input,
.form-group select {
  width: 100%!important;
  padding: 12px 16px!important;
  border: 1.5px solid #e0e0e0!important;
  border-radius: 7px!important;
  font-size: 0.92rem!important;
  color: #333!important;
  transition: border-color 0.2s!important;
  background: #fafafa!important;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #E30613;
  background: #fff;
}
.form-note {
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
  margin-top: 14px;
}
.form-note i { margin-right: 4px; }
.form-success {
  text-align: center;
  padding: 20px 0;
}
.form-success i {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 12px;
}
.form-success h4 { font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: #666; font-size: 0.9rem; }

/* ---------- FAQs ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1A1A1A;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: #fafafa; color: #1A1A1A;}
.faq-item.open .faq-q { color: #E30613; }
.faq-icon { font-size: 0.8rem; color: #999; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: #E30613; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  background: #fafafa;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 20px;
}
.faq-a p { font-size: 0.9rem; color: #666; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: #E30613;
  padding: 60px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip-text h2 { color: #fff; font-size: 1.8rem; }
.cta-strip-text p { color: rgba(255,255,255,0.8); margin-top: 8px; }
.cta-strip-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-strip .btn-red { background: #fff; color: #E30613; }
.cta-strip .btn-red:hover { background: #f0f0f0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: #111;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: 0.88rem; color: #888; line-height: 1.7; max-width: 280px; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover { background: #E30613; color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #E30613;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #888;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #E30613; }
.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.contact-list li i { color: #E30613; font-size: 0.85rem; width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: #666; font-size: 0.78rem; }
.footer-bottom a { color: #888; }
.footer-bottom a:hover { color: #E30613; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #E30613;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(227,6,19,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: #b8000f; }

/* ---------- NAV — single logo ---------- */
.escp-text-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #0033A0;
  letter-spacing: -0.02em;
}

/* ---------- COLLAB BLOCK — Prominent Hero ---------- */
.collab-block {
  background: linear-gradient(135deg, #fff 0%, #f0f3ff 100%);
  border: 2px solid #d0d8f0;
  border-radius: 16px;
  padding: 24px 28px 18px;
  margin-bottom: 28px;
  box-shadow: 0 6px 32px rgba(0,51,160,0.12);
  position: relative;
  overflow: hidden;
}
.collab-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #E30613, #0033A0);
  border-radius: 4px 0 0 4px;
}
.collab-logos-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.collab-logo-lg {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
}
.collab-escp-lg {
  height: 52px!important;
}
.collab-x-lg {
  font-size: 2.2rem;
  font-weight: 900;
  color: #bbb;
  line-height: 1;
  padding: 0 8px;
}
.escp-text-logo-lg {
  font-size: 2rem;
  font-weight: 900;
  color: #0033A0;
  letter-spacing: -0.03em;
}
.collab-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid #dde;
  white-space: nowrap;
}

/* emib-points removed — kept for potential future use */

/* ---------- FT RANKING BAR ---------- */
.ft-ranking-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.ft-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1.5px solid #eee;
  padding-right: 16px;
}
.ft-letters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #E3B04B;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 4px;
  font-style: italic;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.ft-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ft-pub {
  font-size: 0.7rem;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.ft-year {
  font-size: 0.62rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.ft-rank-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}
.ft-hash {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0033A0;
  line-height: 1;
}
.ft-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: #0033A0;
  line-height: 1;
}
.ft-rank-label {
  font-size: 0.75rem;
  color: #555;
  line-height: 1.3;
}
.ft-rank-label strong { color: #1A1A1A; font-weight: 800; }

/* ---------- VIDEO THUMBNAIL ---------- */
.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
  display: block;
}
.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.video-thumbnail:hover .thumb-img {
  transform: scale(1.04);
}
.thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.1) 35%,
    rgba(0,0,0,0.55) 70%,
    rgba(0,0,0,0.85) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.thumb-logos {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.92);
  padding: 6px 12px;
  border-radius: 50px;
}
.thumb-logo {
  height: 22px!important;
  width: auto;
  object-fit: contain;
  display: block;
}
.thumb-logo-escp {
  height: 20px;
}
.thumb-x {
  font-size: 0.9rem;
  font-weight: 900;
  color: #999;
}
.thumb-play-btn {
  width: 72px;
  height: 72px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(255,0,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}
.video-thumbnail:hover .thumb-play-btn {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(255,0,0,0.55);
}
.thumb-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin-bottom: 6px;
}
.thumb-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.82);
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
/* Make sure iframe fills same space */
#videoIframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px 14px 0 0;
}

/* ---------- PARTNER BANNER (updated) ---------- */
.partner-logos-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.partner-logo-img-link {
  display: flex;
  align-items: center;
}
.partner-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
.partner-img-escp {
  height: 38px;
}
.partner-x-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* ---------- FOOTER — single logo ---------- */
.footer-logo-single {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  margin-bottom: 18px;
}

/* ---------- LOGO FALLBACK ---------- */
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  font-size: 2.2rem;
  color: #E30613;
  line-height: 1;
}
.logo-msm {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  color: #2D2D2D;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-grad {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #E30613;
  line-height: 1;
}

.partner-fallback-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}

/* partner-img already defined above, ensure good visibility */
.partner-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}
.partner-img-escp {
  height: 38px;
}
.partner-x-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(3, 1fr); }
  .curriculum-layout { grid-template-columns: 1fr; }
  .csb-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video { order: -1; }
  .outcomes-layout { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-img-wrap { height: 280px; }
  .enroll-layout { grid-template-columns: 1fr; }
  .enroll-form-card { max-width: 520px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { font-size: 0.72rem; gap: 12px; }
  .topbar-right { display: none; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #E30613;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 16px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .hero { padding: 48px 0 40px; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .partner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partner-badges { margin-left: 0; }
  .highlights-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .steps-row { grid-template-columns: 1fr; }
  .collab-tagline { white-space: normal; font-size: 0.75rem; }
  .collab-logos-row { gap: 12px; }
  .collab-logo-lg { height: 44px; }
  .collab-escp-lg { height: 38px; }
  .logo-img { height: 52px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .container { padding: 0 16px; }
  .enroll-form-card { padding: 24px 20px; }
  .overview-grid { grid-template-columns: 1fr; }
}
