/* --- GLOBALS --- */
:root {
  --bg-void: #051413;
  --bg-surface: #0f2826;
  --gold-primary: #d4af37;
  --gold-light: #f2d06b;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --text-main: #f4f6f5;
  --text-muted: rgba(244, 246, 245, 0.7);
  --glass-bg: rgba(15, 40, 38, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --danger: #e74c3c;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: var(--bg-void);
  background-image: radial-gradient(circle at 50% 0%, #0f2826 0%, #051413 80%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.heading-serif {
  font-family: "Playfair Display", serif;
}

.text-gradient-gold {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-primary) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   1. EDITORIAL TWO-TIER NAVBAR
=========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0 0.5rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Scroll State */
.navbar.scrolled {
  padding: 0.8rem 0 0.5rem 0;
  background: rgba(5, 20, 19, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .navbar-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* --- Top Row --- */
.navbar .navbar-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    padding 0.4s ease,
    border-color 0.4s ease;
}

.navbar.scrolled .navbar-top {
  padding-bottom: 0.8rem;
  border-bottom-color: rgba(212, 175, 55, 0.15); /* Fainter line on scroll */
}

.navbar .nav-brand {
  grid-column: 2;
  text-align: center;
}

.navbar .nav-brand img {
  height: 5rem;
  width: auto;
  transition: height 0.4s ease;
}

.navbar.scrolled .nav-brand img {
  height: 3rem; /* Shrinks to save reading space */
}

.navbar .nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* --- Bottom Row (Links) --- */
.navbar .navbar-bottom {
  padding-top: 1.2rem;
  display: flex;
  justify-content: center;
  transition: padding 0.4s ease;
}

.navbar.scrolled .navbar-bottom {
  padding: 0.8rem 0;
}

.navbar .nav-menu {
  display: flex;
  gap: 2.2rem; /* Wide breathing room */
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Safety net for smaller desktop screens */
}

.navbar .nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
  cursor: pointer;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold-primary);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

/* --- Dropdown --- */
.navbar .nav-item-dropdown {
  position: relative;
}

.navbar .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-surface);
  border: 1px solid var(--gold-primary);
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.navbar .nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar .dropdown-item {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #ccc;
  font-size: 0.85rem;
  text-transform: none; /* Keep dropdown items standard casing */
  letter-spacing: normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .dropdown-item:hover {
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

/* --- Buttons & Mobile --- */
.navbar .btn-nav-contact {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.navbar .btn-nav-apply {
  padding: 0.6rem 1.8rem;
  border: 1px solid var(--gold-primary);
  color: var(--bg-void);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  background: var(--gold-primary);
  box-shadow: 0 0 20px var(--gold-glow);
}

.navbar .btn-nav-admission:hover {
  background: var(--gold-primary);
  color: var(--bg-void);
  box-shadow: 0 0 20px var(--gold-glow);
}

.navbar .hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  padding: 0;
}

/* --- 2-Column Mega Menu Additions (UPDATED) --- */
.navbar .dropdown-menu.mega-menu {
  min-width: 540px; /* Reduced from 650px for a tighter, sleeker look */
  padding: 1rem; /* Reduced from 1.5rem */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem; /* Tighter gap between cards */

  /* Pushes the menu further down away from the navbar edge */
  top: calc(100% + 15px);
  transform: translateX(-50%) translateY(10px);
}

.navbar .dropdown-menu.mega-menu.single {
  grid-template-columns: 1fr;
  min-width: 250px;
}

/* THE INVISIBLE BRIDGE: Prevents hover loss across the gap */
.navbar .dropdown-menu.mega-menu::before {
  content: "";
  position: absolute;
  top: -25px; /* Extends up to touch the navbar */
  left: 0;
  width: 100%;
  height: 25px; /* Covers the 15px gap + safety margin */
  background: transparent;
}

.navbar .nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  /* Pops nicely into place */
  transform: translateX(-50%) translateY(0);
}

/* --- Shrinking the Cards --- */
.navbar .dropdown-card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem; /* Reduced from 1.25rem */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar .dropdown-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.navbar .card-icon {
  width: 24px; /* Reduced from 28px */
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.navbar .card-text {
  display: flex;
  flex-direction: column;
}

.navbar .dropdown-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem; /* Reduced from 1.1rem */
  color: var(--text-main);
  margin-bottom: 0.3rem;
  text-transform: none;
  letter-spacing: normal;
}

.navbar .dropdown-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem; /* Reduced from 0.8rem */
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: none;
  letter-spacing: normal;
}

/* "View All" card specific styling */
.navbar .dropdown-card.view-all-card {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  align-items: center;
}

.navbar .dropdown-card.view-all-card:hover {
  border-style: solid;
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.03);
}

