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

:root {
  --gold: #C8973A;
  --gold-light: #E8B96A;
  --gold-dark: #9A6E22;
  --navy: #0D1B3E;
  --navy-mid: #1A2E5A;
  --navy-light: #243660;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --text: #2C2C2C;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.gold { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; }
.logo-icon svg { width: 44px; height: 44px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900;
  color: var(--navy);
}
.logo-sub {
  font-size: 11px; font-weight: 500;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 16px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off-white); }
.nav-links .nav-cta {
  background: var(--navy); color: var(--white);
  padding: 9px 22px; border-radius: 50px; margin-left: 8px;
  font-weight: 600;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--white); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--navy); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(13,27,62,0.2);
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.35); }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--navy); color: var(--navy);
  padding: 12px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-white {
  display: inline-block;
  background: var(--white); color: var(--navy);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  transition: all 0.25s;
}
.btn-white:hover { background: var(--gold); color: var(--white); }
.btn-white-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 12px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  transition: all 0.25s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  background: rgba(200,151,58,0.12); color: var(--gold-dark);
  padding: 6px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D1B3E 0%, #1A2E5A 60%, #243660 100%);
  display: flex; align-items: center;
  padding: 100px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute; border-radius: 50%;
  opacity: 0.07;
}
.shape1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.shape2 {
  width: 400px; height: 400px;
  background: var(--white);
  bottom: -150px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.shape3 {
  width: 200px; height: 200px;
  background: var(--gold-light);
  top: 50%; left: 40%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}
.hero-content {
  flex: 1; max-width: 620px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,0.2); border: 1px solid rgba(200,151,58,0.4);
  color: var(--gold-light); padding: 8px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-img-wrap {
  flex: 1; display: flex; justify-content: center; align-items: center;
  position: relative; z-index: 2;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-card {
  position: relative; border-radius: var(--radius);
  overflow: visible; max-width: 460px; width: 100%;
}
.hero-img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.hero-card-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  background: var(--white); color: var(--navy);
  padding: 12px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.card-float { animation: floatCard 4s ease-in-out infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== WHY US ===== */
.why-us {
  padding: 96px 0;
  background: var(--off-white);
}
.why-us .container { text-align: center; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white); padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== PROGRAMS ===== */
.programs-preview { padding: 96px 0; }
.programs-preview .container { text-align: center; }
.programs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prog-card {
  background: var(--off-white); padding: 28px 24px;
  border-radius: var(--radius); text-align: left;
  border: 2px solid transparent;
  transition: all 0.25s; position: relative;
}
.prog-card:hover { border-color: var(--gold); transform: translateY(-4px); background: var(--white); }
.prog-card.featured {
  background: var(--navy); color: var(--white);
  border-color: var(--gold);
}
.prog-card.featured h3, .prog-card.featured p { color: rgba(255,255,255,0.9); }
.prog-card.featured .prog-meta span { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); }
.prog-card.featured .prog-link { color: var(--gold-light); }
.prog-badge {
  position: absolute; top: -12px; right: 16px;
  background: var(--gold); color: var(--white);
  padding: 4px 14px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.prog-icon { font-size: 36px; margin-bottom: 16px; }
.prog-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prog-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.prog-meta { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.prog-meta span {
  background: rgba(13,27,62,0.07); color: var(--navy);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.prog-link { font-size: 14px; font-weight: 600; color: var(--gold-dark); }
.prog-link:hover { text-decoration: underline; }

/* ===== FACULTY PREVIEW ===== */
.faculty-preview { padding: 96px 0; background: var(--off-white); }
.faculty-preview .container { text-align: center; }
.faculty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.main-faculty {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 0; overflow: hidden;
  display: flex; flex-direction: column;
}
.faculty-img-wrap { height: 280px; overflow: hidden; }
.faculty-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.faculty-info { padding: 28px; text-align: left; }
.faculty-role { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.main-faculty h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.main-faculty p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.faculty-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.faculty-tags span {
  background: rgba(200,151,58,0.12); color: var(--gold-dark);
  padding: 5px 14px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.faculty-small-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faculty-sm-card {
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; align-items: center; gap: 12px; padding: 12px;
  transition: transform 0.2s;
}
.faculty-sm-card:hover { transform: translateY(-3px); }
.faculty-sm-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.faculty-sm-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.faculty-sm-card span { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 96px 0; }
.testimonials .container { text-align: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--off-white); padding: 32px;
  border-radius: var(--radius);
  text-align: left; transition: all 0.25s;
  border: 2px solid transparent;
}
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }
.testi-card.featured { background: var(--navy); }
.testi-card.featured p, .testi-card.featured .testi-author strong { color: var(--white); }
.testi-card.featured small { color: rgba(255,255,255,0.5) !important; }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 14px; line-height: 1.8; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.testi-author strong { font-size: 15px; color: var(--navy); }
.testi-author small { font-size: 12px; color: var(--text-light); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 80px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-shape.s1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.cta-shape.s2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); color: var(--white);
  margin-bottom: 16px; position: relative;
}
.cta-banner h2 span { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.4); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer .logo-main { color: var(--white); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0 20px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-item { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-col h4 {
  font-size: 14px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding: 20px 24px;
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px); color: var(--white); margin-bottom: 16px;
}
.page-header p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.breadcrumb { color: var(--gold); font-size: 13px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--white);
  padding: 20px; border-radius: var(--radius-sm); text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .big-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; display: block; line-height: 1; }
.about-img-badge .big-label { font-size: 12px; font-weight: 500; opacity: 0.85; }
.about-text .section-title { margin-bottom: 24px; }
.about-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.about-list { margin: 24px 0; }
.about-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text); margin-bottom: 12px;
}
.about-list li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.mission-card {
  padding: 32px; border-radius: var(--radius);
  background: var(--off-white); text-align: center;
  border-top: 4px solid var(--gold);
}
.mission-card .m-icon { font-size: 40px; margin-bottom: 16px; }
.mission-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.mission-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ===== COURSES PAGE ===== */
.courses-section { padding: 96px 0; }
.courses-section .container { text-align: center; }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.course-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.course-header {
  padding: 24px; display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--border);
}
.course-ico {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; flex-shrink: 0;
}
.course-header h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.course-header span { font-size: 12px; color: var(--gold); font-weight: 600; }
.course-body { padding: 20px 24px; }
.course-body p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.course-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.course-tags span {
  background: rgba(200,151,58,0.1); color: var(--gold-dark);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.course-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.course-fee { font-size: 14px; color: var(--text-light); }
.course-fee strong { color: var(--navy); font-size: 16px; }
.enroll-btn {
  background: var(--navy); color: var(--white);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; transition: background 0.2s;
}
.enroll-btn:hover { background: var(--gold); }

/* ===== FACULTY PAGE ===== */
.faculty-section { padding: 96px 0; }
.faculty-section .container { text-align: center; }
.faculty-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left; }
.faculty-full-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.25s;
}
.faculty-full-card:hover { transform: translateY(-5px); }
.faculty-full-card img {
  width: 100%; height: 240px;
  object-fit: cover; object-position: top;
}
.faculty-full-card .fc-body { padding: 20px; }
.faculty-full-card .fc-role { font-size: 12px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.faculty-full-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faculty-full-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.highlight-faculty {
  grid-column: span 3;
  display: flex; gap: 32px;
  background: var(--navy); border-radius: var(--radius);
  overflow: hidden; color: var(--white);
}
.highlight-faculty img { width: 300px; object-fit: cover; object-position: top; flex-shrink: 0; }
.highlight-faculty .fc-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.highlight-faculty .fc-role { color: var(--gold-light); }
.highlight-faculty h3 { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 12px; }
.highlight-faculty p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--navy); margin-bottom: 20px; }
.contact-info p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--off-white);
  border-radius: var(--radius-sm);
}
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item h4 { font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--white); padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { background: var(--navy); color: var(--white); padding: 14px 32px; border: none; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; width: 100%; transition: background 0.2s; }
.form-submit:hover { background: var(--gold); }
.success-msg { display: none; background: #E8F5E9; color: #2E7D32; padding: 14px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; margin-top: 12px; }
.map-section { padding: 0 0 96px; }
.map-section .container {}
.map-section iframe { width: 100%; height: 400px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .faculty-full-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-faculty { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px 24px; box-shadow: var(--shadow); border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { flex-direction: column; padding: 100px 24px 60px; text-align: center; gap: 48px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { width: 100%; }
  .features-grid, .programs-grid, .testi-grid, .courses-grid { grid-template-columns: 1fr; }
  .faculty-grid { grid-template-columns: 1fr; }
  .faculty-small-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .faculty-full-grid { grid-template-columns: 1fr; }
  .highlight-faculty { grid-column: span 1; flex-direction: column; }
  .highlight-faculty img { width: 100%; height: 240px; }
  .form-row { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 0; }
}
