*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #021e3a;
  --navy-mid: #0a3a63;
  --navy-soft: rgba(2, 30, 58, 0.06);
  --orange: #ee8d39;
  --orange-light: #f5ab66;
  --orange-soft: rgba(238, 141, 57, 0.12);
  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-soft-dark: #eaeff5;
  --border: #e3e8f0;
  --text-dark: #021e3a;
  --text-mid: #45546e;
  --text-muted: #7c8aa3;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }

.nav-logo img{max-height: 60px;}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none; height: 100%;
}
.nav-links li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none; font-size: 13px;
  letter-spacing: 0.8px; text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }
.has-dropdown { gap: 6px; }
.dropdown-toggle {
  background: none; border: none; padding: 4px; cursor: pointer;
  color: var(--text-mid); font-size: 9px; line-height: 1;
  display: flex; align-items: center; transition: color 0.2s, transform 0.2s;
}
.has-dropdown:hover .dropdown-toggle,
.has-dropdown:focus-within .dropdown-toggle { color: var(--orange); transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  box-shadow: 0 16px 40px rgba(2,30,58,0.14);
  padding: 8px; margin: 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { height: auto; display: block; }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 3px;
  color: var(--text-mid); text-decoration: none; font-size: 13px;
  letter-spacing: 0.2px; text-transform: none; font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--navy);
  padding: 10px 24px; border-radius: 2px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange-light); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta-outline {
  border: 1px solid var(--navy); color: var(--navy); background: transparent;
  padding: 10px 22px; border-radius: 2px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.nav-cta-outline:hover, .nav-cta-outline.active { border-color: var(--orange); color: var(--orange); }
.nav-links li.nav-links-mobile-actions { display: none; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  color: var(--navy); font-size: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
  background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(115deg, rgba(2,30,58,0.92) 0%, rgba(2,30,58,0.78) 38%, rgba(2,30,58,0.58) 65%, rgba(2,30,58,0.4) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(238,141,57,0.06) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(238,141,57,0.06) 80px);
}
.hero-grid {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 72px);
}
.hero-left {
  padding: 80px 48px 100px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(238,141,57,0.15); border: 1px solid rgba(238,141,57,0.35);
  color: var(--orange-light); padding: 6px 16px; border-radius: 2px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.1; color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--orange-light); }
.hero-sub {
  font-size: 16px; color: rgba(255,255,255,0.7);
  max-width: 440px; line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--navy);
  padding: 14px 32px; border-radius: 2px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 14px 32px; border-radius: 2px;
  font-size: 14px; font-weight: 500;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-light); }
.hero-stats {
  display: flex; gap: 40px;
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800;
  color: var(--orange-light);
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }
.hero-right {
  position: relative; padding: 40px 80px 120px 40px;
  display: flex; align-items: center; justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 420px; min-height: 210px; }
.hero-card {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.6);
  border-radius: 6px; padding: 28px;
  box-shadow: 0 24px 48px rgba(2,30,58,0.28);
  opacity: 0; transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-card.active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; z-index: 2; }
.card-icon {
  width: 40px; height: 40px; background: var(--orange-soft);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--orange); font-size: 18px;
}
.hero-card h3 { color: var(--navy); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.hero-card p { color: var(--text-mid); font-size: 13px; line-height: 1.6; }
.card-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--navy); color: var(--orange-light);
  font-size: 10px; padding: 4px 10px; border-radius: 2px;
  letter-spacing: 1px; text-transform: uppercase;
}

/* HERO SLIDER NAV */
.hero-slider-nav {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  z-index: 4;
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 10px 18px; border-radius: 40px;
}
.hero-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.35);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 12px;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--navy); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; padding: 0; cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.hero-dot.active { background: var(--orange); transform: scale(1.35); }

/* SECTION DEFAULTS */
section { padding: 100px 80px; }
.section-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px; background: var(--orange);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800; line-height: 1.15;
  color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--orange); }

/* ABOUT */
.about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 4/3;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.about-img-box-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; color: rgba(255,255,255,0.15);
  flex-direction: column; gap: 12px;
  min-height: 280px;
}
.about-img-box-placeholder span { color: rgba(255,255,255,0.35); font-size: 14px; letter-spacing: 1px; }
.about-accent-card {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--orange); padding: 24px 28px; border-radius: 4px;
  min-width: 180px;
}
.about-accent-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 800; color: var(--navy);
  line-height: 1;
}
.about-accent-text { font-size: 12px; color: rgba(2,30,58,0.75); margin-top: 4px; font-weight: 500; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 32px; font-weight: 300;
}
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-mid);
}
.about-list li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px;
  background: var(--orange-soft); border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 10l2 2 4-4' stroke='%23ee8d39' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.about-cta { margin-top: 28px; }

