/* ===== CHS-STYLE EDITORIAL LAYOUT ===== */
/* Color palette: Black #111, Gold #C9A84C, White #fff */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #111111;
  --gold: #C9A84C;
  --gold-light: #e2cc7a;
  --gold-dark: #a8882e;
  --white: #ffffff;
  --off-white: #faf8f4;
  --cream: #f5f0e6;
  --gray: #888888;
  --gray-light: #e8e4dc;
  --gray-dark: #444444;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 4px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.3; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: rgba(255,255,255,0.6);
  margin-left: 16px;
}
.top-bar a:hover { color: var(--gold); }

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.header .container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 170px;
}

.logo { display: flex; align-items: center; align-self: center; }

.logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 0; height: 100%; }

.nav-links a {
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-dropdown > a .fa-chevron-down {
  font-size: 0.55rem;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.nav-dropdown:hover > a { color: var(--gold); }
.nav-dropdown:hover > a::after { transform: scaleX(1); }
.dropdown-menu {
  position: absolute;
  top: 98%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  display: none;
  z-index: 1001;
}
.nav-dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 11px 24px !important;
  font-size: 0.82rem !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--off-white) !important;
  color: var(--gold) !important;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  font-size: 0.8rem !important;
  letter-spacing: 1px;
  margin-left: 8px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; align-self: center; }
.hamburger span { width: 28px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

/* ===== HERO BANNER (full-width image style like CHS) ===== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  background: var(--black);
  margin-top: 170px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.85) 0%, rgba(17,17,17,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-left { max-width: 580px; }

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
}
.hero-year {
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  line-height: 1;
  opacity: 0.3;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--black); border-color: var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: var(--gray-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-gold { background: var(--gold); color: var(--black); }
.section-light { background: var(--off-white); }
.section-cream { background: var(--cream); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; font-weight: 600; color: var(--gold); }
.section-dark .section-header h2 { color: var(--gold); }
.section-header .gold-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 18px; }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ===== DIRECTOR / QUOTE SECTION (like CHS circular photo + quote) ===== */
.director-quote-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}
.director-quote-layout {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.director-photo-circle {
  flex-shrink: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  position: relative;
  overflow: hidden;
}
.director-photo-circle img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.director-photo-circle::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
}
.director-quote-text { flex: 1; }
.director-quote-text blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-dark);
  line-height: 1.9;
  margin-bottom: 28px;
  position: relative;
  padding-left: 0;
}
.director-quote-text blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}
.director-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.director-title-line {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== CENTERED INTRO TEXT (like "Awakening possibilities") ===== */
.intro-section { padding: 80px 0; text-align: center; }
.intro-section h2 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
  font-style: italic;
}
.intro-section p {
  max-width: 800px;
  margin: 0 auto 16px;
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.9;
}

/* ===== PROGRAMME CARDS (image-based like CHS) ===== */
.programme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.prog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition);
  text-align: center;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prog-card-img {
  height: 220px;
  background: linear-gradient(135deg, #1a1508, #2a2010);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.prog-card-img .card-icon {
  font-size: 60px;
  opacity: 0.8;
  position: relative;
  z-index: 2;
}
.prog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.prog-card-img .card-logo {
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  font-size: 36px;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.prog-card-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.prog-card-body h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--black); }
.prog-card-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.prog-card-body .btn { width: 100%; margin-top: auto; }

/* ===== WHY CHOOSE US (features) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  border: 2px solid var(--gold);
}
.feature-card h3 { font-size: 0.95rem; margin-bottom: 8px; font-family: var(--font-body); font-weight: 600; }
.feature-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== INTAKE BANNER ===== */
.intake-banner { background: var(--gold); padding: 48px 0; }
.intake-content { display: flex; align-items: flex-start; justify-content: center; gap: 48px; flex-wrap: wrap; text-align: center; }
.intake-centered .intake-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
}
.intake-centered .intake-item .icon { font-size: 28px; margin-bottom: 4px; }
.intake-centered .intake-item h3 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; color: var(--black); }
.intake-centered .intake-item p { font-size: 0.8rem; color: var(--gray-dark); line-height: 1.5; }
.intake-item { display: flex; align-items: center; gap: 12px; }
.intake-item .icon { font-size: 24px; }
.intake-item .text h3 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 700; color: var(--black); }
.intake-item .text p { font-size: 0.8rem; color: var(--gray-dark); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--black);
  padding: 140px 0 70px;
  text-align: center;
  position: relative;
  margin-top: 170px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/page-title.jpg') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(201,168,76,0.03) 40px, rgba(201,168,76,0.03) 80px);
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); position: relative; z-index: 2; margin-bottom: 12px; }
.page-hero p { color: var(--gold); font-size: 1.05rem; position: relative; z-index: 2; font-style: italic; }
.page-hero .gold-line { width: 60px; height: 2px; background: var(--gold); margin: 18px auto 0; position: relative; z-index: 2; }

