/* ═══════════════════════════════════════════════════════════════
   TC Business School — Premium Landing Page Stylesheet
   Colors: Deep Navy (#0a1628) · Royal Blue (#1a3a6e) · Gold (#c9a227)
   Fonts: Playfair Display (headings) · DM Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
───────────────────────────────────────────── */
:root {
  --navy:       #0a1628;
  --navy-mid:   #122040;
  --navy-light: #1a3a6e;
  --blue:       #1e4d9a;
  --gold:       #c9a227;
  --gold-light: #e4ba3a;
  --gold-pale:  #f7edc8;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray-100:   #f2f2f2;
  --gray-200:   #e5e5e5;
  --gray-400:   #aaaaaa;
  --gray-600:   #666666;
  --gray-800:   #333333;
  --whatsapp:   #25d366;
  --whatsapp-d: #1ebe5d;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);
  --shadow-gold: 0 4px 24px rgba(201,162,39,.35);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w:      1200px;
}

/* ─────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

address { font-style: normal; }

/* ─────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy-light);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-d);
  border-color: var(--whatsapp-d);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-sm {
  padding: 9px 18px;
  font-size: .85rem;
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-sm:hover { background: rgba(255,255,255,.1); color: var(--white); }

.btn-gold-sm {
  padding: 9px 18px;
  font-size: .85rem;
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold-sm:hover { background: var(--gold-light); color: var(--navy); }

.btn-full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   SECTION TYPOGRAPHY
───────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,.1);
  border: 1px solid rgba(201,162,39,.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 700px;
  margin-bottom: 56px;
}
.section-desc.light { color: rgba(255,255,255,.8); }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   TOP BANNER
───────────────────────────────────────────── */
.banner-top {
  position: relative;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 10px 24px;
  text-align: center;
  font-size: .85rem;
  z-index: 1000;
  transition: all .3s;
}
.banner-top .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.banner-badge {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 50px;
}
.banner-cta {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
}
.banner-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
}
.banner-top.hidden { display: none; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
}
.logo-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: .68rem;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 10px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu nav a {
  color: rgba(255,255,255,.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
.mobile-menu .mobile-apply {
  margin-top: 12px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  border-bottom: none;
}
.mobile-menu .mobile-call {
  color: var(--gold);
  border-bottom: none;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060f1f 0%, #0d2248 40%, #112d60 70%, #0a1e40 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,162,39,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,77,154,.2) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,.015) 40px,
      rgba(255,255,255,.015) 41px
    );
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.orb-1 { width: 500px; height: 500px; background: var(--blue); top: -100px; right: -100px; }
.orb-2 { width: 300px; height: 300px; background: var(--gold); bottom: 50px; left: 10%; animation: float 8s ease-in-out infinite; }
.orb-3 { width: 200px; height: 200px; background: #4a90d9; top: 40%; right: 15%; animation: float 10s ease-in-out infinite reverse; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol { display: flex; gap: 8px; align-items: center; }
.breadcrumb li { font-size: .8rem; color: rgba(255,255,255,.5); }
.breadcrumb li::after { content: '›'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.15);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 640px;
}
.hero-desc strong { color: rgba(255,255,255,.95); }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 24px 32px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  width: fit-content;
}
.h-stat { text-align: center; }
.h-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.h-label {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
  display: block;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}
.hero-trust .sep { color: rgba(255,255,255,.2); }

/* Animate-in for hero children */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn .7s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1s ease both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 2px;
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.about-section { background: var(--off-white); }

/* VMV Grid */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.vmv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.vmv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}
.vmv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.vmv-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.vmv-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.vmv-card p { font-size: .92rem; color: var(--gray-600); }

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 72px;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.why-content > p {
  color: var(--gray-600);
  margin-bottom: 28px;
  font-size: .95rem;
}
.why-list {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--gray-700);
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.diff-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.diff-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold-pale);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.diff-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.diff-card p { font-size: .83rem; color: var(--gray-600); }

/* Counter Row */
.counter-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.counter-card {
  flex: 1;
  min-width: 140px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
}
.counter {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  display: inline-block;
}
.counter-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}
.counter-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   COURSES SECTION
───────────────────────────────────────────── */
.courses-section { background: var(--white); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(10,22,40,.03) 100%);
  pointer-events: none;
}
.course-card:hover {
  border-color: var(--navy-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.course-card.featured {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
}
.course-card.featured h3,
.course-card.featured .course-full,
.course-card.featured .course-desc { color: var(--white); }
.course-card.featured .course-details li,
.course-card.featured .course-meta span { color: rgba(255,255,255,.7); }
.course-card.featured::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,162,39,.15) 0%, transparent 70%);
}

.course-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge-alt { background: var(--navy); color: var(--white); }
.course-card.featured .course-badge { background: var(--gold); color: var(--navy); }

.course-icon { font-size: 2.4rem; margin-bottom: 16px; }

.course-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.course-full {
  font-size: .8rem;
  color: var(--gray-400);
  margin-bottom: 16px;
}
.course-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.course-meta span {
  font-size: .75rem;
  color: var(--gray-600);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 50px;
}
.course-card.featured .course-meta span { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }

.course-desc {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}
.course-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.course-details li {
  font-size: .82rem;
  color: var(--gray-600);
}
.course-details li strong { color: var(--navy); }
.course-card.featured .course-details li strong { color: var(--gold); }

.course-btn { margin-top: auto; }

.courses-cta {
  text-align: center;
  padding: 40px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
}
.courses-cta p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
   PLACEMENTS SECTION
───────────────────────────────────────────── */
.placements-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0e2040 100%);
  position: relative;
  overflow: hidden;
}
.placements-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,.012) 60px,
    rgba(255,255,255,.012) 61px
  );
}

