/* ============================================================
   ROOT & DESIGN SYSTEM
   ============================================================ */
:root {
  --navy:       #081C3A;
  --navy-mid:   #0D2E5F;
  --blue:       #1D6FF2;
  --blue-light: #3B8BFF;
  --blue-glow:  #1D6FF240;
  --cyan:       #22D3EE;
  --white:      #FFFFFF;
  --off-white:  #F4F8FF;
  --gray-50:    #F8FAFC;
  --gray-100:   #EEF2F7;
  --gray-200:   #D9E3F0;
  --gray-400:   #8FA8C8;
  --gray-600:   #4E6B8C;
  --gray-800:   #1E3354;
  --text:       #0F1F38;
  --text-soft:  #4A6080;
  --text-muted: #7A95B2;
  --success:    #10B981;
  --warning:    #F59E0B;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 4px rgba(8,28,58,.06);
  --shadow:     0 4px 20px rgba(8,28,58,.10);
  --shadow-lg:  0 12px 48px rgba(8,28,58,.16);
  --shadow-xl:  0 24px 80px rgba(8,28,58,.22);
  --transition: cubic-bezier(.4,0,.2,1);
  --vh: 1vh; /* Mobile viewport height fallback */
}

*, *::before, *::after { 
  box-sizing: border-box; margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { 
  scroll-behavior: smooth; font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; line-height: 1.2; font-weight: 700; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

.text-center { text-align: center; }
.text-blue { color: var(--blue); }
.text-cyan { color: var(--cyan); }
.text-muted { color: var(--text-muted); }
.text-soft { color: var(--text-soft); }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-glow); color: var(--blue);
  font-size: 13px; font-weight: 600; letter-spacing: .5px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(29,111,242,.2);
  font-family: 'Syne', sans-serif;
}
.badge--navy { background: rgba(8,28,58,.05); color: var(--navy); border-color: rgba(8,28,58,.1); }

.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-label--center { justify-content: center; }

.section-title { font-size: clamp(30px,4vw,48px); font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.section-title span { color: var(--blue); }
.section-subtitle { font-size: 17px; color: var(--text-soft); max-width: 600px; line-height: 1.7; }
.section-subtitle--center { margin: 0 auto; text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: none;
  transition: all .25s var(--transition);
  font-family: 'DM Sans', sans-serif; letter-spacing: .2px;
  white-space: nowrap; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  min-height: 44px; /* Android touch target */
}
.btn--primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 6px 24px rgba(29,111,242,.35);
}
.btn--primary:hover { background: var(--blue-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(29,111,242,.45); }
.btn--primary:active { transform: translateY(0); }
.btn--outline {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn--outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }
.btn--outline:active { transform: translateY(0); }
.btn--white { background: white; color: var(--navy); box-shadow: var(--shadow); }
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn--white:active { transform: translateY(0); }
.btn--ghost { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.25); }
.btn--ghost:hover { background: rgba(255,255,255,.22); }
.btn--ghost:active { background: rgba(255,255,255,.3); }
.btn--lg { padding: 18px 38px; font-size: 17px; border-radius: 14px; min-height: 48px; }
.btn--sm { padding: 10px 20px; font-size: 14px; border-radius: var(--radius-sm); min-height: 40px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,28,58,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .3s var(--transition);
}
#navbar.scrolled {
  background: rgba(8,28,58,.98);
  box-shadow: 0 4px 32px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-img {
  height: 42px; width: auto; flex-shrink: 0;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.nav-logo-img:hover {
  opacity: 0.8;
}
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 18px; color: white; letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 18px; color: white; line-height: 1.1; letter-spacing: -.3px;
}
.nav-logo-tagline { font-size: 10px; color: var(--cyan); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: all .2s; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; cursor: pointer;
  min-height: 44px; min-width: 44px; justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span { display: block; width: 24px; height: 2px; background: 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; flex-direction: column;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px 24px; max-height: calc(100vh - 72px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.8); font-size: 15px; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  min-height: 44px; display: flex; align-items: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; justify-content: center; min-height: 44px; }

/* ============================================================
   PAGES SYSTEM
   ============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29,111,242,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,242,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-blob-1 {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(29,111,242,.25) 0%, transparent 70%);
  top: -200px; right: -100px; border-radius: 50%;
  animation: blob-drift 8s ease-in-out infinite alternate;
}
.hero-blob-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,.12) 0%, transparent 70%);
  bottom: -150px; left: -100px; border-radius: 50%;
  animation: blob-drift 10s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-40px) scale(1.08); } }

.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 80px 24px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-left { /* Content container */ }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,111,242,.15); color: var(--cyan);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  padding: 7px 16px; border-radius: 100px;
  border: 1px solid rgba(34,211,238,.2); margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }

