/* ==========================================================================
   ARVA SPORTS FOUNDATION — DESIGN SYSTEM v2.0
   Color palette: Navy Blue + Gold + White (matching brand logos)
   ========================================================================== */

/* ─── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-white:      #FFFFFF;
  --bg-light:      #F5F7FC;
  --bg-light-blue: #EEF2FF;
  --bg-navy:       #1B3568;
  --bg-navy-dark:  #0F1F42;

  /* Brand Colors */
  --navy-primary:  #1B3568;
  --navy-mid:      #243F7A;
  --navy-dark:     #0F1F42;
  --gold-primary:  #C9921A;
  --gold-light:    #E8B84B;
  --gold-pale:     #FDF3DC;

  /* Text */
  --text-dark:     #0F1B35;
  --text-medium:   #374151;
  --text-light:    #6B7280;
  --text-white:    #FFFFFF;

  /* Borders */
  --border-light:  rgba(0,0,0,0.07);
  --border-navy:   rgba(27,53,104,0.15);
  --border-gold:   rgba(201,146,26,0.35);

  /* Shadows */
  --shadow-xs:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 8px 30px rgba(201,146,26,0.2);
  --shadow-navy: 0 8px 30px rgba(27,53,104,0.25);

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Transitions */
  --ease-smooth: all 0.4s cubic-bezier(0.16,1,0.3,1);
  --ease-fast:   all 0.2s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-medium);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--navy-primary); border-radius: 4px; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad     { padding: 100px 0; }
.section-pad-sm  { padding: 70px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ─── Section Labels & Titles ────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  background: var(--gold-pale);
  border-left: 3px solid var(--gold-primary);
  padding: 5px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-headings);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title.light { color: var(--text-white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-sub.light { color: rgba(255,255,255,0.75); }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-headings);
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--ease-smooth);
  white-space: nowrap;
}

.btn-md  { padding: 12px 28px; font-size: 0.95rem; }
.btn-lg  { padding: 15px 36px; font-size: 1.05rem; }
.btn-sm  { padding: 8px 18px;  font-size: 0.85rem; }
.btn-full { width: 100%; }

/* Gold filled */
.btn-gold {
  background: var(--gold-primary);
  color: var(--text-white);
  border-color: var(--gold-primary);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Navy filled */
.btn-navy {
  background: var(--navy-primary);
  color: var(--text-white);
  border-color: var(--navy-primary);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-navy);
}

/* Outline navy */
.btn-outline-navy {
  background: transparent;
  color: var(--navy-primary);
  border-color: var(--navy-primary);
}
.btn-outline-navy:hover {
  background: var(--navy-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* Outline white */
.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

/* ─── Navigation / Header ────────────────────────────────────────────────── */
.main-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--ease-smooth);
}

.main-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

/* Logos in header */
.header-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--ease-fast);
}

.header-logo-img:hover { transform: scale(1.04); }

.header-logo-divider {
  width: 1px;
  height: 36px;
  background: var(--border-navy);
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--ease-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--gold-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-primary);
  border-radius: 2px;
  transition: var(--ease-fast);
}

/* ─── Page Hero Sections ─────────────────────────────────────────────────── */
/* Main home hero — lighter navy gradient overlay */
.hero-home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 60%, #2A4A8A 100%);
  position: relative;
  overflow: hidden;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,146,26,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

/* Interior page hero — shorter */
.hero-page {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 120%, rgba(201,146,26,0.15) 0%, transparent 60%);
}

.hero-page .container { position: relative; z-index: 2; }

.hero-page-label { color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.hero-page-title { font-family: var(--font-headings); font-size: 3rem; font-weight: 800; color: var(--text-white); margin-bottom: 16px; }
.hero-page-sub   { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; }

/* Hero Home Content */
.hero-home-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,146,26,0.15);
  border: 1px solid rgba(201,146,26,0.35);
  padding: 7px 16px;
  border-radius: 100px;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-family: var(--font-headings);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 10px;
}

.hero-headline .gold {
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero image side */
.hero-img-side {
  position: relative;
}

.hero-img-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(201,146,26,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}

.hero-img-frame img { width: 100%; display: block; }

.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  animation: floatY 4s ease-in-out infinite;
}

.hero-float-badge.left  { bottom: 24px; left: -20px; }
.hero-float-badge.right { top: 24px; right: -20px; animation-delay: 2s; }