/* ===== ABOUT CONTENT ===== */
.about-intro {
  font-size: 1.1rem;
  max-width: 750px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--gray-dark);
  line-height: 1.9;
}
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-bottom: 60px; }
.vm-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.vm-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); }
.vm-card h3 { font-size: 1.4rem; margin-bottom: 14px; color: var(--gold); }
.vm-card p, .vm-card li { color: var(--gray-dark); line-height: 1.8; }
.vm-card ul { margin-top: 10px; }
.vm-card ul li { padding: 5px 0 5px 22px; position: relative; }
.vm-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }

/* Core Values */
.values-strip { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.value-badge {
  background: var(--black);
  color: var(--gold);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== DIRECTOR FULL SECTION (about page) ===== */
.director-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}
.director-photo {
  background: linear-gradient(135deg, var(--cream), var(--gray-light));
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--gold);
  border: 4px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.director-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.director-photo::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
}
.director-info h2 { font-size: 1.8rem; margin-bottom: 4px; }
.director-info .title { color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.director-info .org { color: var(--gray); font-size: 0.85rem; margin-bottom: 20px; }
.director-info p { color: var(--gray-dark); margin-bottom: 14px; line-height: 1.8; font-size: 0.95rem; }
.director-info h3 { font-size: 1.1rem; margin: 24px 0 12px; font-family: var(--font-body); font-weight: 700; color: var(--gold); }
.director-info ul li { padding: 5px 0 5px 22px; position: relative; color: var(--gray-dark); font-size: 0.95rem; }
.director-info ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }

/* ===== PROGRAMME DETAIL ===== */
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.programme-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--transition);
}
.programme-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.programme-card h3 { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--gold); color: var(--gold); }
.programme-card ul li { padding: 9px 0 9px 28px; position: relative; color: var(--gray-dark); border-bottom: 1px solid var(--gray-light); }
.programme-card ul li:last-child { border-bottom: none; }
.programme-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; top: 11px; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.step-number {
  width: 50px; height: 50px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}
.step-card h3 { font-size: 0.95rem; margin-bottom: 6px; font-family: var(--font-body); font-weight: 600; }
.step-card p { font-size: 0.82rem; color: var(--gray); }

/* ===== REQUIREMENTS ===== */
.requirements-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.req-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 32px; }
.req-card h3 { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); color: var(--gold); }
.req-card ul li { padding: 8px 0 8px 26px; position: relative; color: var(--gray-dark); }
.req-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ===== FEES TABLE ===== */
.fees-table-wrap { max-width: 650px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; }
.fee-row { display: flex; justify-content: space-between; align-items: center; padding: 18px 28px; border-bottom: 1px solid var(--gray-light); }
.fee-row:last-child { border-bottom: none; }
.fee-row.highlight { background: var(--gold); border: none; }
.fee-row .label { font-weight: 600; font-size: 1rem; }
.fee-row .amount { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; }
.fee-row.highlight .label, .fee-row.highlight .amount { color: var(--black); }

.fee-covers { margin-top: 48px; }
.fee-covers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.fee-cover-item { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); font-size: 0.9rem; }
.fee-cover-item .check { color: var(--gold); font-size: 1.1rem; font-weight: 700; }

.fee-note {
  text-align: center;
  margin-top: 36px;
  padding: 18px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gray-dark);
  font-size: 0.9rem;
}

/* ===== IMPACT ===== */
.impact-content { max-width: 750px; margin: 0 auto; text-align: center; }
.impact-content p { font-size: 1.05rem; color: var(--gray-dark); line-height: 1.9; margin-bottom: 16px; }