.hero-title {
  font-size: clamp(40px,5.5vw,72px); font-weight: 800;
  color: white; line-height: 1.08; margin-bottom: 24px; letter-spacing: -2px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-title .underline-word { position: relative; display: inline-block; }
.hero-title .underline-word::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
}
.hero-desc { font-size: 18px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 32px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap;
}
.hero-stat-item { /* Stat item container */ }
.hero-stat-num {
  font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800;
  color: white; line-height: 1;
}
.hero-stat-num span { color: var(--cyan); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }

.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual {
  width: 100%; max-width: 480px; position: relative;
}
.hero-card-main {
  background: rgba(255,255,255,.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl);
  padding: 32px; color: white;
}
.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg,var(--blue),var(--cyan));
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.hero-card-title { font-family: 'Syne',sans-serif; font-size: 16px; font-weight: 700; }
.hero-card-sub { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }
.hero-progress-list { display: flex; flex-direction: column; gap: 14px; }
.hero-prog-item { /* Progress item container */ }
.hero-prog-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.hero-prog-label span:last-child { color: var(--cyan); font-weight: 600; }
.hero-prog-bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.hero-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg,var(--blue),var(--cyan)); animation: grow-bar 2s ease forwards; }
@keyframes grow-bar { from{width:0} }

.hero-floating-badge {
  position: absolute;
  background: var(--white); border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
}
.hero-floating-badge .badge-icon { font-size: 22px; }
.hero-floating-badge .badge-text { font-size: 13px; }
.hero-floating-badge .badge-text strong { display: block; color: var(--navy); font-size: 14px; font-family: 'Syne',sans-serif; }
.hero-floating-badge .badge-text span { color: var(--text-soft); font-size: 12px; }
.floating-1 { top: -20px; right: -20px; animation: float 4s ease-in-out infinite; }
.floating-2 { bottom: -20px; left: -20px; animation: float 5s ease-in-out infinite .5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--blue); padding: 64px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--blue) 100%);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item {
  text-align: center; padding: 24px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
  color: white; line-height: 1; margin-bottom: 8px;
}
.stat-num sub { font-size: 28px; vertical-align: baseline; }
.stat-label { font-size: 15px; color: rgba(255,255,255,.7); font-weight: 500; }

/* ============================================================
   COURSES PREVIEW SECTION
   ============================================================ */
.courses-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.course-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); padding: 28px;
  transition: all .3s var(--transition); position: relative; overflow: hidden;
}
.course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--transition);
}
.course-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--gray-200); }
.course-card:hover::before { transform: scaleX(1); }
.course-card-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--off-white); display: flex; align-items: center;
  justify-content: center; font-size: 24px; margin-bottom: 18px;
  transition: all .3s;
}
.course-card:hover .course-card-icon { background: var(--blue-glow); }
.course-card-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.course-card-desc { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 20px; }
.course-card-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.course-meta-tag {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; background: var(--gray-50);
  color: var(--text-soft); border: 1px solid var(--gray-100);
}
.course-meta-tag.blue { background: var(--blue-glow); color: var(--blue); border-color: rgba(29,111,242,.2); }
/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--navy); }
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all .3s var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); }
.why-icon { font-size: 36px; margin-bottom: 18px; }
.why-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 64px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  background: white; border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--blue);
  box-shadow: 0 0 0 8px var(--off-white);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px;
}
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-quote { font-size: 40px; color: var(--blue); line-height: 1; margin-bottom: 16px; font-family: 'Syne',sans-serif; }
.testi-text { font-size: 15px; color: var(--text-soft); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne',sans-serif; font-size: 18px; font-weight: 700;
  color: white; flex-shrink: 0;
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--navy); font-family: 'Syne',sans-serif; }
.testi-role { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--warning); font-size: 14px; margin-bottom: 4px; }
/* ============================================================
   PLACEMENT SECTION
   ============================================================ */
