/* ═══════════════════════════════════════════════════
   KALE VIP — style.css
   Tasarım: Butik Akademik Lüks
   Renk: Lacivert (#263447) + Prestij Altını (#be9b52)
═══════════════════════════════════════════════════ */

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

:root {
  --navy:        #263447;
  --navy-dark:   #1a2533;
  --navy-light:  #334a63;
  --gold:        #be9b52;
  --gold-lt:     #d4b06a;
  --gold-pale:   #f5edd8;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --cream:       #f2ece0;
  --gray-lt:     #e8e4dc;
  --gray-mid:    #9a9488;
  --text:        #1a2330;
  --text-soft:   #4a5568;

  --shadow-sm:   0 2px 12px rgba(38,52,71,.08);
  --shadow-md:   0 4px 24px rgba(38,52,71,.12);
  --shadow-lg:   0 12px 40px rgba(38,52,71,.18);
  --shadow-gold: 0 4px 20px rgba(190,155,82,.30);

  --font-brand:  'Montserrat', sans-serif;
  --font-status: 'Cinzel', serif;
  --font-serif:  'EB Garamond', serif;

  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-brand);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)),
              transform 0.65s ease calc(var(--delay, 0s));
}
.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.75s ease calc(var(--delay, 0s)),
              transform 0.75s ease calc(var(--delay, 0s));
}
.reveal-up.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── SHARED COMPONENTS ─────────────────────────── */
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-light { color: var(--gold-lt); }

.section-title {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text-soft);
}
.section-sub--light { color: rgba(255,255,255,.7); }

