/* ============================================
   JRA VOYAGES ACADEMY – DESIGN SYSTEM
   ============================================ */

:root {
  --navy:        #060d1f;
  --navy-light:  #0d1b35;
  --navy-card:   #0f1e3d;
  --gold:        #c9a84c;
  --gold-light:  #e4c46e;
  --gold-dark:   #a8882e;
  --white:       #ffffff;
  --off-white:   #e8e0d5;
  --muted:       #8a96b0;
  --border:      rgba(201,168,76,0.18);
  --glass-bg:    rgba(13,27,53,0.65);
  --glass-border:rgba(201,168,76,0.15);

  --font-heading:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.45);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
ul { list-style:none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width:7px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:var(--navy-card); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background:var(--gold-dark); }

/* ── Layout ── */
.container {
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.section   { padding:100px 0; }
.section-sm{ padding:60px 0;  }

/* ── Typography ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ── Gold divider ── */
.gold-divider {
  width:56px; height:3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 18px 0;
}
.gold-divider.center { margin: 18px auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 28px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(201,168,76,0.2);
  transform: translateY(-2px);
}

/* ── Glass card ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ── Section header block ── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align:center; }
.section-header.center .section-subtitle { margin:0 auto; }

/* ── Keyframes ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes float {
  0%,100% { transform:translateY(0) scale(1); }
  50%      { transform:translateY(-24px) scale(1.04); }
}
@keyframes pulse-gold {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.25); }
  50%      { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}
@keyframes scroll-line {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  51%  { transform:scaleY(1); transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ── Responsive helpers ── */
@media (max-width:768px) {
  .section   { padding:70px 0; }
  .section-sm{ padding:40px 0; }
}
/* App-level layout */
#root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}
/* Navbar.css */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(6, 13, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Desktop links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--off-white);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active::after,
.nav-link:hover::after { width: 60%; }

.nav-cta { margin-left: 12px; padding: 10px 24px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger:hover { color: var(--gold); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(6,13,31,0.97);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-link {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--off-white);
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-link:hover, .mobile-link.active {
  color: var(--gold);
  background: rgba(201,168,76,0.07);
}
.mobile-cta { margin-top: 12px; justify-content: center; }

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hamburger    { display: flex; }
  .mobile-drawer{ display: flex; }
}
.footer {
  position: relative;
  background: #030810;
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding-top: 80px;
}
.footer-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
/* Brand */
.footer-logo-wrap {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-logo-img { height: 40px; width: auto; object-fit: contain; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.footer-logo-sub {
  font-size: 0.6rem; font-weight: 600;
  color: var(--gold); letter-spacing: 3px; text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
  transform: translateY(-3px);
}
/* Columns */
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--white); margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.87rem; color: var(--muted);
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-link:hover { color: var(--gold); padding-left: 6px; }

/* Contact list */
.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.87rem; color: var(--muted);
}
.fc-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
.scroll-top-btn {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  pointer-events: none;
}
.scroll-top-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.orb-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(201,168,76,0.13), transparent 70%);
  top: -10%; right: -5%;
  animation: float 9s ease-in-out infinite;
}
.orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(20,60,140,0.28), transparent 70%);
  bottom: 5%; left: -8%;
  animation: float 11s ease-in-out 3s infinite;
}
.orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
  top: 55%; left: 45%;
  animation: float 13s ease-in-out 6s infinite;
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 24px 80px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin: 20px 0 24px;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 0;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
  overflow: hidden;
}
.stat-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 36px;
  gap: 4px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.73rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.stat-sep {
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}
.scroll-hint {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease 1s both;
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 1.6s ease-in-out infinite;
}

/* ── PROGRAMS SECTION ── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.program-card {
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.program-icon {
  font-size: 2.2rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.program-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.program-duration, .program-level {
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.program-duration { background: rgba(201,168,76,0.1); color: var(--gold); }
.program-level    { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--glass-border); }
.program-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.program-desc  { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.program-btn   { margin-top: auto; align-self: flex-start; padding: 10px 22px; font-size: 0.85rem; }
.programs-cta-wrap { text-align: center; margin-top: 48px; }

/* ── WHY SECTION ── */
.why-section { position: relative; }
.why-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
  pointer-events: none;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}
.why-grid {
  display: flex; flex-direction: column; gap: 16px;
}
.why-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
}
.why-icon {
  font-size: 1.4rem;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.why-title { font-weight: 700; color: var(--white); font-size: 0.97rem; margin-bottom: 4px; }
.why-desc  { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.t-stars { display: flex; gap: 4px; color: var(--gold); font-size: 0.9rem; }
.t-text  { font-size: 0.91rem; color: var(--off-white); line-height: 1.75; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.t-name { font-weight: 700; color: var(--white); font-size: 0.92rem; }
.t-role { font-size: 0.78rem; color: var(--muted); }

/* ── ENROLL CTA ── */
.enroll-banner {
  position: relative;
  overflow: hidden;
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-color: rgba(201,168,76,0.25) !important;
}
.enroll-orb {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
  right: -100px; top: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.enroll-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.enroll-sub   { font-size: 1rem; color: var(--muted); max-width: 480px; line-height: 1.65; }
.enroll-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .programs-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .enroll-banner { flex-direction: column; padding: 40px 28px; text-align: center; }
  .enroll-actions { justify-content: center; }
  .stat-item { padding: 18px 24px; }
}
.page-header {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.page-header-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-a {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent);
  top: -100px; right: -80px;
}
.orb-b {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(20,60,140,0.25), transparent);
  bottom: -80px; left: -60px;
}
.page-header-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header-content { position: relative; z-index: 2; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb-link { color: var(--muted); transition: var(--transition); }
.breadcrumb-link:hover { color: var(--gold); }
.breadcrumb-sep { font-size: 0.9rem; }
.breadcrumb-current { color: var(--gold); font-weight: 500; }

/* Title */
.page-header-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
  animation: fadeInUp 0.7s ease both;
}
.page-header-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
  animation: fadeInUp 0.7s ease 0.15s both;
}
.page-header-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 28px;
  animation: fadeInUp 0.7s ease 0.25s both;
}
/* Story */
.about-story-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-para { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-top: 18px; }

