/* ============================================================
   REAL ESTATE INSTITUTE — Main Stylesheet
   Colors: #0E2640 (Navy), #C9A84C (Gold), #7B2D3E (Maroon),
           #F7F4EF (Cream), #FFFFFF (White)
   Fonts: Cormorant Garamond (Serif) + Inter (Sans)
   ============================================================ */

/* ---------- CSS Reset & Variables ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0E2640;
  --navy2:  #0a1d30;
  --navy3:  #16344f;
  --gold:   #C9A84C;
  --gold2:  #b8923e;
  --gold3:  #e8c96a;
  --maroon: #7B2D3E;
  --cream:  #F7F4EF;
  --white:  #FFFFFF;
  --off-white: #f0ede8;
  --gray:   #6b7280;
  --light-gray: #e5e7eb;
  --text-dark: #1a2535;
  --text-body: #374151;

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(14,38,64,0.10);
  --shadow-lg: 0 12px 48px rgba(14,38,64,0.18);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--sans); color: var(--text-body); background: var(--white); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

/* ---------- Container ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.dark-section { background: var(--navy); color: var(--white); }

/* ---------- Typography helpers ---------- */
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.gold-eye { color: var(--gold3); }
.gold-eye::before { background: var(--gold3); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); }
.white-title { color: var(--white) !important; }
.white-title em { color: var(--gold3) !important; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 640px;
  line-height: 1.75;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-header { margin-bottom: 60px; }

.section-body { font-size: 1.05rem; line-height: 1.85; color: var(--text-body); margin-bottom: 18px; }
.light-body { color: rgba(255,255,255,0.8) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold2); border-color: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy3); border-color: var(--navy3);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,38,64,0.3);
}
.btn-outline-white {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 42px; font-size: 0.92rem; }

/* ---------- Two-column grid ---------- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.two-col-grid.align-center { align-items: center; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy2);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-left span i, .topbar-right a i { color: var(--gold); margin-right: 6px; }
.topbar-right { display: flex; gap: 14px; align-items: center; }
.topbar-right a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.topbar-right a:hover { color: var(--gold); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(14,38,64,0.08);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(14,38,64,0.97);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1240px; margin: 0 auto;
}
.nav-logo img { height: 64px; width: auto; transition: height var(--transition); }
.navbar.scrolled .nav-logo img { height: 52px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  font-size: 0.87rem; font-weight: 500;
  padding: 8px 14px;
  color: var(--text-dark);
  border-radius: var(--radius);
  letter-spacing: 0.03em;
  transition: all var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--navy); }
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-link:hover { color: var(--gold); }
.navbar.scrolled .nav-link.active { color: var(--gold); }

.nav-cta { padding: 10px 22px !important; font-size: 0.82rem !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw);
  height: 100vh; background: var(--navy);
  z-index: 10000; padding: 80px 32px 40px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(255,255,255,0.7); font-size: 1.4rem;
  transition: color var(--transition);
}
.mobile-close:hover { color: var(--gold); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.85);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 9999; backdrop-filter: blur(4px);
}
.mobile-overlay.show { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 95vh;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 50%, #1a3d5c 100%);
  display: flex; align-items: center; overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 40%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.025) 40px,
      rgba(201,168,76,0.025) 41px
    );
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(14,38,64,0.3) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 28px;
}
.dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.8)} }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600; color: var(--white);
  line-height: 1.1; margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold3); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75; margin-bottom: 40px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.stat-num {
  font-family: var(--serif);
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold3); line-height: 1;
}
.stat-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 50px; background: rgba(201,168,76,0.3); }

.hero-scroll-cue {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ============================================================
   MARQUEE BAND
   ============================================================ */