.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 50px; }
.partner-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 36px; }
.partner-card h3 { font-size: 1.2rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); color: var(--gold); }
.partner-card ul li { padding: 8px 0 8px 26px; position: relative; color: var(--gray-dark); }
.partner-card ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-light); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: all var(--transition); }
.faq-item:hover { border-color: var(--gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .icon { font-size: 1.3rem; color: var(--gold); transition: transform var(--transition); font-weight: 700; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; color: var(--gray-dark); line-height: 1.8; }
.faq-item.active .faq-answer { padding: 0 24px 20px; max-height: 300px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.gallery-item {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream), var(--gray-light));
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gallery-item .placeholder-icon { font-size: 48px; opacity: 0.4; }
.gallery-item .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 28px 20px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-size: 1.4rem; margin-bottom: 24px; color: var(--gold); }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-detail .icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-detail .text h4 { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.contact-detail .text p, .contact-detail .text a { color: var(--gray-dark); font-size: 0.9rem; }
.contact-detail .text a:hover { color: var(--gold); }

.contact-form { background: var(--off-white); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 36px; }
.contact-form h3 { font-size: 1.2rem; margin-bottom: 20px; color: var(--gold); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; margin-bottom: 6px; color: var(--gray-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group textarea { min-height: 110px; resize: vertical; }

.map-container { margin-top: 48px; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--gold); }
.map-container iframe { width: 100%; height: 320px; border: none; }

/* ===== SOCIAL ICONS & CONNECT ===== */
.connect-section { padding: 50px 0; text-align: center; border-top: 1px solid var(--gray-light); }
.connect-section h3 { font-family: var(--font-heading); font-size: 1.3rem; color: var(--gold); margin-bottom: 20px; font-style: italic; }
.social-icons { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }
.social-icon {
  width: 44px; height: 44px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--black);
  transition: all var(--transition);
  cursor: pointer;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.connect-info p { font-size: 0.85rem; color: var(--gray); line-height: 1.8; }
.connect-info a { color: var(--gold); }
.connect-info a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about .logo img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.footer-about p { color: rgba(255,255,255,0.6); margin-top: 14px; line-height: 1.8; font-size: 0.85rem; }
.footer h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); padding: 5px 0; font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-links-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.6); margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-item .icon { font-size: 1rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-tagline { color: var(--gold) !important; font-weight: 600; font-size: 0.8rem !important; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }

/* ===== APPLICATION FORM SECTION ===== */
.application-form-section { background: var(--off-white); padding: 70px 0; }
.application-form-section .contact-form { max-width: 650px; margin: 0 auto; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero { height: auto; padding: 60px 0; }
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-left { max-width: 100%; }
  .hero-right { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-buttons { justify-content: center; }
  .section-header h2 { font-size: 2rem; }
  .director-quote-layout { flex-direction: column; text-align: center; }
  .director-photo-circle { width: 260px; height: 260px; margin: 0 auto; font-size: 90px; }
  .director-section { grid-template-columns: 1fr; }
  .director-photo { max-width: 260px; margin: 0 auto; }
  .vision-mission { grid-template-columns: 1fr; }
  .programme-grid { grid-template-columns: 1fr; }
  .programme-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .requirements-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header .container { height: 110px; }
  .logo img { width: 100px; height: 100px; }
  .nav-links {
    position: fixed;
    top: 110px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.active { transform: translateY(0); }
  .nav-links a { padding: 12px 18px; }
  .nav-dropdown { align-self: auto; }
  .nav-dropdown > a { height: auto; }
  .nav-dropdown > a .fa-chevron-down { display: none; }
  .dropdown-menu {
    position: static !important;
    display: block !important;
    box-shadow: none;
    border-top: none;
    min-width: auto;
    padding: 0 0 0 18px;
    border-left: 2px solid var(--gold);
    margin: 0 0 0 18px;
  }
  .dropdown-menu a { padding: 8px 18px !important; font-size: 0.8rem !important; }
  .hamburger { display: flex; }

  .hero { margin-top: 110px; padding: 40px 0; }
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; text-align: center; }

  .page-hero h1 { font-size: 2rem; }
  .page-hero { padding: 100px 0 50px; margin-top: 110px; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 1.6rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .programme-cards { grid-template-columns: 1fr; }
  .intake-content { gap: 20px; flex-direction: column; }
  .fee-covers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .header .container { height: 100px; }
  .logo img { width: 90px; height: 90px; }
  .nav-links { top: 100px; }
  .hero { margin-top: 100px; }
  .page-hero { padding: 80px 0 40px; margin-top: 100px; }
  .director-photo-circle { width: 200px; height: 200px; font-size: 70px; }
}