/* Visual card */
.about-visual-card {
  padding: 48px 40px; text-align: center;
  background: linear-gradient(135deg, rgba(13,27,53,0.9), rgba(6,13,31,0.95));
}
.about-globe-icon {
  font-size: 5rem; color: var(--gold);
  opacity: 0.8; margin-bottom: 32px;
  animation: float 6s ease-in-out infinite;
}
.about-visual-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px;
}
.av-stat { display: flex; flex-direction: column; gap: 4px; }
.av-num  { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.av-lbl  { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.about-visual-quote {
  font-style: italic; font-size: 0.9rem; color: var(--muted);
  padding-top: 24px; border-top: 1px solid var(--border); line-height: 1.65;
}

/* Who section */
.about-who-section { position: relative; }
.about-who-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,0.03) 50%, transparent);
  pointer-events: none;
}

/* Mission & Vision */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.mv-card { padding: 44px 40px; }
.mv-icon {
  font-size: 2.2rem; color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px; border: 1px solid var(--border);
  margin-bottom: 24px;
}
.mv-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.mv-text  { font-size: 0.95rem; color: var(--muted); line-height: 1.8; }

/* Differentiators */
.about-diff-section { background: linear-gradient(180deg, transparent, rgba(201,168,76,0.02)); }
.about-diff-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.diff-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.diff-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; color: var(--off-white); line-height: 1.6;
  padding: 14px 18px;
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.diff-item:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); }
.diff-icon { color: var(--gold); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* Commitment */
.about-commit-card { padding: 44px 40px; }
.commit-icon {
  font-size: 2.5rem; color: var(--gold);
  margin-bottom: 20px;
}
.commit-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.commit-text  { font-size: 0.93rem; color: var(--muted); line-height: 1.8; }

@media (max-width: 1024px) {
  .about-story-grid, .mv-grid, .about-diff-inner { grid-template-columns: 1fr; gap: 40px; }
}
/* Filter tabs */
.filter-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent;
  color: var(--navy);
  font-weight: 700;
}

/* Course grid */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.course-card {
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 16px;
  height: 100%;
}
.course-icon {
  font-size: 2rem; color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.course-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.course-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 50px;
}
.course-badge.duration { background: rgba(201,168,76,0.1); color: var(--gold); }
.course-badge.level    { background: rgba(255,255,255,0.05); color: var(--muted); border: 1px solid var(--glass-border); }

.course-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.35; }
.course-desc  { font-size: 0.87rem; color: var(--muted); line-height: 1.72; flex: 1; }

.course-highlights { display: flex; flex-wrap: wrap; gap: 8px; }
.highlight-tag {
  font-size: 0.72rem; font-weight: 500;
  padding: 4px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--off-white);
}
.course-btn { margin-top: auto; align-self: flex-start; padding: 10px 22px; font-size: 0.85rem; }

/* Enquiry banner */
.programs-enquiry-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 40px 48px;
  margin-top: 16px;
  border-color: rgba(201,168,76,0.2) !important;
}
.pq-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pq-sub   { font-size: 0.9rem; color: var(--muted); }

@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .courses-grid { grid-template-columns: 1fr; }
  .programs-enquiry-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
}
/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Form card */
.contact-form-card { padding: 44px 40px; }
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.contact-form-sub   { font-size: 0.9rem; color: var(--muted); margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--off-white);
  letter-spacing: 0.3px;
}
input, textarea, select {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
select { cursor: pointer; appearance: none; }
select option { background: var(--navy-card); color: var(--off-white); }
textarea { resize: vertical; min-height: 130px; }

.submit-btn { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; font-size: 1rem; }

/* Success */
.form-success {
  text-align: center; padding: 48px 24px; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.success-icon {
  font-size: 3rem;
  width: 80px; height: 80px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: pulse-gold 2s ease infinite;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); }
.form-success p  { color: var(--muted); font-size: 0.95rem; }

/* Info panel */
.contact-info-col { display: flex; flex-direction: column; gap: 24px; }
.info-heading { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.info-cards { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
}
.info-icon {
  font-size: 1.2rem; color: var(--gold);
  background: rgba(201,168,76,0.1);
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; border: 1px solid var(--border);
}
.info-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.info-value { font-size: 0.92rem; color: var(--off-white); line-height: 1.5; }

/* Map */
.map-placeholder {
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(13,27,53,0.8), rgba(6,13,31,0.9));
  border-style: dashed !important;
}
.map-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.map-icon  { font-size: 2.5rem; color: var(--gold); margin-bottom: 4px; }
.map-label { font-size: 1rem; font-weight: 600; color: var(--white); }
.map-sub   { font-size: 0.83rem; color: var(--muted); }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}