/* COURSES */
.courses { background: var(--bg-soft); }
.courses .section-title { color: var(--navy); }
.courses-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.course-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
  position: relative; overflow: hidden; cursor: pointer;
}
.course-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--orange); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.course-card:hover {
  border-color: rgba(238,141,57,0.4);
  box-shadow: 0 16px 40px rgba(2,30,58,0.08);
  transform: translateY(-4px);
}
.course-card:hover::before { transform: scaleX(1); }
.course-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 800;
  color: var(--navy-soft); line-height: 1;
  margin-bottom: 12px;
}
.course-icon { color: var(--orange); font-size: 24px; margin-bottom: 20px; display: block; }
.course-card h3 {
  font-size: 18px; font-weight: 600; color: var(--navy);
  margin-bottom: 10px; line-height: 1.3;
}
.course-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.course-modules { display: flex; flex-direction: column; gap: 8px; }
.module-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-mid);
  padding: 8px 10px; background: var(--bg-soft); border-radius: 2px;
}
.module-item i { color: var(--orange); font-size: 13px; }

/* DIRECTOR */
.director { background: var(--bg-soft-dark); }
.director-inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px; align-items: start;
}
.director-photo { position: relative; }
.photo-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--navy-mid);
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.photo-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; color: rgba(255,255,255,0.2);
}
.director-gold-bar {
  position: absolute; bottom: -12px; left: 24px; right: -12px;
  height: 6px; background: var(--orange); border-radius: 2px;
}
.director-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 4px;
}
.director-title {
  font-size: 13px; color: var(--orange); font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px;
}
.director-bio {
  font-size: 15px; color: var(--text-mid); line-height: 1.85;
  font-weight: 300; margin-bottom: 20px;
}
.director-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.dtag {
  background: var(--white); color: var(--navy);
  padding: 6px 14px; border-radius: 2px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.3px;
  border: 1px solid var(--border);
}

/* WHY CHOOSE */
.why { background: var(--white); }
.why-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-item {
  padding: 40px 32px;
  background: var(--bg-soft); border: 1px solid var(--border);
  position: relative; transition: background 0.25s;
}
.why-item:hover { background: var(--bg-soft-dark); }
.why-item-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px; font-weight: 800;
  color: var(--navy-soft); line-height: 1;
  position: absolute; top: 20px; right: 24px;
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--navy); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 20px; margin-bottom: 20px;
}
.why-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; color: var(--text-dark); }
.why-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* TESTIMONIALS */
.testimonials { background: var(--bg-soft); }
.testimonials .section-title { color: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: 28px;
  box-shadow: 0 8px 24px rgba(2,30,58,0.05);
}
.testi-quote {
  font-family: 'Playfair Display', serif;
  font-size: 40px; color: var(--orange); line-height: 1;
  margin-bottom: 12px;
}
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-soft); display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 13px; font-weight: 600; flex-shrink: 0;
}
.testi-name { font-size: 14px; color: var(--navy); font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-muted); }
.testi-stars { display: flex; gap: 3px; margin-top: 10px; }
.testi-stars i { color: var(--orange); font-size: 12px; }

.rating-summary {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; margin: 40px auto 0;
}
.rating-summary .rating-num {
  font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 800;
  color: var(--navy); line-height: 1;
}
.rating-summary .testi-stars { justify-content: center; margin-bottom: 0; }
.rating-summary .testi-stars i { font-size: 16px; }
.rating-summary p { font-size: 13px; color: var(--text-muted); }
.google-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  padding: 14px 32px; border-radius: 2px; font-size: 14px; font-weight: 500;
  text-decoration: none; margin-top: 20px; transition: background 0.2s;
}
.google-btn:hover { background: var(--navy-mid); }
.google-btn i { color: var(--orange-light); font-size: 16px; }