.hero-float-badge .fb-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.hero-float-badge h5 {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-float-badge p {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ─── About Section ──────────────────────────────────────────────────────── */
.about-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feat-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  transition: var(--ease-smooth);
}

.about-feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--border-gold);
}

.about-feat-card:nth-child(2) { margin-top: 24px; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.about-feat-card h4 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-feat-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pillar-row {
  display: flex;
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-light-blue);
  border-radius: 12px;
  border-left: 4px solid var(--navy-primary);
}

.pillar-num {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-primary);
  opacity: 0.35;
  min-width: 36px;
}

.pillar-row h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar-row p { font-size: 0.9rem; color: var(--text-light); }

/* ─── Stats / Achievements Strip ─────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  transition: var(--ease-smooth);
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.stat-icon-wrap {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.stat-num-wrap {
  font-family: var(--font-headings);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num-wrap .suffix { color: var(--gold-light); }

.stat-label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ─── Why Choose ARVA ────────────────────────────────────────────────────── */
.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  transition: var(--ease-smooth);
}

.why-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.why-check {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary);
  font-size: 1rem;
  min-width: 36px;
}

.why-item h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.why-item p { font-size: 0.88rem; color: var(--text-light); }

/* Visual card on the right side */
.why-visual-card {
  background: var(--navy-primary);
  border-radius: 20px;
  padding: 40px;
  color: white;
  box-shadow: var(--shadow-navy);
  position: relative;
  overflow: hidden;
}

.why-visual-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: rgba(201,146,26,0.12);
  border-radius: 50%;
}

.why-visual-card h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  position: relative;
}

.why-visual-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 28px;
  position: relative;
}

.metric-bar { margin-bottom: 16px; position: relative; }

.metric-bar-label {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.metric-track {
  height: 7px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.metric-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--gold-primary), var(--gold-light)); }

/* ─── Spotlight Features (Academy Page) ──────────────────────────────────── */
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}

.spotlight-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--ease-smooth);
  box-shadow: var(--shadow-xs);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-navy);
  box-shadow: var(--shadow-md);
}

.sp-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-primary);
  font-size: 1.6rem;
  margin: 0 auto 18px;
}

.spotlight-card h4 {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.spotlight-card p { font-size: 0.87rem; color: var(--text-light); }

/* ─── Programs Cards ──────────────────────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--ease-smooth);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.program-card.featured {
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.program-card.featured .prog-icon { background: var(--gold-pale); color: var(--gold-primary); }

.prog-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-light-blue);
  color: var(--navy-primary);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.program-card.featured .prog-badge {
  background: var(--gold-pale);
  color: var(--gold-primary);
}

.featured-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.prog-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-primary);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.program-card h4 {
  font-family: var(--font-headings);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.program-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.prog-bullets { list-style: none; margin-bottom: 24px; }

.prog-bullets li {
  font-size: 0.84rem;
  color: var(--text-medium);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}

.prog-bullets li i { color: var(--gold-primary); font-size: 0.85rem; }

/* ─── Services Grid ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 28px;
  transition: var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-primary), var(--gold-primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--ease-smooth);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-navy);
}

.svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-primary);
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--ease-smooth);
}

.service-card:hover .svc-icon {
  background: var(--navy-primary);
  color: var(--text-white);
}

.service-card h3 {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p { font-size: 0.88rem; color: var(--text-light); }

/* ─── Team / Founders Page ───────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.team-card-header {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  padding: 40px 24px 24px;
  text-align: center;
  position: relative;
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 4px solid var(--gold-primary);
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin: 0 auto 16px;
  box-shadow: 0 0 0 6px rgba(201,146,26,0.15);
}

.team-name {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
}

.team-card-body {
  padding: 28px;
}

.team-bio {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-light-blue);
  color: var(--navy-primary);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border-navy);
}

.team-awards {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.team-awards h5 {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.award-item i { color: var(--gold-primary); font-size: 0.9rem; }
.award-item span { font-size: 0.85rem; color: var(--text-medium); }

/* Philosophy strip */
.philosophy-strip {
  background: var(--bg-light-blue);
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
  padding: 70px 0;
}

.philosophy-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.phi-point {
  text-align: center;
  padding: 28px 20px;
}

.phi-num {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 8px;
}

.phi-point h4 {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.phi-point p { font-size: 0.87rem; color: var(--text-light); }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }

.testimonial-slider-wrap { max-width: 820px; margin: 0 auto; position: relative; }

.t-slide {
  display: none;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-left: 4px solid var(--gold-primary);
}

.t-slide.active { display: block; }

.t-quote-icon {
  font-size: 3.5rem;
  color: var(--gold-pale);
  position: absolute;
  top: 28px; left: 36px;
  line-height: 1;
}

.t-text {
  font-size: 1.15rem;
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}

.t-author { display: flex; align-items: center; gap: 14px; }

.t-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-primary);
  font-size: 1.1rem;
}