/* --- 1B. MOBILE SIDE DRAWER --- */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   STANDARD PAGE HERO
=========================================== */
.page-hero {
  position: relative;
  min-height: 90vh; /* Taller, more cinematic feel */
  max-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Accounts for navbar */
  overflow: hidden;
}

/* Background Image Container */
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero .page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Replaces striken out gradient */
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 19, 0.8) 0%,
    var(--bg-void) 100%
  );
  z-index: 1;
}

/* .page-hero .page-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 20, 19, 0.95) 0%,
      rgba(5, 20, 19, 0) 20%
    ),
    linear-gradient(
      to right,
      rgba(5, 20, 19, 0.98) 0%,
      rgba(5, 20, 19, 0.85) 50%,
      rgba(5, 20, 19, 0.5) 100%
    );
} */

.page-hero .page-hero-container {
  z-index: 2; /* Sits above the background */
  width: 100%;
}

.page-hero .page-hero-content {
  max-width: 650px;
  text-align: left; /* Left-aligned looks much more premium against a split background */
}

.page-hero .page-hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-hero .page-hero-content.center {
  text-align: center;
  margin: 0 auto;
}

.page-hero .page-hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.page-hero .page-hero-subtitle .highlight {
  color: var(--text-main);
  font-weight: 600;
  border-bottom: 2px solid var(--gold-primary);
}

.mobile-show {
  display: none;
}

/* ==========================================
   2. MISSION & VISION 
=========================================== */
.about-mv {
  padding: 4rem 0 8rem 0;
  background-color: var(--bg-void);
}

.about-mv .about-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem; /* Large gap between rows */
}

.about-mv .about-mv-row:last-child {
  margin-bottom: 0;
}

/* Reverses the layout for the second row */
.about-mv .about-mv-row.reverse .about-mv-image-col {
  order: 2;
}

.about-mv .about-mv-row.reverse .about-mv-text-col {
  order: 1;
}

.about-mv .about-mv-image-col {
  position: relative;
}

.about-mv .about-mv-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

/* Gold decorative accent box behind the image */
.about-mv .about-mv-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  z-index: 1;
}

/* On reversed row, put the accent on the left */
.about-mv .about-mv-row.reverse .about-mv-image-accent {
  right: auto;
  left: -20px;
}

.about-mv .about-mv-text-col {
  padding: 2rem 0;
}

.about-mv .about-mv-icon {
  width: 60px;
  height: 60px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
}

.about-mv .about-mv-title {
  font-size: 2.8rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.about-mv .about-mv-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* --- 4. CORE VALUES --- */
.values-section {
  padding: 8rem 0;
  position: relative;
}
.values-section .values-header {
  text-align: center;
  margin-bottom: 4rem;
}
.values-section .values-heading {
  font-size: 3rem;
  margin: 0;
}

.values-section .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.values-section .value-card {
  background: linear-gradient(180deg, var(--glass-bg) 0%, transparent 100%);
  border-top: 2px solid var(--glass-border);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.values-section .value-card:hover {
  border-top-color: var(--gold-primary);
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 100%
  );
  transform: translateY(-10px);
}

.values-section .value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem auto;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.values-section .value-card:hover .value-icon {
  color: var(--gold-primary);
  transform: scale(1.1) translateY(-5px);
  filter: drop-shadow(0 10px 10px rgba(212, 175, 55, 0.3));
}

.values-section .value-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.values-section .value-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- 5. FOUNDER MESSAGE --- */
.founder-section {
  padding: 2rem 0 4rem 0;
}
.founder-section .founder-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.founder-section .founder-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  aspect-ratio: 1/1;
}

.founder-section .founder-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 20px;
  z-index: 2;
  pointer-events: none;
}

.founder-section .founder-photo {
  width: 100%;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

.founder-section .quote-icon-large {
  color: var(--gold-primary);
  opacity: 0.3;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  transform: translateX(-10px);
}

.founder-section .founder-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1rem;
  margin-top: 0;
}
.founder-section .signature {
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
  color: var(--gold-primary);
  /* margin-top: 3rem; */
}
.founder-section .founder-job-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* --- 6. FOOTER --- */
.page-footer {
  background: #020a09;
  padding: 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #555;
}