.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.media-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: box-shadow 0.25s, transform 0.2s;
}
.media-card:hover { box-shadow: 0 16px 40px rgba(2,30,58,0.08); transform: translateY(-3px); }
.media-thumb {
  aspect-ratio: 4/3; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25); font-size: 30px; position: relative; overflow: hidden;
}
.media-card-body { padding: 16px 18px; }
.media-card-body h3 { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.media-meta { font-size: 11px; color: var(--text-muted); display: flex; flex-direction: column; gap: 4px; }
.media-meta span { display: flex; align-items: center; gap: 6px; }
.media-meta i { color: var(--orange); width: 12px; font-size: 11px; }

.foreign-card {
  background: var(--navy); border-radius: 6px; padding: 32px; margin-top: 40px; position: relative; overflow: hidden;
}
.foreign-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px);
}
.foreign-card-header { position: relative; z-index: 1; margin-bottom: 24px; }
.foreign-card-header h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.foreign-card-header p { font-size: 13px; color: rgba(255,255,255,0.6); }
.foreign-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.foreign-item { display: flex; align-items: center; gap: 12px; }
.foreign-avatar {
  width: 40px; height: 40px; min-width: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.foreign-item strong { display: block; font-size: 13px; color: var(--white); font-weight: 600; }
.foreign-item span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* CONTACT PAGE */
.contact-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 640px; padding-top: 72px;
}
.contact-hero-info {
  background: var(--navy); padding: 56px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-hero-info::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px);
}
.contact-hero-info > * { position: relative; z-index: 1; }
.contact-hero-info h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800; color: var(--white); margin-bottom: 14px; line-height: 1.15;
}
.contact-hero-info h1 em { font-style: italic; color: var(--orange-light); }
.contact-hero-info > p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 440px; margin-bottom: 8px; font-weight: 300; }
.contact-tiles { display: flex; flex-direction: column; gap: 14px; margin: 32px 0 28px; }
.contact-tile {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px; padding: 18px 20px; text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.contact-tile:hover { background: rgba(255,255,255,0.1); border-color: rgba(238,141,57,0.4); transform: translateX(4px); }
.contact-tile-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 2px;
  background: var(--orange-soft); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.contact-tile strong { display: block; font-size: 12px; color: var(--white); margin-bottom: 4px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.contact-tile span { display: block; font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.contact-hero-info .social-links a { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.65); }
.contact-hero-map { position: relative; min-height: 320px; }
.contact-hero-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.contact-form-section { background: var(--bg-soft); padding: 0 80px 100px; }
.contact-form-floating {
  background: var(--white); border-radius: 8px;
  box-shadow: 0 24px 60px rgba(2,30,58,0.18);
  padding: 48px; max-width: 760px; margin: -64px auto 0; position: relative; z-index: 5;
}
.contact-form-floating h2 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form-floating > p { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* COURSE DETAIL PAGE */
.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; }
.topic-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-mid); line-height: 1.4;
  padding: 10px 14px; background: var(--bg-soft); border-radius: 2px;
}
.topic-item i { color: var(--orange); font-size: 11px; margin-top: 3px; flex-shrink: 0; }

/* LEGAL PAGES */
.legal-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.legal-toc {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: 24px;
}
.legal-toc h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 14px; font-weight: 600; }
.legal-toc ol { list-style: none; counter-reset: toc; display: flex; flex-direction: column; gap: 10px; }
.legal-toc li { counter-increment: toc; font-size: 13px; }
.legal-toc li::before { content: counter(toc) '. '; color: var(--orange); font-weight: 600; }
.legal-toc a { color: var(--text-mid); text-decoration: none; }
.legal-toc a:hover { color: var(--orange); }
.legal-updated {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 32px;
  background: var(--bg-soft); border-radius: 2px; padding: 8px 14px;
}
.legal-updated i { color: var(--orange); }
.legal-content h2 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--navy); margin: 40px 0 14px; scroll-margin-top: 96px;
}
.legal-content section:first-of-type h2 { margin-top: 0; }
.legal-content p { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.legal-content p.lead { font-size: 16px; color: var(--text-dark); font-weight: 400; }
.legal-content ul { margin: 0 0 16px 0; padding-left: 20px; }
.legal-content li { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin-bottom: 8px; }
.legal-content strong { color: var(--text-dark); font-weight: 600; }

/* CONTACT */
.contact { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 4px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; color: var(--text-dark); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--text-dark); background: var(--white);
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; background: var(--navy); color: var(--white);
  padding: 14px; border: none; border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  font-weight: 500; cursor: pointer; letter-spacing: 0.3px;
  transition: background 0.2s;
}
.submit-btn:hover { background: var(--navy-mid); }
.contact-info { padding-top: 8px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--navy); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px;
}
.cd-info strong { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.cd-info span { font-size: 13px; color: var(--text-muted); }

/* CTA STRIP */
.cta-section {
  background: var(--orange);
  padding: 80px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 800; color: var(--navy);
  line-height: 1.2;
}
.cta-section p { font-size: 16px; color: rgba(2,30,58,0.7); margin-top: 10px; font-weight: 300; }
.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 16px 36px; border-radius: 2px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.3px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--navy-mid); }