.t-name { font-family: var(--font-headings); font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.t-role { font-size: 0.82rem; color: var(--text-light); }

.t-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 36px;
}

.t-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-navy);
  background: var(--bg-white);
  color: var(--navy-primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--ease-fast);
}

.t-arrow:hover { background: var(--navy-primary); color: var(--text-white); }

.t-dots { display: flex; gap: 8px; }

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-navy);
  cursor: pointer;
  transition: var(--ease-fast);
}

.t-dot.active { width: 22px; border-radius: 4px; background: var(--gold-primary); }

/* ─── CTA Banner ─────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 100%, rgba(201,146,26,0.12) 0%, transparent 60%);
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact Section ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-items { display: flex; flex-direction: column; gap: 24px; margin: 30px 0; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }

.ci-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--bg-light-blue);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-primary);
  font-size: 1.1rem;
  min-width: 48px;
}

.contact-info-item h4 {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-info-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.5; }

.social-row { display: flex; gap: 10px; margin-top: 24px; }

.social-icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-navy);
  background: var(--bg-white);
  color: var(--navy-primary);
  display: flex; align-items: center; justify-content: center;
  transition: var(--ease-fast);
}

.social-icon-btn:hover { background: var(--navy-primary); color: var(--text-white); transform: translateY(-2px); }

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-panel h3 {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  transition: var(--ease-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy-primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(27,53,104,0.08);
}

textarea.form-control { resize: none; }

.form-group.has-error .form-control { border-color: #EF4444; }
.error-msg { font-size: 0.75rem; color: #EF4444; margin-top: 5px; display: none; }
.form-group.has-error .error-msg { display: block; }

.success-panel {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  position: absolute;
  inset: 0;
  background: var(--bg-white);
  border-radius: 20px;
  z-index: 10;
}

.success-panel i { font-size: 3.5rem; color: #10B981; margin-bottom: 16px; }
.success-panel h4 { font-family: var(--font-headings); font-size: 1.4rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.success-panel p { color: var(--text-light); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logos { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }

.footer-logo-img { height: 48px; width: auto; object-fit: contain; }

.footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

.footer-col h4 {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: var(--ease-fast);
}

.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-newsletter p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; }

.newsletter-row { display: flex; gap: 8px; }
.newsletter-row .form-control {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: white;
}
.newsletter-row .form-control::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-row .form-control:focus { border-color: var(--gold-primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--ease-fast); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── Registration Modal ─────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,31,66,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--ease-smooth);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: var(--ease-smooth);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-box { transform: scale(1) translateY(0); }

.modal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-top img { height: 38px; }

.modal-box h3 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.modal-box > p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-light);
  color: var(--text-medium);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--ease-fast);
}

.modal-close:hover { background: #FEE2E2; color: #EF4444; }

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease forwards; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section-title { font-size: 2.1rem; }
  .hero-headline { font-size: 3rem; }
  .grid-4, .services-grid, .programs-grid, .stats-grid,
  .spotlight-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-points { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  
  /* Header mobile */
  .menu-toggle { display: flex; }
  
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 32px 40px;
    border-left: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    transition: var(--ease-smooth);
    z-index: 1050;
    overflow-y: auto;
  }
  
  .nav-links.open { right: 0; }
  
  .nav-links a { width: 100%; padding: 10px 14px; font-size: 1rem; }
  .nav-links .btn { width: 100%; margin-top: 12px; }
  
  .hero-home-grid { grid-template-columns: 1fr; }
  .hero-float-badge.right { display: none; }
  .hero-float-badge.left  { left: 0; }
  
  .hero-page-title { font-size: 2.2rem; }
  
  .spotlight-grid, .programs-grid, .services-grid,
  .stats-grid, .team-grid, .philosophy-points { grid-template-columns: 1fr; }
  
  .about-feature-cards { grid-template-columns: 1fr; }
  .about-feat-card:nth-child(2) { margin-top: 0; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  
  .cta-buttons { flex-direction: column; align-items: center; }
  
  .t-slide { padding: 28px; }
  .t-quote-icon { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .modal-box { padding: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