.marquee-band {
  background: var(--gold);
  overflow: hidden; padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy); flex-shrink: 0;
}
.marquee-track .sep { color: var(--navy2); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
.philosophy-section { background: var(--cream); }
.philosophy-pillars { display: flex; flex-direction: column; gap: 22px; margin: 32px 0 36px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); font-size: 1.1rem;
  transition: all var(--transition);
}
.pillar:hover .pillar-icon { background: var(--gold); color: var(--navy); transform: scale(1.08); }
.pillar strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.pillar p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* Philosophy visual card */
.philosophy-card-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.philosophy-card-visual::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.pv-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 28px; text-transform: uppercase;
}
.pv-quote {
  font-family: var(--serif);
  font-size: 1.5rem; font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 20px; margin-bottom: 36px;
}
.pv-quote cite { display: block; font-size: 0.9rem; font-style: normal; color: var(--gold); margin-top: 12px; font-family: var(--sans); font-weight: 500; }
.pv-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pv-stat { background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 20px; border: 1px solid rgba(201,168,76,0.15); }
.pv-num { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold3); }
.pv-lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section { }
.founder-img-wrap { }
.founder-img-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-img-frame img { width: 100%; object-fit: cover; }
.founder-img-accent {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,38,64,0.6) 0%, transparent 60%);
}
.founder-credentials {
  margin-top: 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.cred-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.cred-item i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0;}

.milestone-list { margin: 32px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.milestone { display: flex; gap: 16px; align-items: flex-start; }
.m-num {
  flex-shrink: 0;
  font-family: var(--serif); font-size: 1rem;
  font-weight: 700; color: var(--gold3);
  width: 32px; padding-top: 2px;
}
.m-text { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; flex: 1; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  padding: 36px 28px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}
.why-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-family: var(--serif);
  font-size: 3.5rem; font-weight: 700; color: var(--cream);
  line-height: 1; margin-bottom: 12px;
  transition: color var(--transition);
}
.why-card:hover .why-num { color: rgba(201,168,76,0.15); }
.why-card h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: 12px; font-weight: 600; }
.why-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.75; }

/* ============================================================
   PROGRAMS SECTION
   ============================================================ */
.programs-section { }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.program-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.program-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.program-card:hover::after { transform: scaleX(1); }
.program-num {
  font-family: var(--serif); font-size: 2.6rem;
  font-weight: 700; color: rgba(201,168,76,0.2);
  line-height: 1; margin-bottom: 8px;
  transition: color var(--transition);
}
.program-card:hover .program-num { color: rgba(201,168,76,0.35); }
.program-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.program-card h3 {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--white); font-weight: 600;
  margin-bottom: 14px; line-height: 1.4;
}
.program-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 24px; }
.program-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); transition: all var(--transition);
}
.program-link i { font-size: 0.75rem; transition: transform var(--transition); }
.program-link:hover { color: var(--gold3); }
.program-link:hover i { transform: translateX(5px); }
.programs-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   STUDENT JOURNEY
   ============================================================ */