/* ABOUT PAGE */
.about-intro { background: var(--white); }
.page-header {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 152px 80px 64px;
}
.page-header-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(238,141,57,0.06) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(238,141,57,0.06) 80px);
}
.page-header-inner { position: relative; z-index: 1; max-width: 1280px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange-light); }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px); font-weight: 800;
  color: var(--white);
}
.page-header p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 15px; max-width: 580px; font-weight: 300; line-height: 1.7; }

.intro-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: start; margin-top: 40px; }
.intro-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.intro-text p.lead { font-size: 17px; color: var(--text-dark); font-weight: 500; }
.intro-aside {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px;
}
.intro-aside h4 {
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--orange); font-weight: 600; margin-bottom: 20px;
}
.intro-stat { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.intro-stat:last-child { margin-bottom: 0; }
.intro-stat-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 2px;
  background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.intro-stat strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.intro-stat span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.team { background: var(--white); }
.team-card {
  display: flex; gap: 28px; align-items: center;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px; max-width: 640px; margin: 40px auto 0;
}
.team-card-photo {
  width: 120px; height: 120px; min-width: 120px; border-radius: 50%;
  background: var(--navy-mid); color: rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 44px;
  overflow: hidden;
}
.team-card-body h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.team-card-role {
  font-size: 12px; color: var(--orange); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px;
}
.team-card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }
.team-card-link {
  font-size: 13px; color: var(--navy); font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s;
}
.team-card-link i { font-size: 11px; }
.team-card-link:hover { color: var(--orange); }

.ethos { background: var(--bg-soft-dark); }
.ethos-quote { max-width: 760px; margin: 0 auto; text-align: center; }
.ethos-quote .quote-mark {
  font-family: 'Playfair Display', serif; font-size: 56px; color: var(--orange);
  line-height: 1; margin-bottom: 8px; display: block;
}
.ethos-quote p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px); color: var(--navy); line-height: 1.5;
}

.join-banner {
  background: var(--orange-soft); border: 1px solid rgba(238,141,57,0.3);
  border-radius: 6px; padding: 32px 36px;
  display: flex; gap: 24px; align-items: flex-start;
}
.join-banner-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 2px;
  background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.join-banner h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.join-banner p { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-weight: 300; }

.curriculum { background: var(--bg-soft); }
.curriculum-note { font-size: 15px; color: var(--text-mid); line-height: 1.8; font-weight: 300; margin-top: 40px; max-width: 760px; }

.recognition { background: var(--white); }
.recognition-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: stretch; }
.achievement-banner {
  background: var(--navy); border-radius: 6px; padding: 44px;
  display: flex; gap: 28px; align-items: flex-start;
}
.achievement-banner .ach-icon {
  width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
  background: var(--orange-soft); color: var(--orange-light);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.achievement-banner h3 {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
}
.achievement-banner p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.75; font-weight: 300; }
.fee-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 44px; display: flex; flex-direction: column; justify-content: center;
}
.fee-card h3 { font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.fee-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 24px; }
.fee-card .btn-primary { align-self: flex-start; }

.letters-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.letter-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: 32px;
}
.letter-card .quote-mark {
  font-family: 'Playfair Display', serif; font-size: 44px; color: var(--orange);
  line-height: 1; display: block; margin-bottom: 4px;
}
.letter-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.letter-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 16px; }
.letter-meta { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.letter-meta strong { color: var(--orange); font-weight: 600; }

.awards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.award-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 32px 28px; transition: box-shadow 0.25s, transform 0.2s;
}
.award-card:hover { box-shadow: 0 16px 40px rgba(2,30,58,0.08); transform: translateY(-4px); }
.award-icon {
  width: 48px; height: 48px; border-radius: 2px; background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 20px;
}
.award-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.award-issuer { font-size: 12px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.award-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.award-date { font-size: 12px; color: var(--text-mid); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.award-date i { color: var(--orange); font-size: 11px; }

.bio-photo-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: 20px; text-align: center;
}
.bio-photo-card .bio-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 6px; background: var(--navy-mid);
  color: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 56px; margin-bottom: 16px; overflow: hidden;
}
.bio-photo-card h4 { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.bio-photo-card span { font-size: 12px; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.bio-block {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px;
  padding: 40px; margin-top: 40px;
}
.bio-block .intro-text p:last-child { margin-bottom: 0; }

.staff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.staff-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 32px 24px; text-align: center;
  transition: box-shadow 0.25s, transform 0.2s;
}
.staff-card:hover { box-shadow: 0 16px 40px rgba(2,30,58,0.08); transform: translateY(-4px); }
.staff-photo {
  width: 96px; height: 96px; border-radius: 50%; background: var(--navy-mid);
  color: rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center;
  font-size: 36px; margin: 0 auto 18px; overflow: hidden;
}
.staff-card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.staff-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 8px; }
.staff-qual { font-size: 12px; color: var(--text-muted); }