.placement-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.placement-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.placement-left .section-title { color: white; }
.placement-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.placement-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.05); border-radius: var(--radius);
  padding: 18px 20px; border: 1px solid rgba(255,255,255,.08);
}
.placement-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.placement-item-text strong { display: block; color: white; font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.placement-item-text span { font-size: 13px; color: rgba(255,255,255,.5); }
.company-logos {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px;
}
.company-logo-box {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  color: white; font-family: 'Syne',sans-serif; font-weight: 700; font-size: 15px;
  transition: all .3s;
}
.company-logo-box:hover { background: rgba(255,255,255,.15); }
.placement-right .placement-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px;
}
.placement-stat-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 28px;
  text-align: center;
}
.placement-stat-num {
  font-family: 'Syne',sans-serif; font-size: 40px; font-weight: 800;
  color: var(--cyan); line-height: 1; margin-bottom: 8px;
}
.placement-stat-label { font-size: 14px; color: rgba(255,255,255,.6); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 780px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: all .3s;
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--blue); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; background: white;
  font-size: 16px; font-weight: 600; color: var(--navy);
  transition: all .2s; gap: 16px; min-height: 60px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { color: var(--blue); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; flex-shrink: 0;
  transition: all .3s; color: var(--blue);
  -webkit-tap-highlight-color: transparent;
}
.faq-item.open .faq-toggle { background: var(--blue); color: white; transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all .4s var(--transition); background: white;
}
.faq-answer p { font-size: 15px; color: var(--text-soft); line-height: 1.75; padding-bottom: 20px; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 0; }
/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(34,211,238,.15) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(32px,4vw,54px); font-weight: 800; color: white; margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT / ENQUIRY
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-glow); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; font-weight: 500; }
.contact-info-val { font-size: 15px; color: var(--navy); font-weight: 600; }

.enquiry-form {
  background: white; border-radius: var(--radius-xl); padding: 40px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); font-size: 15px; color: var(--text);
  transition: all .2s; background: var(--gray-50); outline: none;
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px; /* Android touch target */
}
.form-input:focus { 
  border-color: var(--blue); background: white; 
  box-shadow: 0 0 0 4px rgba(29,111,242,.1); 
}
.form-input::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
select.form-input { cursor: pointer; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); background-position: right 12px center; background-repeat: no-repeat; background-size: 16px; padding-right: 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy); color: white;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand { /* Footer brand section */ }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .2s; border: none; color: white; cursor: pointer;
}
.social-btn:hover { background: var(--blue); }
.footer-col-title { font-family: 'Syne',sans-serif; font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; letter-spacing: .5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.5); transition: all .2s; }
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer-newsletter input {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06);
  color: white; font-size: 14px; margin-bottom: 10px; outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.35); }
.footer-newsletter input:focus { border-color: var(--blue); }
.footer-newsletter .btn { width: 100%; justify-content: center; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: var(--cyan); }
/* ============================================================
   PERSONAL TEACHER MODAL
   ============================================================ */
.personal-teacher-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000;
  background: rgba(8,28,58,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s var(--transition);
  padding: 20px;
}
.personal-teacher-modal-overlay.open { opacity: 1; visibility: visible; }

.personal-teacher-modal {
  background: white; border-radius: var(--radius-xl);
  max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); position: relative;
  transform: translateY(20px); transition: transform .3s var(--transition);
}
.personal-teacher-modal-overlay.open .personal-teacher-modal { transform: translateY(0); }

.personal-teacher-modal-header {
  padding: 32px 32px 24px; border-bottom: 1px solid var(--gray-100);
  text-align: center;
}
.personal-teacher-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-soft);
  transition: all .2s;
}
.personal-teacher-modal-close:hover { background: var(--gray-200); color: var(--navy); }

.teacher-modal-title { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.teacher-modal-subtitle { font-size: 15px; color: var(--text-soft); }

.personal-teacher-modal-body { padding: 32px; }

.teacher-request-form .form-group { margin-bottom: 20px; }
.teacher-request-form .form-label { 
  display: block; font-size: 14px; font-weight: 600; 
  color: var(--navy); margin-bottom: 8px; 
}
.teacher-request-form .form-input {
  width: 100%; padding: 14px 18px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); font-size: 15px; color: var(--text);
  transition: all .2s; background: var(--gray-50); outline: none;
}
.teacher-request-form .form-input:focus { 
  border-color: var(--blue); background: white; 
  box-shadow: 0 0 0 4px rgba(29,111,242,.1); 
}
.teacher-request-form .form-input::placeholder { color: var(--text-muted); }
.teacher-request-form textarea.form-input { resize: vertical; min-height: 100px; }