/* ==========================================
   OUR APPROACH SECTION CSS
=========================================== */
.approach-section {
  padding: 6rem 0;
  background: var(--bg-void);
  position: relative;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.approach-card {
  background: linear-gradient(
    160deg,
    var(--bg-surface) 0%,
    rgba(5, 20, 19, 0.4) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Hover glowing top bar */
.approach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.approach-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.approach-card:hover::before {
  transform: scaleX(1);
}

.approach-card .card-main-icon {
  width: 50px;
  height: 50px;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

.approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.approach-card .card-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.approach-card .icon-list {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.approach-card .icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.approach-card .list-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.approach-card .card-footer-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.approach-card .card-footer-note svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
  flex-shrink: 0;
}

/* ==========================================
   ADMISSIONS & AGE GROUPS CSS
=========================================== */
.admissions-section {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--glass-border);
}

.admissions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.admissions-header h2 {
  font-size: 2.5rem;
  margin: 0;
}

.age-groups-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.age-card {
  background: var(--bg-void);
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.age-card:hover {
  border-style: solid;
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-5px);
}

.age-card.highlight-card {
  background: linear-gradient(
    180deg,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.age-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--bg-surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--gold-light);
  box-shadow:
    inset 0 0 15px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 175, 55, 0.1);
}

.age-icon-wrapper svg {
  width: 32px;
  height: 32px;
}

.age-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.age-badge {
  display: inline-block;
  background: var(--bg-surface);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.age-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   WHO WE SUPPORT CSS
=========================================== */
.support-section {
  padding: 2rem 0 2rem 0;
  background-color: var(--bg-void);
}

.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.support-text-area h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.support-text-area p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.support-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.support-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--glass-bg);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  font-size: 0.95rem;
  color: var(--text-main);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.support-pill:hover {
  border-color: var(--gold-primary);
  transform: translateX(5px);
}

.support-pill svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================
   ADMISSIONS PROCESS TIMELINE CSS
=========================================== */
.process-section {
  padding: 4rem 0 8rem 0;
}

.text-center {
  text-align: center;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* The connecting line */
.timeline-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 18%;
}

.step-circle {
  width: 70px;
  height: 70px;
  background: var(--bg-void);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transition: all 0.3s;
}

.timeline-step:hover .step-circle {
  background: var(--gold-primary);
  color: var(--bg-void);
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.process-footer {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.urgency-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1rem 2rem;
  border-radius: 50px;
  color: var(--gold-light);
}

.urgency-banner svg {
  width: 24px;
  height: 24px;
}

/* ==========================================
         3. THERAPY PILLARS (CARDS)
      =========================================== */
.therapy-pillars {
  padding: 4rem 0 6rem;
  background: var(--bg-void);
}

.therapy-pillars .pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.therapy-pillars .pillar-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
}

.therapy-pillars .pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

/* Subtle background glow depending on the card */
.therapy-pillars .pillar-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--gold-primary);
  opacity: 0.05;
  filter: blur(40px);
}

.therapy-pillars .pillar-icon {
  width: 60px;
  height: 60px;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px var(--gold-glow));
}

.therapy-pillars .pillar-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--text-main);
  line-height: 1.2;
}

.therapy-pillars .pillar-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.therapy-pillars .pillar-list li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 3px solid rgba(212, 175, 55, 0.5);
  transition: background 0.3s ease;
}

.therapy-pillars .pillar-list li:hover {
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--gold-primary);
  color: var(--text-main);
}

.therapy-pillars .check-icon {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

/* ==========================================
         4. CLOSING BANNER
      =========================================== */
.therapy-closing {
  padding: 2rem 0 8rem;
}

.therapy-closing .closing-banner {
  background: linear-gradient(
    135deg,
    rgba(15, 40, 38, 0.8) 0%,
    rgba(5, 20, 19, 0.95) 100%
  );
  border: 1px solid var(--gold-primary);
  border-radius: 20px;
  padding: 5rem 2rem;
  text-align: center;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(212, 175, 55, 0.05);
  position: relative;
  overflow: hidden;
}

.therapy-closing .closing-banner::after {
  content: '"';
  position: absolute;
  top: -20px;
  right: 40px;
  font-family: "Playfair Display", serif;
  font-size: 15rem;
  color: var(--gold-primary);
  opacity: 0.05;
  line-height: 1;
}

.therapy-closing .closing-text {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--text-main);
  margin: 0;
  position: relative;
  z-index: 2;
}