.placement-stats {
  display: flex; justify-content: center; gap: 64px; flex-wrap: wrap;
  margin-top: 40px; padding: 32px; background: var(--bg-soft); border-radius: 6px;
}
.placement-stats .stat-item { align-items: center; text-align: center; }
.placement-stats .stat-num { color: var(--orange); }
.placement-stats .stat-label { color: var(--text-muted); }

.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.featured-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--navy); border-radius: 6px; padding: 24px;
  position: relative; overflow: hidden;
}
.featured-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(238,141,57,0.06) 40px);
}
.featured-avatar {
  position: relative; z-index: 1;
  width: 56px; height: 56px; min-width: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.featured-card-body { position: relative; z-index: 1; }
.featured-card-body h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.featured-role { font-size: 12px; color: var(--orange-light); font-weight: 600; margin-bottom: 6px; }
.featured-meta { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.featured-flag { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; position: relative; z-index: 1; }
.featured-flag i { color: var(--orange); font-size: 20px; }

.placement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.placement-card {
  display: flex; gap: 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 20px; transition: box-shadow 0.25s, transform 0.2s;
}
.placement-card:hover { box-shadow: 0 16px 40px rgba(2,30,58,0.08); transform: translateY(-3px); }
.placement-avatar {
  width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
  background: var(--navy-mid); color: rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.placement-card-body h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.placement-role { font-size: 11px; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 6px; }
.placement-meta { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.placement-meta strong { color: var(--text-mid); font-weight: 500; }
.placement-note {
  margin-top: 40px; font-size: 12px; color: var(--text-muted); line-height: 1.7;
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; padding: 16px 20px;
}

/* FOOTER */
footer {
  background: var(--bg-soft-dark); border-top: 2px solid var(--orange);
  padding: 60px 80px 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; display: block; }
.footer-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.footer-col h4 { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text-mid); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 32px; height: 32px; border: 1px solid var(--border);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 13px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-links a:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-soft); }

/* QUERY POPUP */
.query-popup-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(2,30,58,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.query-popup-overlay.active { opacity: 1; visibility: visible; }
.query-popup {
  background: var(--white); border-radius: 8px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 880px; width: 100%; min-width: 0; max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(2,30,58,0.45);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.query-popup-promo, .query-popup-form { min-width: 0; }
.query-popup-overlay.active .query-popup { transform: scale(1); }
.query-popup-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); color: var(--navy);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.query-popup-close:hover { background: var(--orange); color: var(--white); }
.query-popup-promo {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 44px 36px; color: var(--white); position: relative; overflow: hidden;
}
.query-popup-promo::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(238,141,57,0.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(238,141,57,0.08) 40px);
}
.query-popup-badge {
  position: relative; z-index: 1;
  display: inline-flex; background: rgba(238,141,57,0.15); border: 1px solid rgba(238,141,57,0.35);
  color: var(--orange-light); padding: 6px 14px; border-radius: 2px; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; margin-bottom: 24px;
}
.query-popup-promo .nav-logo { position: relative; z-index: 1; font-size: 22px; margin-bottom: 32px; display: block; color: var(--white); }
.query-popup-discount { position: relative; z-index: 1; margin-bottom: 22px; }
.discount-value {
  font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 800; color: var(--orange);
  display: block; line-height: 1; margin-bottom: 6px;
}
.discount-label { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; text-transform: uppercase; }
.query-popup-tagline {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px;
  color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.5;
}
.query-popup-points { position: relative; z-index: 1; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.query-popup-points li { font-size: 13px; color: rgba(255,255,255,0.7); display: flex; align-items: flex-start; gap: 10px; }
.query-popup-points li i { color: var(--orange); margin-top: 2px; }
.query-popup-form { padding: 44px 36px; }
.query-popup-form h3 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.query-popup-form > p { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.query-popup-form .form-group { margin-bottom: 16px; }
.query-popup-form input, .query-popup-form select {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 2px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text-dark); background: var(--bg-soft);
  outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none;
}
.query-popup-form input:focus, .query-popup-form select:focus { border-color: var(--orange); }
.query-popup-form .submit-btn { margin-top: 8px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-toggle { display: flex; }
  .nav-actions { display: none; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    height: calc(100vh - 72px); background: var(--white);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 32px; overflow-y: auto;
    box-shadow: 0 16px 40px rgba(2,30,58,0.14);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 150;
  }
  body.nav-open .nav-links { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
  .nav-links li {
    height: auto; width: 100%; flex-wrap: wrap;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a { display: block; width: 100%; padding: 16px 4px; }
  .has-dropdown { position: relative; }
  .dropdown-toggle {
    position: absolute; right: 0; top: 4px; width: 40px; height: 40px;
    justify-content: center; font-size: 14px;
  }
  .has-dropdown.open .dropdown-toggle { transform: rotate(180deg); color: var(--orange); }
  .dropdown-menu {
    position: static; width: 100%; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; padding: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .has-dropdown.open .dropdown-menu { max-height: 600px; }
  .dropdown-menu a { padding: 12px 4px 12px 20px; white-space: normal; }
  .nav-links li.nav-links-mobile-actions {
    display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-bottom: none;
  }
  .nav-links-mobile-actions a {
    width: auto; text-align: center; padding: 14px; border-radius: 2px;
    text-decoration: none; font-size: 13px; font-weight: 500;
    letter-spacing: 0.8px; text-transform: uppercase;
  }
  .nav-links-mobile-actions a:first-child { border: 1px solid var(--navy); color: var(--navy); }
  .nav-links-mobile-actions a:last-child { background: var(--orange); color: var(--navy); }
  section { padding: 72px 32px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 32px 40px; }
  .hero-right { padding: 0 32px 100px; }
  .about-inner, .director-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-accent-card { right: 0; }
  .courses-grid, .why-grid, .testi-grid, .awards-grid, .staff-grid, .placement-grid, .media-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid, .foreign-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-section { grid-template-columns: 1fr; padding: 60px 32px; }
  footer { padding: 48px 32px 24px; }
  .page-header { padding: 132px 32px 48px; }
  .intro-grid, .recognition-grid, .letters-grid, .legal-layout { grid-template-columns: 1fr; }
  .placement-stats { gap: 32px; }
  .contact-hero { grid-template-columns: 1fr; min-height: auto; }
  .contact-hero-info { padding: 48px 32px; }
  .contact-hero-map { min-height: 360px; }
  .contact-form-section { padding: 0 32px 72px; }
  .contact-form-floating { padding: 32px; margin-top: -48px; }
  .topic-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-cta-outline { display: none; }
  .contact-form-floating { margin-top: -32px; padding: 24px; }
  .hero h1 { font-size: 36px; }
  .hero-card-stack { min-height: 240px; }
  .hero-slider-nav { bottom: 16px; gap: 12px; padding: 8px 14px; }
  .courses-grid, .why-grid, .testi-grid, .awards-grid, .staff-grid, .placement-grid, .media-grid, .topic-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .director-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .join-banner, .achievement-banner, .team-card { flex-direction: column; text-align: center; }
  .fee-card .btn-primary { align-self: stretch; justify-content: center; }
  .featured-card { flex-direction: column; text-align: center; }
  .featured-flag { margin-left: 0; }
  .query-popup { grid-template-columns: 1fr; }
  .query-popup-promo { padding: 32px 24px; }
  .query-popup-form { padding: 32px 24px; }
}


.web-card{
    display:flex;
    align-items:center;
    gap:16px;
    padding:20px;
    border:1px solid #e5e7eb;
    border-radius:10px;
    background:#fff;
}

.web-avatar{
    width:64px;
    height:64px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    background:#1f3f6f;
    display:flex;
    align-items:center;
    justify-content:center;
}

.web-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    display:block;
}

.web-avatar i{
    color:#fff;
    font-size:28px;
}


.placement-grid .web-avatar {
  width: 100%;
  height: 220px;
  border-radius: 10px;
}

.placement-grid .web-avatar img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.placement-grid .web-card{
  flex-direction: column;
  text-align: center;
}


.placement-card-body{
    flex:1;
}

.placement-card-body h3{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.placement-role{
    color:#f28c28;
    font-weight:600;
    text-transform:uppercase;
    margin:4px 0 8px;
}