.teacher-modal-footer {
  padding: 24px 32px; border-top: 1px solid var(--gray-100);
  display: flex; gap: 12px; justify-content: flex-end;
}

/* ============================================================
   ENROLLMENT MODAL STYLES
   ============================================================ */
.enroll-modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000;
  background: rgba(8,28,58,.85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s var(--transition);
  padding: 20px;
}
.enroll-modal-overlay.open { opacity: 1; visibility: visible; }

.enroll-modal {
  background: white; border-radius: var(--radius-xl);
  max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl); position: relative;
  transform: translateY(20px); transition: transform .3s var(--transition);
}
.enroll-modal-overlay.open .enroll-modal { transform: translateY(0); }

.enroll-modal-top {
  padding: 32px 32px 24px; text-align: center;
  border-bottom: 1px solid var(--gray-100);
}
.enroll-modal-close-btn {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--text-soft);
  transition: all .2s;
}
.enroll-modal-close-btn:hover { background: var(--gray-200); color: var(--navy); }

.enroll-course-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-glow); color: var(--blue);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 20px;
  font-weight: 600; font-size: 14px;
}
.enroll-modal-heading { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.enroll-modal-sub { font-size: 15px; color: var(--text-soft); }

.enroll-choices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 32px;
}
.enroll-choice {
  border: 2px solid var(--gray-200); border-radius: var(--radius-lg);
  padding: 28px; cursor: pointer; transition: all .3s;
  text-align: center;
}
.enroll-choice:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow); }

.choice-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 16px;
}
.choice-icon-wrap.personal { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: white; }
.choice-icon-wrap.batch { background: linear-gradient(135deg, var(--success), var(--blue)); color: white; }

.choice-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.choice-badge.personal { background: var(--blue-glow); color: var(--blue); }
.choice-badge.batch { background: rgba(16,185,129,.1); color: var(--success); }

.choice-title { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.choice-desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 20px; }

.choice-perks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.choice-perk { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-soft); }
.choice-perk-icon { font-size: 14px; }

.choice-cta {
  width: 100%; padding: 12px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all .2s;
}
.choice-cta.personal { background: var(--blue); color: white; }
.choice-cta.batch { background: var(--success); color: white; }
.choice-cta:hover { transform: translateY(-1px); }

.enroll-divider {
  padding: 20px 32px; text-align: center;
  border-top: 1px solid var(--gray-100);
  font-size: 14px; color: var(--text-soft);
}

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
#toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 10001;
  background: var(--navy); color: white; padding: 16px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  transform: translateX(400px); transition: transform .3s var(--transition);
  max-width: 400px; font-size: 14px; font-weight: 500;
}
#toast.show { transform: translateX(0); }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 768px) {
  .enroll-choices { grid-template-columns: 1fr; }
  .personal-teacher-modal, .enroll-modal { margin: 20px; }
  .teacher-modal-footer { flex-direction: column; }
  .teacher-modal-footer .btn { width: 100%; justify-content: center; }
}
/* ============================================================
   COURSE CARDS (Full Page)
   ============================================================ */
.course-full-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: all .3s var(--transition); position: relative;
}
.course-full-card:hover { 
  box-shadow: var(--shadow-lg); transform: translateY(-4px); 
  border-color: var(--blue); 
}
.course-full-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--transition);
}
.course-full-card:hover::before { transform: scaleX(1); }

.course-card-top {
  padding: 28px 28px 20px; display: flex; gap: 18px; align-items: flex-start;
}
.course-card-emoji {
  font-size: 48px; flex-shrink: 0;
}
.course-card-info { flex: 1; }
.course-card-name {
  font-size: 20px; font-weight: 700; color: var(--navy); 
  margin-bottom: 4px; font-family: 'Syne', sans-serif;
}
.course-card-cat {
  font-size: 13px; color: var(--blue); font-weight: 600;
}

