@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;700&display=swap');

/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --g1: #FFF8E8;
  --g2: #C9920C;
  --g3: #A07010;
  --g4: #7A5200;
  --g5: #5A3A00;
  --white: #FDFAF4;
  --white-off: #F7F2E8;
  --white-card: #FFFFFF;
  --white-mid: #F2ECD8;
  --white-soft: #FAF6EE;
  --text-primary: #1A1200;
  --text-secondary: #4A3800;
  --text-muted: rgba(90,58,0,0.5);
  --text-dim: rgba(90,58,0,0.65);
  --card-border: rgba(160,112,16,0.18);
  --gold-line: rgba(160,112,16,0.25);
  --shine: linear-gradient(105deg, #7A5200 0%, #C9920C 25%, #FFF8E8 50%, #C9920C 75%, #7A5200 100%);
  --gold-grad: linear-gradient(135deg, #7A5200, #C9920C, #FFF8E8, #E8AC20, #A07010);
  --radius: 16px;
  /* Diamond Blue (footer accents) */
  --db-navy: #070E1C;
  --db-mid: #0D1F3C;
  --db-line: rgba(78,159,232,0.22);
  --db-crystal: #B8DEFF;
  --db-silver-dim: rgba(184,222,255,0.35);
  --db-silver-ghost: rgba(184,222,255,0.07);
  --db-shine-blue: linear-gradient(105deg, #0A1428 0%, #1E4FC2 22%, #B8DEFF 50%, #4A9FE8 78%, #0A1428 100%);
}

/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: overlay; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 14px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,215,0,0);
  border-radius: 9999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  transition: background 0.4s;
}
html.is-scrolling ::-webkit-scrollbar-thumb {
  background: rgb(188, 177, 117);
  background-clip: padding-box;
  box-shadow: 0 2px 10px rgba(255,215,0,0.5), 0 1px 4px rgba(0,0,0,0.2);
}
html.is-scrolling ::-webkit-scrollbar-thumb:hover {
  background: rgba(188, 177, 117,1);
  background-clip: padding-box;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translate(28px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 6px rgba(201,146,12,.5), 0 0 16px rgba(201,146,12,.25); }
  50%      { box-shadow: 0 0 14px rgba(201,146,12,.7), 0 0 36px rgba(201,146,12,.4); }
}
@keyframes driftA {
  from { transform: translate(0,0); } to { transform: translate(80px,60px); }
}
@keyframes driftB {
  from { transform: translate(0,0); } to { transform: translate(-60px,-80px); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.25; }
}
@keyframes slowZoom {
  from { transform: scale(1.05); } to { transform: scale(1.13); }
}
@keyframes starTwinkle {
  0%, 76%, 100% { opacity: 0; transform: scale(0.2) rotate(0deg); }
  80%  { opacity: 0.7; transform: scale(1.1) rotate(18deg); }
  87%  { opacity: 1;   transform: scale(1.5) rotate(36deg); }
  93%  { opacity: 0.5; transform: scale(0.9) rotate(52deg); }
  98%  { opacity: 0;   transform: scale(0.2) rotate(65deg); }
}
@keyframes auroraSlideRight {
  0%   { transform: translateX(-100%) scaleY(0.85); opacity: 0; }
  7%   { opacity: 1; }
  30%  { transform: translateX(-20%)  scaleY(1.30); }
  55%  { transform: translateX(50%)   scaleY(0.88); }
  80%  { transform: translateX(100%)  scaleY(1.20); }
  93%  { opacity: 1; }
  100% { transform: translateX(135%)  scaleY(1.00); opacity: 0; }
}
@keyframes blueShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes pfhShimmer {
  from { background-position: 150% center; }
  to   { background-position: 0% center; }
}

canvas#sparkle { position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.9; }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.shine-text {
  background: var(--shine); background-size: 300% 100%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite;
}
.gold-divider {
  height: 1px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite;
  opacity: .4;
}

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 110px;
  background: rgba(8,23,73,0.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: height 0.3s;
  box-shadow: 0 1px 24px rgba(160,112,16,0.07);
  overflow: visible;
}
header::after { display: none; }
header.scrolled { height: 60px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  flex-shrink: 0; position: relative; overflow: visible;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-shine { display: none; }
.logo-icon::after { display: none; }

/* Header logo — large circle bleeding below border at top, shrinks on scroll */
header .logo-icon {
  width: 136px; height: 136px;
  position: relative; top: 18px;
  border-radius: 50%;
  background: #081749;
  border: 3px solid rgba(201,146,12,0.38);
  box-shadow: 0 0 0 4px rgba(201,146,12,0.07), 0 6px 28px rgba(201,146,12,0.13);
  transition: width 0.35s ease, height 0.35s ease, top 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  padding: 12px; box-sizing: border-box;
}
header.scrolled .logo-icon {
  width: 46px; height: 46px;
  top: 0;
  padding: 4px;
  box-shadow: 0 0 0 2px rgba(201,146,12,0.05), 0 2px 10px rgba(201,146,12,0.08);
}

/* Four-pointed star sparkles */
.logo-star {
  position: absolute; pointer-events: none;
  color: #FFD700; opacity: 0; line-height: 1;
  text-shadow: 0 0 8px rgba(255,215,0,0.95), 0 0 20px rgba(255,215,0,0.6), 0 0 36px rgba(255,215,0,0.3);
}
.logo-star.s1 { top: 4%;   right: 6%;   font-size: 20px; animation: starTwinkle 6.5s ease-in-out 0s    infinite; }
.logo-star.s2 { top: 50%;  left: -3%;   font-size: 13px; animation: starTwinkle 7.2s ease-in-out 1.5s  infinite; }
.logo-star.s3 { bottom: 8%; right: 10%;  font-size: 16px; animation: starTwinkle 5.8s ease-in-out 3.1s  infinite; }
.logo-star.s4 { top: 20%;  left: 5%;    font-size: 11px; animation: starTwinkle 6.9s ease-in-out 0.7s  infinite; }
.logo-star.s5 { bottom: 22%; left: 16%; font-size: 18px; animation: starTwinkle 7.8s ease-in-out 4.3s  infinite; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; display: block; }
.logo-sub {
  display: block; font-size: 10px; font-weight: 400; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted); font-family: 'DM Sans', sans-serif;
  -webkit-text-fill-color: var(--text-muted);
}

/* Nav links */
nav { display: flex; align-items: center; gap: 4px; }