/* ==========================================
         APPLICATION PAGE
      =========================================== */

.form-header {
  text-align: center;
  padding: 4rem 0 3rem;
}

.form-header .logo {
  height: 5rem;
}

.form-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.form-header hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-primary),
    transparent
  );
  width: 50%;
  margin: 1.5rem auto;
}

.info-banner {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
  color: var(--gold-light);
  font-size: 0.95rem;
}

.info-banner strong {
  color: var(--text-main);
}

/* --- FORM LAYOUT --- */
.form-section {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.section-title {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--glass-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label .required {
  color: var(--danger);
}

.form-hint {
  font-size: 0.75rem;
  color: rgba(244, 246, 245, 0.4);
  margin-top: 0.4rem;
}

/* --- INPUTS --- */
.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(15, 40, 38, 0.8);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

select.form-control option {
  background: var(--bg-void);
  color: var(--text-main);
}

/* --- RADIO & CHECKBOX --- */
.radio-group {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
  padding-top: 0.5rem;
}

.custom-radio,
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-main);
}

.custom-radio input,
.custom-checkbox input {
  display: none;
}

.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.custom-radio input:checked ~ .radio-mark {
  border-color: var(--gold-primary);
}

.custom-radio input:checked ~ .radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  border-radius: 50%;
}

.check-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--glass-border);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.custom-checkbox input:checked ~ .check-mark {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
}

.custom-checkbox input:checked ~ .check-mark::after {
  content: "✓";
  color: var(--bg-void);
  font-weight: bold;
  font-size: 14px;
}

/* --- FILE UPLOAD --- */
.file-upload-wrapper {
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 2rem;
  border: 1px dashed rgba(212, 175, 55, 0.4);
}

.file-upload-notice {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.file-upload-notice a {
  color: var(--gold-primary);
  text-decoration: underline;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.upload-box {
  position: relative;
  border: 1px solid var(--glass-border);
  background: var(--bg-input);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}

.upload-box:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-box svg {
  width: 30px;
  height: 30px;
  color: var(--gold-primary);
  margin-bottom: 0.8rem;
}

.upload-box span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.upload-box .file-limit {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* --- SUBMIT BUTTON --- */
.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-primary) 100%
  );
  color: var(--bg-void);
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  margin-top: 2rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.fee-notice-card {
  margin-top: 2.5rem;
  padding: 1.5rem;
  text-align: center;
  background: rgba(212, 175, 55, 0.03); /* Very subtle gold tint */
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.fee-notice-card p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.fee-notice-card .highlight {
  color: var(--gold-primary);
  font-weight: 600;
  font-family: "Playfair Display", serif; /* Editorial touch for the price */
  font-size: 1.2rem;
}

/* ==========================================
         CONTACT PAGE
      =========================================== */
.page-header {
  padding-top: 220px;
  padding-bottom: 40px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-header .page-title {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.page-header .page-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

/* ==========================================
         3. CONTACT LAYOUT & INFO CARDS
      =========================================== */
.contact-section {
  padding: 4rem 0 8rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateX(5px);
}

.info-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.info-details h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.info-details p,
.info-details a {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--text-main);
  margin: 0;
  text-decoration: none;
  transition: color 0.3s;
}

.info-details a:hover {
  color: var(--gold-light);
}

/* Milestone Announcement Card */
.milestone-card {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(15, 40, 38, 0.6) 100%
  );
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 1rem;
  box-shadow:
    inset 0 0 20px rgba(212, 175, 55, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.milestone-card::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: var(--gold-primary);
  filter: blur(50px);
  opacity: 0.4;
}

.milestone-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin: 0 0 0.5rem 0;
}

.milestone-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ==========================================
         4. CONTACT FORM
      =========================================== */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-label .required {
  color: var(--gold-primary);
}

.form-control {
  width: 100%;
  padding: 1.1rem 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text-main);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(15, 40, 38, 0.8);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1em;
  padding-right: 3rem;
}

select.form-control option {
  background: var(--bg-void);
  color: var(--text-main);
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-primary) 100%
  );
  color: var(--bg-void);
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
  margin-top: 1rem;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* ==========================================
         2. WONDER WAREHOUSE HERO
      =========================================== */