.gold-text { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── NAV ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(38,52,71,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  display: block;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  border-radius: 6px;
  transition: all var(--transition);
  letter-spacing: .03em;
}
.nav-links a:hover {
  color: var(--gold-lt);
  background: rgba(255,255,255,.07);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-links a {
  display: block;
  padding: 16px 40px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  transition: color var(--transition);
}
.mobile-links a:hover { color: var(--gold-lt); }
.mobile-tel {
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

/* ── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--white);
  bottom: -100px; left: -80px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  bottom: 20%; right: 20%;
  opacity: .04;
}

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title-accent { color: var(--gold); }

.hero-sub {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  margin-bottom: 36px;
  letter-spacing: .01em;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em;
}
.hero-stat-sep {
  color: rgba(255,255,255,.2);
  font-size: 1.2rem;
  margin: 0 20px;
}

/* Hero Logo Visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 360px;
}
.hero-logo-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.45));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.rook-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(190,155,82,.2);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 4s ease infinite;
}
.ring-1 { width: 320px; height: 320px; animation-delay: 0s; }
.ring-2 { width: 400px; height: 400px; animation-delay: 1.5s; }

@keyframes ringPulse {
  0%, 100% { opacity: .3; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 0; transform: translate(-50%,-50%) scale(1.08); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .4; }
}

/* ── ABOUT ─────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 12px 0 24px;
  line-height: 1.4;
}

.about-body {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .975rem;
}

.about-body strong { color: var(--navy); font-weight: 700; }

.about-body:last-of-type { margin-bottom: 32px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--off-white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-number {
  display: block;
  font-family: var(--font-status);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-icon { display: block; font-size: 2rem; margin-bottom: 8px; }
.stat-label { font-size: .8rem; font-weight: 600; color: var(--text-soft); line-height: 1.4; }

/* ── PROGRAMS ──────────────────────────────────── */
.programs {
  padding: 100px 0;
  background: var(--cream);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.program-card:hover::after { transform: scaleX(1); }

.program-card--featured {
  background: var(--navy);
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}
.program-card--featured::after { background: var(--gold-lt); }
.program-card--featured:hover { transform: translateY(-16px); }

.card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 20px;
  width: fit-content;
}
.badge-gold { background: var(--gold-pale); color: var(--gold); }
.badge-white { background: rgba(255,255,255,.15); color: var(--gold-lt); }

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.card-icon--light {
  background: rgba(255,255,255,.12);
  color: var(--gold-lt);
}

.card-target {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.card-target--light { color: var(--gold-lt); }

.card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.card-title--light { color: var(--white); }

.card-desc {
  font-size: .875rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-desc--light { color: rgba(255,255,255,.7); }

.card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.card-features li {
  font-size: .83rem;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.card-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .65rem;
  top: 3px;
}
.card-features--light li { color: rgba(255,255,255,.75); }
.card-features--light li::before { color: var(--gold-lt); }
.card-features li strong { display: block; font-weight: 700; color: var(--text); }
.card-features--light li strong { color: var(--white); }
.card-features li span { font-size: .78rem; color: var(--gray-mid); }
.card-features--light li span { color: rgba(255,255,255,.5); }

.card-cta {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
  margin-top: auto;
}
.card-cta:hover { gap: 10px; }
.card-cta--gold { color: var(--gold-lt); }

/* ── WHY KALE ──────────────────────────────────── */
.why-kale {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-kale::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(190,155,82,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(190,155,82,.3);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

/* ── EXAM ──────────────────────────────────────── */
.exam {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.exam-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(190,155,82,.04) 0px,
    rgba(190,155,82,.04) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.exam-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-lt);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.exam-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(190,155,82,.3);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 24px;
}
.badge-medal { font-size: 1rem; }

.exam-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.exam-desc {
  color: var(--text-soft);
  font-size: .925rem;
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 24px;
}

.exam-limited {
  display: inline-block;
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.exam-schedule {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.exam-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  text-align: left;
  transition: all var(--transition);
}
.exam-row:hover { background: var(--gold-pale); }

.exam-dates {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.exam-date {
  font-size: .875rem;
  font-weight: 700;
  color: var(--navy);
}
.exam-date-sep { color: var(--gray-mid); font-size: .8rem; }
.exam-class {
  text-align: center;
  font-family: var(--font-status);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold);
  white-space: nowrap;
}
.exam-sessions {
  text-align: right;
  font-size: .78rem;
  color: var(--text-soft);
  font-weight: 600;
}

.exam-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e8f4fd;
  border: 1px solid #bee3f8;
  color: #2b6cb0;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: .83rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.exam-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── INVITE ────────────────────────────────────── */
.invite {
  padding: 100px 0;
  background: var(--cream);
}

.invite-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--off-white);
  border: 2px solid var(--navy);
  border-radius: 4px;
  padding: 56px 64px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg), inset 0 0 0 8px var(--off-white), inset 0 0 0 10px rgba(190,155,82,.2);
}

.invite-corner {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--gold);
  border-style: solid;
}
.invite-corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.invite-corner--tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.invite-corner--bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.invite-corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.invite-logo {
  width: 72px;
  margin: 0 auto 16px;
}

.invite-divider {
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider-ornament {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .2em;
}
.invite-closing {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .06em;
}

.invite-title {
  font-family: var(--font-status);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: .12em;
  margin-bottom: 8px;
}

.invite-salute {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.invite-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.9;
  max-width: 440px;
  margin: 0 auto 8px;
}
.invite-body-2 { font-size: .925rem; color: var(--gray-mid); margin-bottom: 0; }

.invite-btn { margin-top: 8px; }

/* ── CONTACT ───────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-lt);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: 8px;
  font-family: var(--font-brand);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(190,155,82,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.form-success {
  display: none;
  background: #e8f8f0;
  border: 1px solid #68d391;
  color: #276749;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-block h4 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-block p, .info-block a {
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.6;
}
.info-block a:hover { color: var(--navy); text-decoration: underline; }

.info-gold-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin-top: 8px;
}
.info-gold-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ── FOOTER ────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .925rem;
  color: var(--gold-lt);
}

.footer-links h5,
.footer-contact h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }

.footer-contact p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.footer-contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold-lt); }
.footer-addr { font-size: .8rem !important; line-height: 1.5; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .program-card--featured { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 100px;
  }
  .hero-visual { display: none; }
  .hero-eyebrow { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-content {
    grid-template-columns: 1fr;
  }
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: 1fr; }

  .exam-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .exam-dates { justify-content: center; }
  .exam-sessions { text-align: center; }

  .exam-inner { padding: 36px 24px; }

  .invite-card { padding: 40px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }

  .section-container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .btn { padding: 12px 20px; font-size: .85rem; }
  .hero-buttons { flex-direction: column; }
  .exam-cta { flex-direction: column; align-items: center; }
  .invite-title { font-size: 1.15rem; }
  .invite-card { padding: 32px 16px; }
}
