/* ============================================================
   Initiatives Page Styles
   ============================================================ */

/* ── Hero Section ────────────────────────────────────────── */
.initiatives-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1A4731 0%, #0F2D1E 100%);
  text-align: center;
  color: white;
}

.initiatives-hero .eyebrow {
  color: var(--gold);
}

.initiatives-hero .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  color: white;
  margin-bottom: 24px;
}

.initiatives-hero .hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Mission Statement ───────────────────────────────────── */
.mission-statement {
  padding: 64px 0;
  background: var(--bg);
}

.statement-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 48px 56px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--orange);
}

.statement-box p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--gray-700);
  margin: 0;
}

/* ── Programs Sections ───────────────────────────────────── */
.programs-section {
  padding: 80px 0;
}

.international-section {
  background: white;
}

.domestic-section {
  background: var(--bg);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.section-header .section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--navy);
  margin-bottom: 0;
}

/* ── Program Cards ───────────────────────────────────────── */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 32px;
}

.program-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.domestic-section .program-card {
  background: white;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}

.program-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: inline-block;
}

.program-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.program-intro {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.program-details h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.program-details ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.6;
}

.program-details ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
}

.program-purpose {
  background: rgba(244, 98, 42, 0.06);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

.program-purpose strong {
  color: var(--orange);
  font-weight: 700;
}

/* ── Compliance Section ──────────────────────────────────── */
.compliance-section {
  padding: 80px 0;
  background: #1A4731;
  color: white;
}

.compliance-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.compliance-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.compliance-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  color: white;
  margin-bottom: 32px;
}

.compliance-content {
  text-align: left;
}

.compliance-content p {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
}

.compliance-content p:last-child {
  margin-bottom: 0;
}

/* ── CTA Section ─────────────────────────────────────────── */
.initiatives-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  text-align: center;
  color: white;
}

.initiatives-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: white;
  margin-bottom: 16px;
}

.initiatives-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 40px;
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .initiatives-hero {
    padding: 140px 0 60px;
  }

  .statement-box {
    padding: 32px 28px;
  }

  .statement-box p {
    font-size: 16px;
  }

  .programs-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-icon {
    font-size: 48px;
  }

  .program-card {
    padding: 32px 24px;
  }

  .program-icon {
    font-size: 48px;
  }

  .program-title {
    font-size: 22px;
  }

  .compliance-section {
    padding: 60px 0;
  }

  .compliance-icon {
    font-size: 56px;
  }

  .initiatives-cta {
    padding: 64px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .program-details ul li {
    padding-left: 24px;
  }

  .program-details ul li::before {
    left: 4px;
  }
}