.wonder-hero {
  position: relative;
  background-color: var(--bg-void);
  overflow: hidden;
  align-self: center;
}

.wonder-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Hero Background Image & Gradient */
.wonder-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1596461404969-9ce20c718f1f?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.wonder-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 19, 0.8) 0%,
    var(--bg-void) 100%
  );
  z-index: 1;
}

.wonder-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.wonder-hero .title-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold-primary);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.wonder-hero .page-title {
  font-size: 5rem;
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

/* Core Offerings Row */
.wonder-offerings {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.wonder-offering-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-main);
  font-size: 1.1rem;
}

.wonder-offering-item svg {
  width: 24px;
  height: 24px;
  color: var(--gold-light);
}

/* ==========================================
         3. THE CONCEPT (NOT A DROP-OFF)
      =========================================== */
.wonder-concept {
  padding: 2rem 0 6rem;
  background: var(--bg-void);
}

.wonder-concept-card {
  background: var(--glass-bg);
  border: 1px solid var(--gold-primary);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  position: relative;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 40px rgba(212, 175, 55, 0.05);
}

.wonder-concept-card::before {
  content: "!";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--bg-void);
  border: 2px solid var(--gold-primary);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wonder-concept-card h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.wonder-concept-card p {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.wonder-concept-card .highlight-alert {
  display: inline-block;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wonder-descriptors {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.wonder-descriptors span {
  font-family: "Dancing Script", cursive;
  font-size: 2.2rem;
  color: var(--gold-light);
}

/* ==========================================
         4. WHAT HAPPENS (ACTIVITIES GRID)
      =========================================== */
.wonder-activities {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
}

.wonder-section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wonder-section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wonder-activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.activity-card {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.activity-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-5px);
  background: linear-gradient(
    180deg,
    var(--bg-surface) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
}

.activity-icon-container {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
}

.activity-icon-container svg {
  width: 30px;
  height: 30px;
}

.activity-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

/* No Pressure Banner */
.no-pressure-banner {
  margin-top: 5rem;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.1) 50%,
    transparent 100%
  );
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.no-pressure-banner h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--text-main);
  margin: 0;
  font-weight: 400;
}

.no-pressure-banner h3 span {
  color: var(--gold-primary);
  font-style: italic;
}

/* ==========================================
         5. HOW IT WORKS & FACILITATORS
      =========================================== */
.wonder-mechanics {
  padding: 6rem 0;
}

.mechanics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mechanics-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.mechanics-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.mechanics-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.mechanics-list svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.facilitator-box {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid var(--gold-primary);
  padding: 2rem;
  border-radius: 0 16px 16px 0;
}

.facilitator-box h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 1rem;
}

.facilitator-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.facilitator-box li {
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.facilitator-box li::before {
  content: "•";
  color: var(--gold-light);
  font-size: 1.2rem;
  line-height: 1;
}

.mechanics-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ==========================================
         6. WHY PARENT PARTICIPATION MATTERS
      =========================================== */
.wonder-parents {
  padding: 6rem 0 8rem;
  background: linear-gradient(
    to top,
    rgba(15, 40, 38, 0.5) 0%,
    transparent 100%
  );
}

.parents-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.parents-image {
  position: relative;
}

.parents-image img {
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.parents-image::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 1px dashed var(--gold-primary);
  border-radius: 30px;
  z-index: -1;
}

.parents-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.parents-content > p {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 2.5rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.parent-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.benefit-item {
  background: var(--bg-void);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.benefit-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.parents-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* ==========================================
   LIFE AT LUMINA - UNIFORM GALLERY
=========================================== */
.gallery-section {
  padding: 2rem 0 6rem 0;
  background: var(--bg-void);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 identical columns on desktop */
  grid-auto-rows: 300px; /* Locks every single image to exactly 300px tall */
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background: var(--bg-surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures images fill the square perfectly without stretching */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effects */
.gallery-item:hover {
  border-color: var(--gold-primary);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(212, 175, 55, 0.15);
  z-index: 2;
}

.gallery-item:hover img {
  transform: scale(1.08); /* Premium zoom effect */
}

/* Overlay & Text */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 20, 19, 0.95) 0%,
    rgba(5, 20, 19, 0.4) 40%,
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