.course-card-body {
  padding: 0 28px 20px;
}
.course-desc-text {
  font-size: 14px; color: var(--text-soft); line-height: 1.65; 
  margin-bottom: 16px;
}
.course-card-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.course-level {
  font-size: 12px; font-weight: 700; letter-spacing: .5px; 
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.level-beginner { background: rgba(16,185,129,.1); color: var(--success); }
.level-intermediate { background: rgba(245,158,11,.1); color: var(--warning); }
.level-advanced { background: rgba(239,68,68,.1); color: #EF4444; }

.course-card-footer {
  padding: 16px 28px; background: var(--gray-50); 
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.course-card-footer .btn { padding: 9px 20px; font-size: 13px; }

/* ============================================================
   PAGE HERO STYLES
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(29,111,242,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,111,242,.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-breadcrumb { 
  display: flex; gap: 8px; align-items: center; font-size: 13px; 
  color: rgba(255,255,255,.45); margin-bottom: 20px; 
}
.page-hero-breadcrumb span { color: var(--cyan); font-weight: 500; }
.page-hero-title { 
  font-size: clamp(36px,5vw,60px); font-weight: 800; 
  color: white; margin-bottom: 16px; 
}
.page-hero-sub { 
  font-size: 18px; color: rgba(255,255,255,.6); 
  max-width: 580px; line-height: 1.7; 
}

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .container { max-width: 1000px; padding: 0 20px; }
  .hero-content { gap: 60px; }
  .section { padding: 80px 0; }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .courses-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .placement-content { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  
  /* Tablet-specific navigation */
  .nav-inner { padding: 0 20px; }
  .nav-logo-img { height: 38px; }
  .nav-links { gap: 4px; }
  .nav-links a { padding: 6px 10px; font-size: 13px; }
  .nav-actions .btn { padding: 8px 16px; font-size: 13px; }
}

/* Large phones and small tablets */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 24px; }
  .section { padding: 64px 0; }
  .courses-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mission-vision { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  
  /* Mobile-specific hero adjustments */
  .hero-title { font-size: clamp(32px,8vw,48px); }
  .hero-desc { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 20px; text-align: center; }
  
  /* Mobile course cards */
  .course-card-top { padding: 20px 20px 16px; }
  .course-card-body { padding: 0 20px 16px; }
  .course-card-footer { padding: 12px 20px; }
  
  /* Mobile modals */
  .enroll-choices { grid-template-columns: 1fr; }
  .personal-teacher-modal, .enroll-modal { margin: 20px; }
  .teacher-modal-footer { flex-direction: column; }
  .teacher-modal-footer .btn { width: 100%; justify-content: center; }
}

/* Android-specific optimizations */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 32px 16px; }
  .section { padding: 48px 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  
  /* Android touch targets */
  .btn { min-height: 44px; padding: 12px 24px; }
  .btn--sm { min-height: 40px; padding: 10px 20px; }
  .btn--lg { min-height: 48px; padding: 16px 32px; }
  
  /* Android form inputs */
  .form-input { min-height: 44px; padding: 12px 16px; font-size: 16px; }
  .form-input:focus { transform: none; }
  
  /* Android navigation */
  .mobile-menu a { min-height: 44px; display: flex; align-items: center; }
  .hamburger { min-height: 44px; min-width: 44px; }
  
  /* Android-specific spacing */
  .page-hero { padding: 120px 0 60px; }
  .hero-floating-badge { display: none; } /* Hide on very small screens */
  
  /* Android course detail page */
  #page-course-detail .container > div {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  #page-course-detail .container > div > div:last-child {
    position: static !important;
  }
  
  /* Android modal adjustments */
  .personal-teacher-modal-overlay, .enroll-modal-overlay {
    padding: 10px;
  }
  .personal-teacher-modal, .enroll-modal {
    margin: 0;
    border-radius: 12px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero-content { padding: 24px 12px; }
  .section { padding: 40px 0; }
  
  /* Very small screen adjustments */
  .hero-title { font-size: clamp(28px,9vw,40px); }
  .section-title { font-size: clamp(24px,6vw,36px); }
  .course-card-top { flex-direction: column; text-align: center; gap: 12px; }
  .course-card-emoji { font-size: 36px; }
  
  /* Compact navigation */
  .nav-inner { height: 60px; }
  .nav-logo-img { height: 36px; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: 16px; }
  .nav-logo-name { font-size: 16px; }
  .nav-logo-tagline { font-size: 9px; }
}