.journey-section { background: var(--cream); }
.journey-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.journey-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.step-circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--navy); border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  z-index: 2; position: relative;
  transition: all var(--transition);
  flex-shrink: 0;
}
.step-circle span {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 700; color: var(--gold);
}
.journey-step:hover .step-circle {
  background: var(--gold); transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(201,168,76,0.15);
}
.journey-step:hover .step-circle span { color: var(--navy); }
.step-connector {
  position: absolute; top: 35px; left: calc(50% + 35px);
  right: calc(-50% + 35px);
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,0.3));
  z-index: 1;
}
.step-connector.last { display: none; }
.step-content { margin-top: 24px; padding: 0 12px; }
.step-content h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.step-content p { font-size: 0.87rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { padding: 70px 0; }
.stats-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.stat-block { text-align: center; flex: 1; min-width: 140px; }
.sb-icon { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
.sb-num {
  font-family: var(--serif); font-size: 2.8rem; font-weight: 700;
  color: var(--white); display: block; line-height: 1;
}
.sb-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.55); margin-top: 8px; display: block; }

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights-section { background: var(--white); }
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.insight-card {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  position: relative; overflow: hidden;
  cursor: pointer;
}
.insight-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(14,38,64,0.02) 0%, transparent 70%);
  transition: opacity var(--transition); opacity: 0;
}
.insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }
.insight-card:hover::before { opacity: 1; }
.feature-insight { grid-column: span 1; background: var(--navy); border-color: var(--navy); }
.feature-insight .insight-cat { color: var(--gold3) !important; }
.feature-insight h3 { color: var(--white) !important; }
.feature-insight p { color: rgba(255,255,255,0.72) !important; }
.feature-insight .insight-link { color: var(--gold3) !important; }
.insight-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.insight-card h3 { font-family: var(--serif); font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; font-weight: 600; line-height: 1.4; }
.insight-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.75; margin-bottom: 22px; }
.insight-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  transition: all var(--transition);
}
.insight-link i { font-size: 0.75rem; transition: transform var(--transition); }
.insight-link:hover i { transform: translateX(5px); }
.insights-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {}
.team-grid { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; }
.team-card { width: 280px; }
.team-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/4;
}
.team-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--transition); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,38,64,0.95) 0%, rgba(14,38,64,0.4) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px 22px;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; transform: translateY(0); }
.team-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 16px; }
.team-socials { display: flex; gap: 10px; }
.team-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,168,76,0.2); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
  border: 1px solid rgba(201,168,76,0.3);
}
.team-socials a:hover { background: var(--gold); color: var(--navy); }
.team-info { padding: 18px 4px 0; text-align: center; }
.team-info h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--cream); }
.testimonials-slider { max-width: 800px; margin: 0 auto; }
.testimonial-track { overflow: hidden; }
.testimonial-slide {
  display: none; padding: 0 8px;
  animation: fadeSlide 0.5s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeSlide { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.t-quote { font-size: 2.5rem; color: var(--gold); opacity: 0.4; margin-bottom: 16px; line-height: 1; }
.t-text {
  font-family: var(--serif); font-size: 1.35rem;
  font-style: italic; color: var(--navy);
  line-height: 1.65; margin-bottom: 32px;
}
.t-author { display: flex; align-items: center; gap: 16px; }
.t-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  flex-shrink: 0;
}
.t-author strong { display: block; color: var(--navy); font-weight: 700; }
.t-author span { font-size: 0.85rem; color: var(--gray); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all var(--transition);
  border: 2px solid transparent;
}
.slider-btn:hover { background: var(--gold); color: var(--navy); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.dot-btn {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(14,38,64,0.25);
  transition: all var(--transition); border: none; cursor: pointer;
}
.dot-btn.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   VISION SECTION
   ============================================================ */
.vision-section {}
.vision-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.vtag {
  background: rgba(201,168,76,0.15); color: var(--gold3);
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  border: 1px solid rgba(201,168,76,0.25);
}
.vision-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 60px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.vision-visual::before {
  content: '';
  position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.vision-icon-wrap {
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2.4rem; color: var(--gold);
  border: 2px solid rgba(201,168,76,0.3);
  transition: all var(--transition);
}
.vision-visual:hover .vision-icon-wrap { transform: rotate(5deg) scale(1.05); background: rgba(201,168,76,0.25); }
.vision-visual h3 { font-family: var(--serif); font-size: 1.8rem; color: var(--white); margin-bottom: 14px; font-weight: 600; }
.vision-visual p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 28px; }

/* ============================================================
   ENROLL CTA
   ============================================================ */
.enroll-section { background: var(--cream); }
.enroll-inner {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 80px 64px; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.enroll-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.enroll-inner > * { position: relative; z-index: 1; }
.enroll-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.12); padding: 7px 16px;
  border-radius: 999px; border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 24px;
}
.enroll-inner h2 {
  font-family: var(--serif); font-size: clamp(1.8rem,4vw,3rem);
  color: var(--white); margin-bottom: 16px; font-weight: 600; line-height: 1.2;
}
.enroll-inner h2 em { font-style: italic; color: var(--gold3); }
.enroll-inner p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.75; max-width: 560px; margin: 0 auto 36px; }
.enroll-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px; padding: 80px 24px 60px; max-width: 1240px; margin: 0 auto;
}
.footer-logo { height: 70px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: all var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact div {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 10px;
}
.footer-contact div i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.footer-newsletter h5 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 12px 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  border-right: none; border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white); font-size: 0.88rem; font-family: var(--sans);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 16px; background: var(--gold); color: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem; transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--gold2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 24px; }
.footer-bottom-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.5); }
.gold { color: var(--gold); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.83rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; pointer-events: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--navy); color: var(--gold); transform: translateY(-3px); }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up, .reveal-left, .reveal-right, .fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed {
  opacity: 1 !important;
  transform: translate(0,0) !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
.desktop-only { display: inline; }

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .journey-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
  .reverse-mobile .col-visual { order: -1; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar-left span:last-child { display: none; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .why-grid, .programs-grid, .insights-grid, .journey-steps { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .enroll-inner { padding: 48px 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .topbar { display: none; }
  .desktop-only { display: none; }
  .team-grid { justify-content: center; }
  .pv-stats-grid { grid-template-columns: 1fr 1fr; }
}
