/* ── Custom Properties ──────────────────────────────────── */
:root {
  --navy:        #0b3560;
  --navy-dark:   #071e3d;
  --blue:        #1a5fa8;
  --amber:       #f5a623;
  --amber-dark:  #d4881a;
  --light:       #f7f9fc;
  --white:       #ffffff;
  --text:        #2d3748;
  --text-light:  #718096;
  --border:      #e2e8f0;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(11, 45, 96, 0.08);
  --shadow-lg:   0 8px 36px rgba(11, 45, 96, 0.14);
  --transition:  all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Raleway', Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Container ──────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.85;
}

.logo img {
  height: 38px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

nav a:hover {
  color: var(--navy);
}

nav a:hover::after {
  transform: scaleX(1);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-amber {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
}

.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

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

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

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ── Section Shared ─────────────────────────────────────── */
.section {
  padding: 6rem 0;
}

.section-tag {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}

.section h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.75;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 55%, var(--blue) 100%);
  color: var(--white);
  padding: 7rem 2rem 9rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(245, 166, 35, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-image {
  flex-shrink: 0;
  width: 395px;
  height: 473px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.15));
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 72px;
}

/* ── Mission ─────────────────────────────────────────────── */
.mission {
  background: var(--light);
}

.mission-statement {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 3.5rem;
  border-left: 4px solid var(--amber);
  padding-left: 1.5rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.pillar:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(11, 53, 96, 0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

.pillar h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Programs ────────────────────────────────────────────── */
.programs {
  background: var(--white);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  background: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card:hover::after {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(26, 95, 168, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ── Get Involved ────────────────────────────────────────── */
.involved {
  background: var(--navy);
  color: var(--white);
}

.involved .section-tag {
  color: var(--amber);
}

.involved h2 {
  color: var(--white);
}

.involved .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.involved-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.involved-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.involved-number {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--amber);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}

.involved-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.involved-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex: 1;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact {
  background: var(--light);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact > div > p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-email {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  padding-bottom: 2px;
}

.contact-email:hover {
  border-bottom-color: var(--blue);
}

.contact-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}

.contact-quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-sig {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-logo img {
  height: 30px;
  width: auto;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.85rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .pillars,
  .cards,
  .involved-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .navbar-inner {
    flex-direction: column;
    height: auto;
    padding: 1rem 1.5rem;
    gap: 0.65rem;
  }

  nav {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-inner {
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .hero-image {
    width: 263px;
    height: 315px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