nav a.nav-link {
  position: relative; text-decoration: none;
  color: rgba(255,255,255,0.82); font-size: 16px;
  padding: 6px 2px; margin: 0 13px;
  border-radius: 0; background: none !important;
  font-weight: 700; letter-spacing: 0.3px;
  transition: color 0.25s, font-size 0.35s ease;
}
header.scrolled nav a.nav-link { font-size: 13px; }
nav a.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
}
nav a.nav-link:hover { color: #FFD700; background: transparent !important; }
nav a.nav-link:hover::after { transform: scaleX(1); }

nav a.nav-cta {
  background: transparent !important;
  border: 1px solid rgba(160,112,16,0.45) !important;
  color: var(--g3) !important; -webkit-text-fill-color: var(--g3) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
  padding: 9px 20px !important; border-radius: 30px !important;
  margin-left: 20px; transition: all 0.3s !important;
  animation: none !important; box-shadow: none !important;
  position: relative; overflow: hidden;
  text-decoration: none;
}
nav a.nav-cta::before {
  content: ''; position: absolute; inset: 0; border-radius: 30px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite;
  opacity: 0; transition: opacity 0.3s;
}
nav a.nav-cta:hover {
  border-color: rgba(160,112,16,0.9) !important;
  color: #fff !important; -webkit-text-fill-color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 24px rgba(160,112,16,0.3) !important;
}
nav a.nav-cta:hover::before { opacity: 1; }
nav a.nav-cta span { position: relative; z-index: 1; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; }

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.mobile-nav {
  display: none; position: fixed; right: 16px;
  background: rgba(8,16,50,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; z-index: 999;
  flex-direction: column; padding: 6px; min-width: 190px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  text-decoration: none; font-size: 14px;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  color: rgba(255,255,255,0.82); padding: 11px 16px;
  border-radius: 9px; transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* ══════════════════════════════════════════
   HERO (index page)
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--white-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 170px 60px 90px; position: relative; overflow: hidden;
  text-align: center;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('images/school.jpg') center/cover;
  opacity: 0.04; transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(160,112,16,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(160,112,16,0.06) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 92%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 92%);
}
.glow-1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,200,60,0.13) 0%, transparent 70%);
  top: -200px; left: -200px; animation: driftA 10s ease-in-out infinite alternate;
}
.glow-2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,12,0.08) 0%, transparent 70%);
  bottom: -100px; right: 200px; animation: driftB 14s ease-in-out infinite alternate;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-bottom: 30px; animation: fadeUp 0.8s ease both;
}
.eyebrow-line {
  flex: 0 0 52px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,112,16,0.4), transparent);
}
.eyebrow-text {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--g3);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,146,12,0.3); background: rgba(201,146,12,0.08);
  color: rgba(212,165,32,0.9); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 9px 18px; border-radius: 30px; margin-bottom: 32px;
  animation: fadeUp 0.8s ease both;
}
.badge-dot { width: 7px; height: 7px; background: var(--g2); border-radius: 50%; animation: glowPulse 2s infinite; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(58px, 7.5vw, 100px); font-weight: 900; line-height: 1.05;
  margin-bottom: 28px; animation: fadeUp 0.8s 0.12s ease both;
}
.h1-plain { color: var(--text-primary); display: block; }
.h1-gold { display: block; }
.hero p {
  font-size: 22px; color: var(--text-dim); line-height: 1.75;
  max-width: 780px; margin: 0 auto 48px; font-weight: 300;
  animation: fadeUp 0.8s 0.22s ease both;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.32s ease both; }
.hero-bg-stats {
  position: relative; z-index: 2; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-end;
}
.hero-bg-stat {
  display: flex; flex-direction: column; align-items: flex-end;
}
.hero-bg-stat + .hero-bg-stat {
  padding-top: 28px;
  border-top: 1px solid rgba(160,112,16,0.15);
}
.hero-bg-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(110px, 14vw, 200px); font-weight: 900; line-height: 1;
  background: var(--shine); background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite;
  display: flex; align-items: flex-start;
}
.hero-bg-suffix {
  font-size: 0.4em; padding-top: 0.18em;
}
.hero-bg-label {
  font-size: 22px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--g3); -webkit-text-fill-color: var(--g3);
  margin-top: 8px; text-align: right;
}
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-muted); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: fadeUp 1s 1s ease both;
}
.scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--g2), transparent); animation: scrollPulse 2s infinite; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(105deg, #C9920C 0%, #E8C060 28%, #FFF8E8 50%, #E8C060 72%, #C9920C 100%); background-size: 300%; animation: shimmer 24s linear infinite;
  color: #fff; -webkit-text-fill-color: #fff;
  text-decoration: none; font-weight: 700; font-size: 15px;
  padding: 15px 30px; border-radius: 9px; transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(120,80,0,0.22);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(120,80,0,0.36); }
.hero .hero-btns { display: flex; gap: 16px; justify-content: center; }

.btn-ghost-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(160,112,16,0.35);
  color: var(--g3); text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 15px 30px; border-radius: 9px; transition: all 0.3s;
}
.btn-ghost-gold:hover { border-color: var(--g2); background: rgba(160,112,16,0.06); box-shadow: 0 0 20px rgba(160,112,16,0.12); }

/* Generic .btn used in programme/detail pages */
.btn {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--g3);
  border: 1.5px solid rgba(160,112,16,0.35);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
  align-self: flex-start;
}
.btn:hover {
  background: #081749; color: #fff;
  border-color: #081749; transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(8,23,73,0.4);
}

/* ══════════════════════════════════════════
   SECTIONS (shared)
══════════════════════════════════════════ */
section { padding: 100px 60px; position: relative; }
.section-label {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; background: var(--shine); background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 50px); font-weight: 700;
  line-height: 1.12; margin-bottom: 18px; color: var(--text-primary);
}
.section-sub { font-size: 16px; color: var(--text-dim); line-height: 1.75; max-width: 560px; font-weight: 300; }

/* ══════════════════════════════════════════
   GOLD CARD
══════════════════════════════════════════ */
.gold-card {
  background: var(--white-card); border: 1px solid var(--card-border);
  border-radius: 18px; position: relative; overflow: hidden;
  transition: all 0.35s; box-shadow: 0 2px 16px rgba(160,112,16,0.05);
}
.gold-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite; opacity: 0; transition: opacity 0.35s;
}
.gold-card:hover { border-color: rgba(160,112,16,0.35); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(160,112,16,0.13), 0 4px 24px rgba(0,0,0,0.06); }
.gold-card:hover::before { opacity: 1; }

