:root {
  --ink: #08111f;
  --navy: #111d34;
  --gold: #c79a43;
  --saffron: #e37022;
  --teal: #1d8a8a;
  --paper: #f7f3eb;
  --white: #fffdf8;
  --muted: #6d7280;
  --line: rgba(8,17,31,.12);
  --shadow: 0 24px 80px rgba(8,17,31,.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 7px 18px;
  background: var(--ink);
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 800;
}
.topbar a { color: var(--gold); }
.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px); background: rgba(255,253,248,.82);
  backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
}
.brand { display: flex; gap: 12px; align-items: center; margin-right: auto; }
.brand-mark { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 8px; background: var(--ink); overflow: hidden; box-shadow: 0 10px 26px rgba(8,17,31,.18); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand strong {
  display: block;
  color: var(--gold);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1;
  letter-spacing: .04em;
  text-shadow: 0 8px 24px rgba(199,154,67,.22);
}
.brand small { display: block; color: var(--muted); margin-top: 2px; font-weight: 900; }
.nav { display: flex; gap: 8px; color: #31394a; font-size: 14px; }
.nav a { padding: 9px 11px; border-radius: 8px; font-weight: 800; }
.nav a:hover, .text-link:hover { color: var(--saffron); }
.nav a:hover { background: rgba(227,112,34,.1); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px;
  border-radius: 8px; border: 1px solid transparent; background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #140d03; font-weight: 800; box-shadow: 0 16px 34px rgba(227,112,34,.26); transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(227,112,34,.34); }
.btn-small { min-height: 40px; padding: 0 16px; }
.btn-ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: white; box-shadow: none; }
.hero { min-height: 92vh; position: relative; display: grid; align-items: end; overflow: hidden; color: white; }
.hero-media {
  position: absolute; inset: 0; background:
    linear-gradient(90deg, rgba(8,17,31,.94), rgba(8,17,31,.68), rgba(8,17,31,.18)),
    url("https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=2200&q=78") center/cover;
  transform: scale(1.02);
}
.hero-content { position: relative; width: min(880px, calc(100% - 36px)); margin: 0 auto 9vh; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; font-size: 12px; margin: 0 0 14px; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(38px, 5.8vw, 68px); max-width: 980px; }
h2 { font-size: clamp(30px, 4vw, 56px); }
h3 { font-size: 22px; }
.hero-copy { max-width: 760px; color: rgba(255,255,255,.84); font-size: clamp(17px, 2vw, 21px); margin: 24px 0; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-row span { border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); border-radius: 8px; padding: 9px 12px; backdrop-filter: blur(12px); }
.hero-contact-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  margin-top: 24px;
  max-width: 760px;
}
.hero-contact-card a, .contact-panel {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.78);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(8,17,31,.08);
  backdrop-filter: blur(14px);
}
.hero-contact-card strong, .hero-contact-card span { display: block; }
.hero-contact-card strong { color: var(--saffron); text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
.hero-contact-card span { color: var(--ink); font-weight: 900; line-height: 1.25; margin-top: 4px; }
.mentor-hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 540px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 12%, rgba(199,154,67,.18), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #f7f3eb 58%, #e7efee 100%);
}
.mentor-copy h1 { color: var(--ink); max-width: 760px; }
.mentor-copy .hero-copy { color: #3f4654; }
.dark-ghost { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.58); }
.trust-dark span { color: var(--ink); background: rgba(255,255,255,.72); border-color: var(--line); }
.mentor-portrait {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(199,154,67,.35);
  justify-self: end;
}
.mentor-portrait img { width: 100%; height: auto; object-fit: contain; object-position: center top; background: var(--ink); }
.mentor-portrait div { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px; border-radius: 8px; background: rgba(8,17,31,.82); color: white; backdrop-filter: blur(16px); }
.mentor-portrait strong { display: block; font-size: 22px; line-height: 1.1; }
.mentor-portrait span { color: rgba(255,255,255,.72); }
.page-hero {
  padding: clamp(72px, 10vw, 140px) clamp(18px, 5vw, 72px) clamp(44px, 7vw, 80px);
  background: linear-gradient(135deg, var(--ink), #182b3d);
  color: white;
}
.page-hero p { max-width: 760px; color: rgba(255,255,255,.76); font-size: 19px; }
.page-hero .eyebrow { color: var(--gold); }
.course-detail-list { display: grid; gap: 18px; }
.course-detail { padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: 0 18px 50px rgba(8,17,31,.08); }
.course-detail span { display: inline-block; color: var(--teal); font-weight: 900; margin-bottom: 10px; }
.course-detail p { max-width: 820px; }
.section, .band, .footer { padding: clamp(68px, 9vw, 128px) clamp(18px, 5vw, 72px); }
.band { background: var(--paper); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding-top: 42px; padding-bottom: 42px; }
.stats div { padding: 24px; border-left: 1px solid var(--line); }
.stats strong { display: block; font-size: 38px; color: var(--saffron); line-height: 1; }
.stats span, p { color: #444b59; }
.two-col { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 6vw, 88px); align-items: start; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { font-size: 18px; }
.course-grid, .usp-grid, .faculty-grid, .testimonial-grid, .blog-grid, .location-grid, .result-grid {
  display: grid; gap: 18px;
}
.course-grid { grid-template-columns: repeat(4, 1fr); }
.card, .usp, .faculty, .blog-grid article, .location, .lead-form, blockquote {
  background: rgba(255,253,248,.82); border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 50px rgba(8,17,31,.08);
}
.card { overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.card:hover, .location:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card img { height: 210px; width: 100%; object-fit: cover; }
.card h3, .card p, .card a { margin-left: 20px; margin-right: 20px; }
.card h3 { margin-top: 20px; }
.card a { display: inline-block; margin-bottom: 22px; color: var(--saffron); font-weight: 800; }
.dark { background: var(--ink); color: white; }
.dark p { color: rgba(255,255,255,.72); }
.dark .usp { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
.dark .usp h3 { color: white; }
.result-grid { grid-template-columns: repeat(3, 1fr); }
.result-card { padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); }
.result-card strong { color: var(--gold); font-size: 32px; display: block; }
.result-card span { display: block; font-size: 22px; font-weight: 800; margin: 12px 0 4px; }
.usp-grid { grid-template-columns: repeat(3, 1fr); }
.usp, .faculty, .blog-grid article, .location, blockquote { padding: 24px; }
.usp span { color: var(--teal); font-weight: 900; }
.faculty-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.faculty div { height: 160px; border-radius: 8px; background: linear-gradient(135deg, #d9e8e5, #f1d7a9); margin-bottom: 18px; }
blockquote { margin: 0; font-size: 20px; }
cite { display: block; margin-top: 18px; color: var(--muted); font-size: 14px; font-style: normal; }
.video { background: var(--navy); color: white; }
.video p { color: rgba(255,255,255,.72); }
.cta-strip { margin: 0 clamp(18px, 5vw, 72px); padding: clamp(32px, 6vw, 70px); border-radius: 8px; color: white; background: linear-gradient(135deg, var(--navy), #182b3d 55%, var(--teal)); }
.cta-strip p { color: rgba(255,255,255,.78); }
.location-grid { grid-template-columns: repeat(4, 1fr); }
.location strong { display: block; font-size: 24px; }
.location span { color: var(--muted); }
.page-links { padding-top: clamp(52px, 7vw, 88px); padding-bottom: clamp(52px, 7vw, 88px); }
.contact-highlight { background: var(--paper); }
.contact-panel { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.contact-panel strong { font-size: 24px; }
.contact-panel p { max-width: 720px; margin-bottom: 0; }
.map-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(135deg, rgba(8,17,31,.92), rgba(24,43,61,.82)),
    url("https://images.unsplash.com/photo-1569336415962-a4bd9f69c07b?auto=format&fit=crop&w=1600&q=70") center/cover;
  box-shadow: var(--shadow);
}
.map-card strong { font-size: clamp(28px, 4vw, 46px); line-height: 1.05; }
.map-card span { max-width: 760px; color: rgba(255,255,255,.78); font-weight: 700; }
.map-card em { width: max-content; font-style: normal; font-weight: 900; color: #140d03; background: linear-gradient(135deg, var(--saffron), var(--gold)); padding: 12px 16px; border-radius: 8px; }
.faq details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 900; font-size: 20px; }
.contact { display: grid; grid-template-columns: 1fr 440px; gap: clamp(28px, 6vw, 84px); background: var(--paper); }
.contact-actions a { padding: 12px 14px; border-radius: 8px; background: white; border: 1px solid var(--line); font-weight: 800; }
.lead-form { padding: 24px; display: grid; gap: 14px; }
label { display: grid; gap: 7px; font-weight: 800; color: #222a38; }
input, select { width: 100%; min-height: 48px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; background: white; font: inherit; }
.form-note { margin: 0; font-size: 13px; }
.footer { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; background: var(--ink); color: white; }
.footer p { color: rgba(255,255,255,.66); }
.footer a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 16px; }
.footer-contact strong { width: 100%; color: var(--gold); }
.footer-contact a { display: inline-flex; align-items: center; min-height: 38px; margin: 0; padding: 8px 12px; border-radius: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: white; font-weight: 900; }
.footer-contact a:hover { background: rgba(199,154,67,.18); color: var(--gold); }
.floating-call, .floating-wa {
  position: fixed; right: 18px; z-index: 30; border-radius: 8px; padding: 12px 14px; font-weight: 900; box-shadow: var(--shadow);
}
.floating-call { bottom: 78px; background: var(--ink); color: white; }
.floating-wa { bottom: 20px; background: #22c55e; color: #06130a; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (max-width: 1050px) {
  .course-grid, .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-top: 8px; }
  .site-header { flex-wrap: wrap; }
  .stats, .location-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-hero { grid-template-columns: 1fr; }
  .mentor-portrait { max-width: 520px; justify-self: start; }
}
@media (max-width: 760px) {
  .site-header { gap: 12px; }
  .topbar { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .brand small { display: none; }
  .btn-small { display: none; }
  .hero { min-height: 88vh; }
  h1 { font-size: clamp(34px, 12vw, 48px); }
  .two-col, .contact, .footer { grid-template-columns: 1fr; }
  .course-grid, .usp-grid, .faculty-grid, .testimonial-grid, .blog-grid, .result-grid, .stats, .location-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .section, .band, .footer { padding-left: 18px; padding-right: 18px; }
  .mentor-hero { padding-top: 36px; }
  .hero-contact-card, .contact-panel { grid-template-columns: 1fr; }
}