/* Landscape orientation for phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: 100vh; padding-top: 60px; }
  .hero-content { padding: 20px 24px; }
  .page-hero { padding: 100px 0 40px; }
  .section { padding: 40px 0; }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-card-main { backdrop-filter: blur(25px); }
  .nav-inner { backdrop-filter: blur(25px); }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
  .course-card:hover { transform: none; }
  .why-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  
  /* Larger touch targets */
  .faq-question { min-height: 60px; }
  .nav-links a { min-height: 40px; }
}

/* Tablet landscape specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .hero-content { grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; }
  .courses-grid { grid-template-columns: repeat(3,1fr); }
  .testimonials-grid { grid-template-columns: repeat(3,1fr); }
}
/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */
.about-intro { 
  display: grid; grid-template-columns: 1fr 1fr; 
  gap: 80px; align-items: center; 
}
.about-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: var(--radius-xl); padding: 48px; position: relative;
}
.about-visual-stat { 
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; 
}
.about-vs-box {
  background: rgba(255,255,255,.1); border-radius: var(--radius); 
  padding: 24px; border: 1px solid rgba(255,255,255,.15); 
  text-align: center;
}
.about-vs-num { 
  font-family: 'Syne',sans-serif; font-size: 36px; 
  font-weight: 800; color: white; 
}
.about-vs-label { 
  font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; 
}
.about-vs-divider { 
  grid-column: 1/-1; height: 1px; 
  background: rgba(255,255,255,.1); margin: 4px 0; 
}

.mission-vision { 
  display: grid; grid-template-columns: 1fr 1fr; 
  gap: 24px; margin-top: 56px; 
}
.mv-card {
  background: white; border-radius: var(--radius-lg); 
  padding: 36px; border: 1px solid var(--gray-100); 
  box-shadow: var(--shadow-sm); border-top: 4px solid;
}
.mv-card.mission { border-top-color: var(--blue); }
.mv-card.vision { border-top-color: var(--cyan); }
.mv-icon { font-size: 32px; margin-bottom: 16px; }
.mv-title { 
  font-size: 20px; font-weight: 700; 
  color: var(--navy); margin-bottom: 12px; 
}
.mv-text { 
  font-size: 15px; color: var(--text-soft); line-height: 1.75; 
}

.values-grid { 
  display: grid; grid-template-columns: repeat(4,1fr); 
  gap: 20px; margin-top: 56px; 
}
.value-card {
  background: white; border-radius: var(--radius); 
  padding: 28px 24px; text-align: center;
  border: 1px solid var(--gray-100); transition: all .3s;
}
.value-card:hover { 
  box-shadow: var(--shadow); transform: translateY(-4px); 
}
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-title { 
  font-size: 16px; font-weight: 700; 
  color: var(--navy); margin-bottom: 8px; 
}

/* ============================================================
   RESPONSIVE UPDATES
   ============================================================ */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .mission-vision { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   COURSE DETAIL PAGE STYLES
   ============================================================ */
.detail-section {
  margin-bottom: 40px;
}
.detail-section-title {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin-bottom: 20px; font-family: 'Syne', sans-serif;
}
.detail-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
}
.detail-info-row:last-child { border-bottom: none; }
.detail-info-row span:first-child { color: var(--text-soft); }
.detail-info-row span:last-child { font-weight: 600; color: var(--navy); }

.syllabus-list {
  display: flex; flex-direction: column; gap: 12px;
}
.syllabus-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--gray-50); border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}
.syllabus-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue); color: white; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.syllabus-text {
  font-size: 15px; color: var(--text); font-weight: 500;
}

.outcomes-list {
  display: flex; flex-direction: column; gap: 12px;
}
.outcome-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; color: var(--text);
}
.outcome-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--success); color: white; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px; flex-shrink: 0;
}

.tech-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.tech-badge {
  background: var(--blue-glow); color: var(--blue);
  padding: 8px 16px; border-radius: var(--radius);
  text-align: center; font-size: 13px; font-weight: 600;
  border: 1px solid rgba(29,111,242,.2);
}

/* Responsive for course detail */
@media (max-width: 1024px) {
  .detail-section { margin-bottom: 32px; }
}

@media (max-width: 768px) {
  #page-course-detail .container > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  #page-course-detail .container > div > div:last-child {
    position: static !important;
  }
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}