/* ══════════════════════════════════════════
   PROGRAMME GRID & CARDS
══════════════════════════════════════════ */
.programmes {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; padding: 60px 40px;
  max-width: 1100px; margin: 0 auto;
}
.card {
  background: var(--white-card); border: 1px solid var(--card-border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(160,112,16,.05);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite;
  opacity: 0; transition: opacity .35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(160,112,16,.35); box-shadow: 0 20px 60px rgba(160,112,16,.13), 0 4px 24px rgba(0,0,0,.06); background: #FFF8E8; }
.card:hover::before { opacity: 1; }
.card-img-wrap { position: relative; }
.card-img-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold-grad); background-size: 300%;
  animation: shimmer 24s linear infinite;
}
.card img { width: 100%; height: 260px; object-fit: cover; object-position: center; display: block; }
.card-body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); line-height: 1.3; }
.tag {
  display: inline-block; font-size: 0.65rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 5px 13px; background: rgba(160,112,16,.07);
  border: 1px solid rgba(160,112,16,.18); color: var(--g3);
  border-radius: 30px; margin-bottom: 12px;
}
.card p:not(.tag) { font-size: 0.91rem; color: var(--text-dim); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.card .btn { align-self: flex-end; }

/* ══════════════════════════════════════════
   HERO (sub-pages: programmes, contact, etc.)
══════════════════════════════════════════ */
.page-hero {
  position: relative; text-align: center;
  padding: 136px 40px 20px;
  background: transparent; color: var(--text-primary);
  overflow: hidden;
}
.page-hero::before { display: none; }
.page-hero::after { display: none; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  color: #000000; margin-bottom: 6px; position: relative; z-index: 1;
  text-transform: uppercase;
  animation: fadeUp 0.6s 0.05s ease both;
}
.page-hero p {
  font-size: 1rem; font-weight: 700;
  color: #000000; position: relative; z-index: 1;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* IEP/detail hero */
.hero.detail-hero {
  min-height: unset;
  padding: 140px 60px 80px;
  text-align: center;
}
.hero.detail-hero img {
  width: 50%; height: 320px;
  object-fit: cover; object-position: center;
  border-radius: var(--radius);
  border: 1px solid rgba(201,146,12,.3);
  margin-bottom: 32px; display: block;
  margin-left: auto; margin-right: auto;
}
.hero.detail-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 14px; color: var(--g1);
}
.hero.detail-hero p { font-size: 1.05rem; font-weight: 300; color: rgba(255,248,232,.6); letter-spacing: .6px; }

/* ══════════════════════════════════════════
   PROGRAMME DETAIL LAYOUT
══════════════════════════════════════════ */
.prog-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; max-width: 1100px;
  margin: 0 auto; padding: 40px 60px 24px;
  align-items: start;
}
.prog-img img {
  width: 100%; border-radius: var(--radius);
  object-fit: cover; aspect-ratio: 3/2;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 24px rgba(160,112,16,0.12);
}
.prog-layout .content p { text-align: justify; }
.prog-layout .content ul li { text-align: justify; }
.prog-gains-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px 10px;
  text-align: center;
}
.prog-gains-wrap h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
}
.prog-gains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 48px;
  list-style: none;
  padding: 0; margin: 0 auto;
  max-width: 860px;
  text-align: left;
}
.prog-gains-grid li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: justify;
}
.prog-gains-grid li::before {
  content: '✦';
  position: absolute; left: 0; top: 3px;
  color: var(--gold);
  font-size: 9px;
}
.prog-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 60px 56px;
  text-align: center;
}
.prog-bottom p {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.65;
}
@media (max-width: 800px) {
  .prog-layout { grid-template-columns: 1fr; padding: 40px 24px 28px; gap: 32px; }
  .prog-gains-wrap { padding: 0 24px 8px; }
  .prog-gains-grid { grid-template-columns: 1fr; gap: 10px; }
  .prog-bottom { padding: 28px 24px 60px; }
}