.placement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.ps-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
}
.ps-card:hover { background: rgba(255,255,255,.12); transform: translateY(-4px); }
.ps-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}
.ps-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Recruiters ticker */
.recruiters-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 24px;
}
.recruiters-track-wrapper {
  overflow: hidden;
  margin-bottom: 56px;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.recruiters-track {
  display: flex;
  gap: 16px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.recruiter-pill {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .3s;
}
.recruiter-pill:hover { background: rgba(201,162,39,.2); color: var(--gold); }

/* Salary distribution bars */
.salary-dist {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.salary-dist h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 28px;
}
.salary-bars { display: flex; flex-direction: column; gap: 20px; }
.salary-bar-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
}
.salary-range {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-align: right;
}
.bar-wrap {
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  height: 36px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
}
.bar-pct {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
}

/* ─────────────────────────────────────────────
   CAMPUS SECTION
───────────────────────────────────────────── */
.campus-section { background: var(--off-white); }

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.campus-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.campus-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transition: width var(--transition);
}
.campus-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.campus-card:hover::after { width: 100%; }
.campus-icon { font-size: 2.4rem; margin-bottom: 16px; }
.campus-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.campus-card p { font-size: .88rem; color: var(--gray-600); line-height: 1.65; }

/* ─────────────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────────────── */
.testimonials-section {
  background: var(--white);
}

.slider-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-slider {
  position: relative;
  min-height: 280px;
}
.testimonial-slide {
  display: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  animation: slideIn .4s ease;
}
.testimonial-slide::before {
  content: '"';
  position: absolute;
  top: 20px; left: 30px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: .15;
  line-height: 1;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
.testimonial-slide.active { display: block; }

.stars {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-slide blockquote {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 28px;
  quotes: none;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
}
.reviewer-info span {
  font-size: .8rem;
  color: var(--gray-400);
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
}
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  cursor: pointer;
  transition: all .3s;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────────────────────────────
   ADMISSION SECTION
───────────────────────────────────────────── */
.admission-section {
  background: var(--off-white);
}

/* Steps */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 64px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.step-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 24px 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}
.step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.step-item h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-item p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.step-item p a { color: var(--gold); }
.step-arrow {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  padding-top: 28px;
}

/* Form + Benefits */
.admission-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.admission-benefits {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  color: var(--white);
  position: sticky;
  top: 100px;
}
.admission-benefits h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
}
.admission-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.admission-benefits li {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
}
.admission-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Form */
.admission-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(26,58,110,.1);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #e53e3e; }
.form-error {
  font-size: .75rem;
  color: #e53e3e;
  margin-top: 4px;
  min-height: 16px;
}
.form-privacy {
  font-size: .75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px;
}
.form-success[hidden] { display: none; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.form-success p { color: var(--gray-600); margin-bottom: 20px; }

/* ─────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────── */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--navy-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  background: var(--off-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform .3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 20px 24px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
}
.faq-answer a { color: var(--navy-light); text-decoration: underline; }

/* ─────────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────────── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-item p, .contact-item address p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.contact-item a { color: var(--navy-light); }
.contact-item a:hover { color: var(--gold); }

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.map-wrapper iframe { display: block; width: 100%; height: 380px; }
.map-cta {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 600;
  font-size: .88rem;
  transition: background var(--transition);
}
.map-cta:hover { background: var(--navy-mid); color: var(--gold); }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }

.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: all var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact address p {
  font-size: .83rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,.55);
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact .btn-whatsapp { margin-top: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ─────────────────────────────────────────────
   FLOATING ELEMENTS
───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  background: var(--whatsapp-d);
  color: var(--white);
  transform: scale(1.05);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  display: flex;
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≤ 1024px)
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .82rem; }

  .vmv-grid { grid-template-columns: 1fr 1fr; }
  .vmv-grid .vmv-card:last-child { grid-column: 1 / -1; }

  .why-grid { grid-template-columns: 1fr; gap: 40px; }

  .courses-grid { grid-template-columns: 1fr 1fr; }

  .placement-stats { grid-template-columns: repeat(2, 1fr); }

  .campus-grid { grid-template-columns: 1fr 1fr; }

  .admission-wrap { grid-template-columns: 1fr; }
  .admission-benefits { position: static; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .salary-bar-row { grid-template-columns: 140px 1fr; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (≤ 768px)
───────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Hide desktop nav */
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 80px; min-height: auto; }
  .hero-stats {
    gap: 20px;
    padding: 20px;
    justify-content: center;
  }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-trust { justify-content: center; text-align: center; }
  .hero-trust .sep { display: none; }
  .scroll-hint { display: none; }

  /* About */
  .vmv-grid { grid-template-columns: 1fr; }
  .vmv-grid .vmv-card:last-child { grid-column: auto; }
  .diff-grid { grid-template-columns: 1fr; }
  .counter-row { gap: 16px; }
  .counter-card { min-width: 100px; padding: 24px 16px; }

  /* Courses */
  .courses-grid { grid-template-columns: 1fr; }

  /* Placements */
  .placement-stats { grid-template-columns: 1fr 1fr; }
  .salary-bar-row { grid-template-columns: 1fr; }
  .salary-range { text-align: left; }

  /* Campus */
  .campus-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-slide { padding: 32px 24px; }

  /* Admission */
  .steps-row { flex-direction: column; }
  .step-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .admission-form { padding: 32px 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Floating */
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE (≤ 480px)
───────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .banner-top .container { flex-direction: column; gap: 6px; }
  .counter-row { flex-direction: column; }
  .placement-stats { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   PRINT STYLES
───────────────────────────────────────────── */
@media print {
  .navbar, .banner-top, .wa-float, .back-to-top, .scroll-hint { display: none; }
  .section { padding: 40px 0; }
  body { font-size: 12pt; }
}