/* ══════════════════════════════════════════
   CONTENT (detail pages)
══════════════════════════════════════════ */
.content { max-width: 760px; margin: 0 auto; padding: 70px 40px; }
.content p { font-size: 1.05rem; color: var(--text-dim); line-height: 1.85; margin-bottom: 24px; }
.content h3 {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  color: var(--text-primary); margin: 40px 0 16px;
  padding-bottom: 10px; border-bottom: 1px solid var(--gold-line);
  display: flex; align-items: center; gap: 10px;
}
.content h3::before {
  content: ''; display: inline-block; width: 4px; height: 20px;
  background: var(--g2); border-radius: 2px; flex-shrink: 0;
}
.content ul { list-style: none; padding: 0; margin-bottom: 24px; }
.content ul li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 11px 0; font-size: 0.97rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(160,112,16,.08);
}
.content ul li::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--g2); margin-top: 8px; flex-shrink: 0;
}
.content strong { color: var(--text-primary); font-weight: 600; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about { background: #FFFDF8; padding: 0; }
.ab-masthead { position: relative; padding: 100px 60px 80px; text-align: center; overflow: hidden; }
.ab-masthead-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #FFFBF0 0%, #FFF6DD 40%, #FFFBF0 100%); z-index: 0; }
.ab-masthead-num { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); font-family: 'Playfair Display', serif; font-size: 220px; font-weight: 900; line-height: 1; color: rgba(201,146,12,0.05); pointer-events: none; white-space: nowrap; z-index: 0; letter-spacing: -10px; }
.ab-masthead-inner { position: relative; z-index: 1; }
.ab-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 500; letter-spacing: 3.5px; text-transform: uppercase; color: #A07010; margin-bottom: 28px; }
.ab-eyebrow-line { width: 36px; height: 1px; background: #C9920C; opacity: 0.6; }
.ab-masthead h2 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 5vw, 66px); font-weight: 900; line-height: 1.05; color: #1A1200; margin-bottom: 0; }
.ab-masthead h2 em { font-style: italic; font-weight: 400; color: #A07010; }
.ab-ribbon { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(201,146,12,0.15); border-bottom: 1px solid rgba(201,146,12,0.15); background: linear-gradient(135deg, #FFFBF0, #FFF6DD); }
.ab-stat { padding: 36px 20px; text-align: center; border-right: 1px solid rgba(201,112,12,0.12); }
.ab-stat:last-child { border-right: none; }
.ab-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; line-height: 1; background: var(--shine); background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 24s linear infinite; }
.ab-stat span { font-size: 11px; color: rgba(90,58,0,0.5); letter-spacing: 2px; text-transform: uppercase; font-weight: 400; margin-top: 8px; display: block; }
.ab-chapter { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; position: relative; }
.ab-chapter.flip { direction: rtl; }
.ab-chapter.flip > * { direction: ltr; }
.ab-visual { position: relative; overflow: hidden; min-height: 420px; }
.ab-chapter:not(.flip) .ab-visual { border-right: 1px solid rgba(201,146,12,0.12); }
.ab-chapter.flip .ab-visual { border-left: 1px solid rgba(201,146,12,0.12); }
.ab-visual-inner { position: absolute; inset: 0; display: flex; align-items: stretch; justify-content: stretch; }
.ab-img { width: 100%; height: 100%; object-fit: contain; display: block; filter: sepia(8%) saturate(95%); }
.ab-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(122,82,0,0.18) 0%, transparent 60%); pointer-events: none; }
.ab-visual-num { position: absolute; bottom: -20px; right: 16px; font-family: 'Playfair Display', serif; font-size: 160px; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.08); pointer-events: none; z-index: 2; letter-spacing: -4px; }
.ab-chapter.flip .ab-visual-num { right: auto; left: 16px; }
.ab-badge { position: absolute; bottom: 28px; left: 28px; z-index: 3; background: linear-gradient(135deg, #7A5200, #C9920C, #E8AC20); padding: 20px 26px; border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.ab-chapter.flip .ab-badge { left: auto; right: 28px; }
.ab-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900; color: #fff; -webkit-text-fill-color: #fff; line-height: 1; }
.ab-badge span { font-size: 10px; color: rgba(255,255,255,0.75); -webkit-text-fill-color: rgba(255,255,255,0.75); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; display: block; font-weight: 500; }
.ab-float-quote { position: absolute; top: 28px; right: 28px; z-index: 3; max-width: 180px; background: rgba(255,251,240,0.95); border-left: 2px solid #C9920C; padding: 14px 16px; border-radius: 0 6px 6px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.ab-chapter.flip .ab-float-quote { right: auto; left: 28px; border-left: none; border-right: 2px solid #C9920C; border-radius: 6px 0 0 6px; }
.ab-float-quote p { font-size: 12px; color: #5A3A00; line-height: 1.55; font-style: italic; }
.ab-float-quote strong { display: block; font-size: 10px; color: #A07010; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; font-style: normal; }
.ab-text { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; background: #FFFDF8; position: relative; overflow: hidden; }
.ab-text::before { content: ''; position: absolute; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,146,12,0.2) 20%, rgba(201,146,12,0.2) 80%, transparent); }
.ab-chapter:not(.flip) .ab-text::before { left: 0; }
.ab-chapter.flip .ab-text::before { right: 0; left: auto; }
.ab-chap-num { font-family: 'Playfair Display', serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; display: block; margin-bottom: 20px; }
.ab-text h3 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; color: #1A1200; line-height: 1.18; margin-bottom: 22px; }
.ab-text h3 em { color: #A07010; font-style: italic; font-weight: 400; }
.ab-body { font-size: 15px; color: rgba(90,58,0,0.65); line-height: 1.85; font-weight: 300; margin-bottom: 32px; }
.ab-accent-bar { height: 2px; width: 48px; background: linear-gradient(90deg, #7A5200, #C9920C); margin-bottom: 28px; border-radius: 1px; }
.ab-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.ab-chip { font-size: 11px; font-weight: 500; padding: 6px 14px; border-radius: 30px; border: 1px solid rgba(160,112,16,0.25); background: rgba(160,112,16,0.06); color: #A07010; letter-spacing: 0.3px; }
.ab-pillars { display: flex; flex-direction: column; gap: 14px; }
.ab-pillar { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; border: 1px solid rgba(160,112,16,0.12); border-radius: 8px; background: #FFF8E8; }
.ab-pillar-icon { width: 36px; height: 36px; flex-shrink: 0; background: linear-gradient(135deg, #7A5200, #C9920C); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.ab-pillar h4 { font-size: 14px; font-weight: 500; color: #1A1200; margin-bottom: 3px; }
.ab-pillar p { font-size: 12px; color: rgba(90,58,0,0.6); line-height: 1.55; }
.ab-philosophy { padding: 80px 60px; text-align: center; background: #1A1200; position: relative; overflow: hidden; }
.ab-philosophy::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #C9920C 30%, #E8AC20 50%, #C9920C 70%, transparent); }
.ab-philosophy::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #C9920C 30%, #E8AC20 50%, #C9920C 70%, transparent); }
.ab-philo-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.ab-philo-quote-mark { font-family: 'Playfair Display', serif; font-size: 100px; line-height: 0.6; color: #C9920C; opacity: 0.3; margin-bottom: 20px; display: block; }
.ab-philo-text { font-family: 'Playfair Display', serif; font-size: clamp(18px, 2.2vw, 26px); font-weight: 400; font-style: italic; color: #FFF8E8; line-height: 1.6; margin-bottom: 24px; }
.ab-philo-attr { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,248,232,0.4); font-weight: 400; }
.ab-philo-line { width: 48px; height: 1px; background: #C9920C; opacity: 0.5; margin: 20px auto 0; }
.ab-loc-detail { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.ab-loc-item { display: flex; align-items: flex-start; gap: 14px; }
.ab-loc-dot { width: 8px; height: 8px; border-radius: 50%; background: #C9920C; flex-shrink: 0; margin-top: 7px; }
.ab-loc-item p { font-size: 14px; color: rgba(90,58,0,0.65); line-height: 1.6; }
.ab-loc-item strong { display: block; font-size: 13px; color: #1A1200; margin-bottom: 3px; font-weight: 500; }
.ab-mosaic { position: absolute; inset: 0; }
.ab-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; filter: sepia(8%) saturate(90%); }
.ab-mosaic-label { position: absolute; bottom: 12px; left: 12px; background: rgba(26,18,0,0.7); color: #FFF8E8; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 30px; font-weight: 500; }

/* ══════════════════════════════════════════
   ABOUT US SECTION
══════════════════════════════════════════ */
/* ── ABOUT SECTION ── */
#about-meteors {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
#about {
  background: linear-gradient(180deg,
    #FAF6EE 0%,
    #F3E9D2 10%,
    #EAE0C2 32%,
    #E6DBC0 52%,
    #EEE5CC 75%,
    #F7F1E4 90%,
    #FDFAF4 100%
  );
  position: relative;
  min-height: 100vh;
  padding: 72px 80px 0;
}
.about-grid {
  position: relative; z-index: 1;
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 64px; align-items: center;
  padding-bottom: 72px;
}
.about-body { }
.about-right-col { display: flex; flex-direction: column; gap: 24px; }
.about-photo { position: relative; }
.about-photo img {
  width: 100%; height: 440px; object-fit: cover; object-position: right center;
  border-radius: 14px; display: block;
  border: 1px solid rgba(160,112,16,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.about-photo::after {
  content: ''; position: absolute;
  top: 14px; right: -14px; bottom: -14px; left: 14px;
  border: 1px solid rgba(160,112,16,0.22);
  border-radius: 14px; z-index: -1;
}
#about .section-label {
  font-family: 'Playfair Display', serif;
  font-size: 25px; letter-spacing: 2.5px;
  background: none; -webkit-text-fill-color: var(--text-primary);
  color: var(--text-primary); animation: none;
}
.about-title {
  font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 700;
  color: var(--text-primary); margin: 12px 0 28px;
}
.about-text p {
  font-size: 15px; color: var(--text-dim);
  line-height: 1.78; font-weight: 400; margin-bottom: 16px;
  text-align: justify;
}
.about-text p:last-child { margin-bottom: 0; }

/* Who We Are — below photo in right col */
.about-who { padding: 20px 0 0; }
.about-who-bg { display: none; }
.about-who-inner {
  border-top: 1px solid rgba(160,112,16,0.22);
  border-bottom: 1px solid rgba(160,112,16,0.22);
  padding: 20px 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.about-who-inner .ab-eyebrow {
  font-size: 10px; letter-spacing: 3.5px; color: var(--g3);
  font-weight: 600; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.about-who-inner .ab-eyebrow-line {
  flex: 0 0 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,112,16,0.4), transparent);
}
.about-who-inner h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1; margin: 0;
}
.about-who-top {
  display: block; font-size: 17px; font-weight: 400;
  color: var(--text-primary); letter-spacing: 1.5px; margin-bottom: 0;
  font-style: normal; line-height: 1.4;
}
.about-who-inner h2 em {
  display: block; font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px); font-weight: 900;
  background: linear-gradient(105deg, #7A5200 0%, #C9920C 28%, #E8B830 50%, #C9920C 72%, #8A6000 100%);
  background-size: 300%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite;
}

/* ══════════════════════════════════════════
   COURSES
══════════════════════════════════════════ */
#courses {
  background: linear-gradient(180deg,
    #FDFAF4 0%, #F3E9D2 10%, #EAE0C2 32%, #E6DBC0 52%, #EEE5CC 75%, #F7F1E4 90%, #FDFAF4 100%
  );
  padding: 36px 0 80px;
  position: relative;
}
#courses-meteors {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
#courses-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
#courses .section-label {
  font-family: 'Playfair Display', serif;
  font-size: 45px; letter-spacing: 2.5px;
  background: none; -webkit-text-fill-color: var(--text-primary);
  color: var(--text-primary); animation: none;
}
#courses .section-title { font-size: 36px; }
.courses-header {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  padding: 0 60px; position: relative; z-index: 1;
  text-align: center;
}

/* ── Carousel ── */
.prog-carousel-wrap {
  position: relative; z-index: 1;
}
.prog-viewport {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 22%, black 78%, transparent 100%);
}
.prog-track {
  display: flex; gap: 24px;
  will-change: transform;
}
.prog-slide {
  flex-shrink: 0;
  padding: 44px 40px;
  height: 610px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0.38;
  transition: opacity .45s ease;
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  transform-origin: center center;
}
.prog-slide.active { opacity: 1; }
.prog-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(253,250,244,0.52);
  border-radius: inherit;
  pointer-events: none;
  opacity: 1;
  transition: opacity .45s ease;
  z-index: 20;
}
.prog-slide.active::after { opacity: 0; }
.prog-slide h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
}
.prog-slide p { font-size: 16px; color: var(--text-dim); line-height: 1.7; margin: 0; }
.prog-slide .btn { display: block; margin-left: auto; width: fit-content; }
.prog-slide-img {
  width: calc(100% + 80px);
  margin-left: -40px;
  margin-right: -40px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.prog-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(201,146,12,0.12); border: 1px solid rgba(201,146,12,0.35);
  color: var(--g3); font-size: 34px; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, box-shadow .2s;
}
.prog-prev { left: 18px; }
.prog-next { right: 18px; }
.prog-arrow:hover { background: rgba(201,146,12,0.24); box-shadow: 0 4px 16px rgba(201,146,12,0.2); }
.prog-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 36px; position: relative; z-index: 1;
}
.prog-dot {
  height: 8px; width: 8px; border-radius: 4px;
  background: rgba(201,146,12,0.25); border: none; cursor: pointer;
  transition: background .3s, width .3s; padding: 0;
}
.prog-dot.active { background: var(--g2); width: 26px; }

/* "Find Your Perfect Course" — editorial heading left of card 1 */
.prog-find-heading {
  position: absolute;
  left: 76px;
  right: 62%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  border-left: 3px solid rgba(160,112,16,0.4);
  padding-left: 28px;
}
.prog-find-heading.visible { opacity: 1; }
.pfh-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: 18px;
}
.pfh-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 6vw, 92px);
  font-weight: 900;
  font-style: italic;
  line-height: 0.88;
  color: #1a3580;
  margin-bottom: 18px;
}
.pfh-course {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 8px;
  text-transform: uppercase;
}
.prog-find-heading-right {
  left: 62%;
  right: 76px;
  border-left: none;
  border-right: 3px solid rgba(160,112,16,0.4);
  padding-left: 0;
  padding-right: 28px;
  text-align: right;
}
@media (max-width: 900px) { .prog-find-heading { display: none; } }

.prog-slide-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.prog-slide-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.course-num {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  background: var(--shine);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 24s linear infinite;
  flex-shrink: 0;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.course-icon-wrap { display: flex; justify-content: center; align-items: center; }
.course-icon { width: 130px; height: 130px; border-radius: 32px; background: rgba(160,112,16,0.06); border: 1px solid rgba(160,112,16,0.15); display: flex; align-items: center; justify-content: center; font-size: 58px; position: relative; overflow: hidden; }
.course-icon::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(160,112,16,0.06), transparent); }

/* ══════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════ */
.home-video-section {
  width: 100%; background: #000;
  display: flex; justify-content: center; align-items: center;
}
.home-video-section video {
  width: 100%; max-height: 70vh;
  object-fit: cover; display: block;
}

.stats-band { background: var(--text-primary); padding: 80px 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; position: relative; overflow: hidden; }
.stats-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(201,146,12,0.15), transparent 70%); }
.stats-band::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); background-size: 300%; animation: shimmer 24s linear infinite; }
.stat-item { text-align: center; padding: 20px 40px; position: relative; z-index: 1; }
.stat-item:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(201,146,12,0.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 62px; font-weight: 900; line-height: 1; display: block; background: var(--shine); background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 24s linear infinite; }
.stat-lbl { font-size: 12px; color: rgba(255,248,232,0.5); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 400; margin-top: 10px; display: block; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#feedback-waves {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
#testi-float { z-index: 1; }
#testimonials {
  position: relative;
  background: linear-gradient(160deg, #0a0f22 0%, #0d1530 55%, #080c1c 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 60px;
  padding-bottom: 56px;
}
#testimonials .section-title {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
}
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 56px; }
.testi-card { padding: 36px; }
.testi-card.hi { background: linear-gradient(145deg, #FFFBF0, #FFF6DD, #FFFBF0); }
#testi-float {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 0;
  margin-top: 32px;
  overflow: hidden;
}
.testi-pop {
  position: absolute;
  width: 340px;
  background: #FFFCF5;
  border-radius: 14px;
  padding: 44px 18px;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.38),
    0 6px 18px rgba(0,0,0,0.20),
    inset 0 0 0 1px rgba(201,146,12,0.18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
  overflow: hidden;
}
.testi-pop::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(201,146,12,0.10);
  position: absolute;
  top: 0px;
  left: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-pop::after {
  content: '\201D';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(201,146,12,0.10);
  position: absolute;
  bottom: -36px;
  right: 12px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.testi-pop.show {
  opacity: 1;
  transform: translateY(0);
}
.testi-pop.hide {
  opacity: 0;
  transform: translateY(-12px);
}
.testi-pop p {
  font-size: 0.94rem;
  line-height: 1.60;
  color: #3d3020;
  font-style: italic;
  margin: 0;
  position: relative;
  text-align: justify;
  overflow-wrap: break-word;
}
.testi-pop p::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3.4em;
  font-weight: 700;
  font-style: normal;
  float: left;
  line-height: 0.82;
  margin-right: 6px;
  margin-top: 1px;
  color: #C9920C;
}
.testi-pop-name {
  display: block;
  margin-top: 11px;
  font-size: 0.80rem;
  font-style: normal;
  font-weight: 600;
  color: #C9920C;
  text-align: right;
  letter-spacing: 0.04em;
  position: relative;
}
.testi-bubble {
  position: absolute;
  top: 0; left: 0;
  width: 250px;
  background: var(--white-card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 22px 26px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  box-shadow: 0 6px 28px rgba(160,112,16,0.10);
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  will-change: transform;
}
.testi-bubble.visible { opacity: 1; }
.testi-bubble::before {
  content: '\201C';
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--g2);
  margin-bottom: 6px;
  font-style: normal;
}
.quote { font-family: 'Playfair Display', serif; font-size: 72px; line-height: 0.6; display: block; margin-bottom: 18px; background: var(--shine); background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 24s linear infinite; opacity: 0.4; }
.testi-card p { font-size: 15px; line-height: 1.78; color: var(--text-dim); font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; background: var(--gold-grad); background-size: 200%; animation: shimmer 24s linear infinite; color: #fff; -webkit-text-fill-color: #fff; box-shadow: 0 0 16px rgba(160,112,16,0.3); }
.author-name { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); }
.author-role { font-size: 12px; color: var(--text-muted); }
.stars { font-size: 14px; margin-bottom: 14px; background: var(--shine); background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: shimmer 24s linear infinite; }

/* ══════════════════════════════════════════
   CONTACT SECTION (index page) — Aurora theme
══════════════════════════════════════════ */
#contact {
  background: linear-gradient(180deg, #020818 0%, #030d20 45%, #020c18 100%);
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 64px;
  overflow: hidden;
}

/* Aurora bands */
.aurora-bands {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.aurora-band {
  position: absolute;
  width: 150%;
  left: -25%;
  border-radius: 50%;
  filter: blur(52px);
  animation: auroraSlideRight 28s linear infinite;
}
.ab1 {
  height: 200px;
  top: 10%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,210,140,0.22) 20%, rgba(30,195,120,0.32) 50%, rgba(0,210,140,0.22) 80%, transparent 100%);
  animation-delay: 0s;
}
.ab2 {
  height: 170px;
  top: 30%;
  background: linear-gradient(90deg, transparent 0%, rgba(120,70,235,0.18) 20%, rgba(160,85,255,0.26) 50%, rgba(100,60,215,0.18) 80%, transparent 100%);
  animation-delay: -7s;
}
.ab3 {
  height: 155px;
  top: 7%;
  background: linear-gradient(90deg, transparent 0%, rgba(15,160,235,0.16) 20%, rgba(30,148,240,0.22) 50%, rgba(10,145,220,0.16) 80%, transparent 100%);
  animation-delay: -14s;
}
.ab4 {
  height: 140px;
  top: 47%;
  background: linear-gradient(90deg, transparent 0%, rgba(0,200,160,0.15) 20%, rgba(20,185,148,0.21) 50%, rgba(0,185,145,0.15) 80%, transparent 100%);
  animation-delay: -21s;
}

/* Canvas for gold star particles */
.contact-stars-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Subtle top glow accent */
#contact::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%; height: 45%;
  background:
    radial-gradient(ellipse at 35% 0%, rgba(0,200,140,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 0%, rgba(120,70,220,0.07) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* Bottom deep fade */
#contact::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 35%;
  background: radial-gradient(ellipse at 50% 100%, rgba(2,8,24,0.85) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: stretch; position: relative; z-index: 1; }
#contact .contact-grid > div:not(.contact-form) {
  display: flex;
  flex-direction: column;
}
#contact .contact-grid > div:not(.contact-form) iframe {
  flex: 1;
  min-height: 140px;
  border-radius: 12px;
  border: none;
  display: block;
  width: 100%;
  margin-top: 20px;
}
#contact .section-title { font-size: clamp(2.4rem, 4.2vw, 3.6rem); color: #FFFFFF; }
#contact .section-sub { font-size: 20px; max-width: none; line-height: 1.6; color: rgba(255,255,255,0.60); }
#contact .contact-items { gap: 20px; margin-top: 28px; }
#contact .c-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201,146,12,0.35);
  background: rgba(201,146,12,0.10);
  color: #E8AC20;
  font-size: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#contact .c-item h4 { color: rgba(232,172,32,0.75); font-size: 10px; letter-spacing: 2px; margin-bottom: 4px; }
#contact .c-item p  { color: rgba(255,255,255,0.90); font-size: 17px; line-height: 1.55; font-weight: 600; }
#contact .c-item a  { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.55; text-decoration: none; font-weight: 600; }
#contact .c-item a:hover { color: #E8AC20; }

/* Form — frosted glass */
#contact .contact-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.18);
}
#contact .form-group { margin-bottom: 12px; }
#contact .contact-form::before { display: none; }
#contact .form-group label { color: rgba(255,255,255,0.55); }
#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}
#contact .form-group input::placeholder,
#contact .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
#contact .form-group input:focus,
#contact .form-group select:focus,
#contact .form-group textarea:focus {
  border-color: rgba(232,172,32,0.65);
  box-shadow: 0 0 0 3px rgba(201,146,12,0.15);
  background: rgba(255,255,255,0.13);
}
#contact .form-group select option { background: #f5f3ef; color: #1A1200; }
#contact .form-group .iti { width: 100%; }
#contact .form-group .iti input { width: 100%; }
#contact .btn-submit {
  background: linear-gradient(135deg, #00b894 0%, #0984e3 100%);
  animation: none;
  border: none;
  box-shadow: 0 6px 28px rgba(0,160,130,0.30);
  color: #ffffff;
}
#contact .btn-submit:hover { box-shadow: 0 12px 40px rgba(0,160,130,0.50); }
.contact-items { display: flex; flex-direction: column; gap: 26px; margin-top: 40px; }
.c-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(160,112,16,0.07); border: 1px solid rgba(160,112,16,0.2); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.c-item h4 { font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--g3); margin-bottom: 5px; }
.c-item p { font-size: 15px; color: var(--text-dim); line-height: 1.5; }
.c-item a { color: var(--text-dim); text-decoration: none; font-size: 15px; line-height: 1.5; }
.contact-form { background: var(--white-card); border: 1px solid var(--card-border); border-radius: 20px; padding: 42px; position: relative; overflow: hidden; box-shadow: 0 8px 40px rgba(160,112,16,0.08); }
.contact-form::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); background-size: 300%; animation: shimmer 24s linear infinite; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 9px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--white-soft); border: 1px solid rgba(160,112,16,0.18); border-radius: 10px; padding: 13px 16px; font-size: 15px; color: var(--text-primary); font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.25s, box-shadow 0.25s; }
.form-group .iti { width: 100%; }
.form-group .iti input { width: 100%; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(90,58,0,0.3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--g2); box-shadow: 0 0 0 3px rgba(160,112,16,0.1); background: #fff; }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: #fff; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit { width: 100%; background: var(--gold-grad); background-size: 250%; animation: shimmer 24s linear infinite; color: #fff; -webkit-text-fill-color: #fff; border: none; padding: 16px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: all 0.3s; letter-spacing: 0.5px; margin-top: 6px; box-shadow: 0 6px 28px rgba(160,112,16,0.3); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 44px rgba(160,112,16,0.45); }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-wrapper { max-width: 1060px; margin: 0 auto; padding: 20px 40px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.cu-form-wrap { max-width: 1060px; margin: 0 auto; padding: 0 40px 60px; }
.cu-form-card { padding: 28px 32px; }
.cu-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cu-form-card .form-group { margin-bottom: 14px; }
.cu-form-card .btn-submit { margin-top: 4px; }
.contact-left { display: flex; flex-direction: column; gap: 16px; height: 100%; }
.contact-left .contact-card:last-child { flex: 1; }
.contact-left .contact-card { display: flex; flex-direction: column; }
.contact-left .hours-table { flex: 1; height: 100%; border-collapse: collapse; table-layout: fixed; }
.contact-left .hours-table tr { height: 25%; border-bottom: 1px solid rgba(160,112,16,.08); }
.contact-left .hours-table tr:last-child { border-bottom: none; }
.contact-left .hours-table td { vertical-align: middle; font-size: 0.91rem; padding: 0; }
.contact-left .hours-table td:first-child { color: var(--text-dim); width: 55%; }
.contact-left .hours-table td:last-child { font-weight: 600; color: var(--text-primary); text-align: right; }
.contact-card { background: var(--white-card); border-radius: var(--radius); padding: 20px 24px; border: 1px solid var(--card-border); box-shadow: 0 2px 16px rgba(160,112,16,.05); position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); background-size: 300%; animation: shimmer 24s linear infinite; opacity: 0; transition: opacity .3s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(160,112,16,.1); }
.contact-card:hover::before { opacity: 1; }
.contact-card-label { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--g3); margin-bottom: 12px; }
.contact-card-label .icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(160,112,16,.08); border: 1px solid rgba(160,112,16,.18); display: flex; align-items: center; justify-content: center; }
.wa-card { display: flex; align-items: center; gap: 24px; }
.wa-qr { flex-shrink: 0; width: 110px; height: 110px; border-radius: 12px; overflow: hidden; border: 1px solid var(--card-border); }
.wa-qr img { width: 100%; height: 100%; object-fit: cover; }
.wa-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.wa-number { font-size: 0.95rem; font-weight: 500; color: var(--text-dim); margin-bottom: 14px; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #25D366; color: #fff; -webkit-text-fill-color: #fff; text-decoration: none; border-radius: 8px; font-size: 0.88rem; font-weight: 600; transition: background .2s, transform .15s; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa svg { width: 16px; height: 16px; fill: white; }
.address-text { font-size: 0.97rem; line-height: 1.8; color: var(--text-secondary); }
.address-text span { display: block; }
.btn-directions { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 18px; background: rgba(160,112,16,.07); border: 1px solid rgba(160,112,16,.22); color: var(--g3); text-decoration: none; border-radius: 8px; font-size: 0.84rem; font-weight: 500; transition: background .2s; }
.btn-directions:hover { background: rgba(160,112,16,.14); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(160,112,16,.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 14px 0; font-size: 0.91rem; }
.hours-table td:first-child { color: var(--text-dim); width: 55%; }
.hours-table td:last-child { font-weight: 600; color: var(--text-primary); text-align: right; }
.closed { color: #c0392b !important; }
.contact-right { position: sticky; top: 24px; height: 100%; }
.map-card { background: var(--white-card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); box-shadow: 0 2px 16px rgba(160,112,16,.05); display: flex; flex-direction: column; position: relative; transition: box-shadow .3s; }
.map-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); background-size: 300%; animation: shimmer 24s linear infinite; opacity: 0; transition: opacity .3s; z-index: 1; }
.map-card:hover { box-shadow: 0 12px 40px rgba(160,112,16,.1); }
.map-card:hover::before { opacity: 1; }
.map-card iframe { width: 100%; min-height: 0; border: none; display: block; }
.map-footer { padding: 16px 20px; font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }
.map-footer strong { color: var(--text-primary); display: block; font-size: 0.9rem; margin-bottom: 2px; }

/* ══════════════════════════════════════════
   FOOTER (new)
══════════════════════════════════════════ */
footer {
  background: #081749;
  padding: 0;
  border-top: none;
  display: block;
  position: relative;
  overflow: hidden;
}
footer::after {
  content: '';
  position: absolute; top: -60%; left: 25%; right: 25%;
  height: 260px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(30,79,194,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
footer::before {
  display: none;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; padding: 36px 60px 28px;
  border-bottom: 1px solid rgba(201,146,12,0.15);
  position: relative; z-index: 1;
}
.footer-tagline { font-size: 13px; color: rgba(255,246,220,0.55); line-height: 1.75; max-width: 240px; margin-bottom: 16px; font-style: italic; font-weight: 300; }
.footer-socials { display: flex; gap: 10px; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(201,146,12,0.35); color: rgba(255,246,220,0.55); font-size: 10px; font-weight: 700; text-decoration: none; letter-spacing: 0.5px; transition: all 0.25s; }
.social-btn:hover { border-color: var(--g2); color: var(--g2); background: rgba(201,146,12,0.1); }
.footer-col-title {
  font-size: 17px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px; font-family: 'DM Sans', sans-serif;
  background: linear-gradient(105deg, #C9920C 0%, #FFD700 25%, #FFFDE0 50%, #FFD700 75%, #C9920C 100%);
  background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite;
}
a.footer-col-title:hover { -webkit-text-fill-color: transparent; background: linear-gradient(105deg, #C9920C 0%, #FFD700 25%, #FFFDE0 50%, #FFD700 75%, #C9920C 100%); background-size: 300%; -webkit-background-clip: text; background-clip: text; }
.footer-links-col { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col a { font-size: 16px; color: #ffffff; text-decoration: none; transition: color 0.2s; font-weight: 300; width: fit-content; }
.footer-links-col a:hover { color: #FFD700; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 3px; }
.fci-label {
  font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  background: linear-gradient(105deg, #E8AC20 0%, #FFD700 25%, #FFFDE0 50%, #FFD700 75%, #E8AC20 100%);
  background-size: 300%; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; animation: shimmer 24s linear infinite;
}
.footer-contact-item span:last-child { font-size: 16px; color: #ffffff; line-height: 1.55; font-weight: 300; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 14px 60px; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
footer p { font-size: 13px; color: rgba(255,248,232,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,248,232,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--g1); }
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.footer-legal { display: flex; align-items: center; gap: 10px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #ffffff; }
.pb-divider { color: rgba(255,255,255,0.2); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 24px 70px; }
  .hero-bg-stats { display: none; }
  section { padding: 70px 24px; }
  .courses-grid { grid-template-columns: 1fr; }
  .course-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; padding: 50px 24px; }
  .stat-item:not(:last-child)::after { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .courses-header { flex-direction: column; align-items: flex-start; }
  #about { padding: 60px 24px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { height: 280px; }
  .about-who { padding: 16px 0 0; }
  .form-row { grid-template-columns: 1fr; }
  /* About */
  .ab-masthead { padding: 60px 24px 50px; }
  .ab-masthead-num { font-size: 110px; }
  .ab-chapter, .ab-chapter.flip { grid-template-columns: 1fr; direction: ltr; }
  .ab-visual { min-height: 280px; }
  .ab-text { padding: 40px 24px; }
  .ab-text::before { display: none; }
  .ab-chapter:not(.flip) .ab-visual { border-right: none; border-bottom: 1px solid rgba(201,146,12,0.12); }
  .ab-chapter.flip .ab-visual { border-left: none; border-bottom: 1px solid rgba(201,146,12,0.12); }
  .ab-ribbon { grid-template-columns: 1fr 1fr; }
  .ab-stat:nth-child(2) { border-right: none; }
  .ab-stat:nth-child(1), .ab-stat:nth-child(2) { border-bottom: 1px solid rgba(201,146,12,0.12); }
  .ab-philosophy { padding: 60px 24px; }
  .ab-float-quote { display: none; }
  .ab-badge { bottom: 16px; left: 16px; }
  .ab-chapter.flip .ab-badge { right: 16px; left: auto; }
  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 48px 24px 32px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .contact-wrapper { grid-template-columns: 1fr; padding: 36px 20px; }
  .contact-right { position: static; }
  .wa-card { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 120px 20px 50px; }
}

@media (max-width: 640px) {
  .programmes { grid-template-columns: 1fr; padding: 32px 20px; }
  .content { padding: 44px 20px; }
  .hero.detail-hero img { width: 90%; }
}

/* ══════════════════════════════════════════
   REGISTER PAGE
══════════════════════════════════════════ */
.register-wrapper { max-width: 700px; margin: 0 auto; padding: 60px 40px; }

.field-error { display: none; font-size: 0.78rem; color: #c0392b; margin-top: 6px; font-weight: 500; }
.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error { border-color: #c0392b !important; box-shadow: 0 0 0 3px rgba(192,57,43,0.1) !important; }

.radio-group { display: flex; flex-direction: column; gap: 12px; }
.radio-option { padding: 16px 20px; background: var(--white-soft); border: 1px solid rgba(160,112,16,0.18); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.radio-group .radio-option { display: flex; align-items: center; gap: 14px; }
.radio-option:hover { border-color: var(--g2); background: rgba(160,112,16,0.04); }
.radio-option input[type="radio"] { display: none; }
.radio-option input[type="radio"]:checked ~ .radio-box { border-color: var(--g2); background: var(--g2); }
.radio-option input[type="radio"]:checked ~ .radio-box .radio-dot { opacity: 1; }
.radio-option input[type="radio"]:checked ~ .radio-label strong { color: var(--g2); }
.radio-option:has(input:checked) { border-color: var(--g2); background: rgba(160,112,16,0.06); }
.radio-box { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(160,112,16,0.35); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.radio-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; opacity: 0; transition: opacity .2s; }
.radio-label { display: flex; flex-direction: row; align-items: center; gap: 10px; }
.radio-label strong { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); white-space: nowrap; }
.radio-label small { font-size: 0.85rem; color: var(--text-muted); }

.thank-card { background: var(--white-card); border: 1px solid var(--card-border); border-radius: 20px; padding: 52px 42px; text-align: center; box-shadow: 0 8px 40px rgba(160,112,16,0.08); position: relative; overflow: hidden; }
.thank-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-grad); background-size: 300%; animation: shimmer 24s linear infinite; }
.thank-icon { font-size: 2.5rem; color: var(--g2); margin-bottom: 16px; }
.thank-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--text-primary); margin-bottom: 10px; }
.thank-sub { font-size: 1rem; color: var(--text-dim); margin-bottom: 32px; }
.booking-summary { background: var(--white-soft); border: 1px solid var(--card-border); border-radius: 14px; padding: 24px 28px; margin-bottom: 28px; text-align: left; }
.booking-detail { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(160,112,16,0.08); }
.booking-detail:last-child { border-bottom: none; }
.bd-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--g3); }
.bd-val { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); }

@media (max-width: 640px) {
  .register-wrapper { padding: 36px 20px; }
  .form-row { grid-template-columns: 1fr; }
}