/* HopeSpring Foundation International */
/* Colors from Brand Kit */
:root {
  --primary-dark: #195429;
  --primary-green: #179917;
  --light-green: #b5c577;
  --accent-orange: #f78226;
  --light-bg: #f2f2f2;
  --dark-gray: #545454;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --shadow: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 50px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'ITC Avant Garde Gothic', 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  background: rgba(25, 84, 41, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e06e15;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 130, 38, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--light-bg);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header .container {
  max-width: 100%;          /* Allows container to expand end-to-end */
  width: 100%;              /* Ensures full width execution */
  padding: 0 24px;          /* Prevents content from touching raw screen edges */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
  min-height: 72px;
} */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Spreads items out evenly */
  flex: 1;                         /* Takes up all remaining width in the header */
  padding: 10px 0;
  min-height: 72px;
}

/* Logo — left side, never shrinks */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: 190px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.15;
  white-space: nowrap;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--dark-gray);
  letter-spacing: 0.4px;
}

/* Nav links — centered on desktop, evenly spaced */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-green);
  background: rgba(23, 153, 23, 0.08);
}

/* Donate button — right side */
.nav-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Hamburger button (hidden on desktop) */
.mobile-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.mobile-toggle:hover {
  background: rgba(25, 84, 41, 0.08);
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  position: relative;
  transition: background 0.25s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform 0.25s ease, top 0.25s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Open state — turns into X */
.mobile-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ========== RESPONSIVE — HEADER ========== */

/* Large tablets / small desktops — tighten nav spacing */
@media (max-width: 1100px) {
  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  /* .logo-text {
    font-size: 0.95rem;
  } */

  .logo-text span {
    font-size: 0.6rem;
  }
}

/* Tablets (portrait & landscape) */
@media (max-width: 992px) {
  .nav {
    gap: 16px;
  }
  .nav-links {
    gap: 0;
  }
  .nav-links a {
    padding: 8px 9px;
    font-size: 0.85rem;
  }
  .nav-cta .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  .logo img {
    height: 40px;
    width: 40px;
  }
}

/* Mobile & small tablets — hamburger menu */
@media (max-width: 768px) {
  .nav {
    min-height: 64px;
    padding: 10px 0;
    gap: 12px;
  }
  .logo img {
    height: 80px;
    width: 120px;
  }
  .logo-text {
    font-size: 0.95rem;
  }
  .logo-text span {
    font-size: 0.58rem;
  }

  /* Hide desktop nav links, show as slide-down panel */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    padding: 12px 20px 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .nav-links li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    padding: 14px 12px;
    font-size: 1rem;
    border-radius: 8px;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(23, 153, 23, 0.1);
  }

  /* Keep Donate button visible on mobile (compact) */
  .nav-cta {
    display: flex;
    margin-left: auto;
  }
  .nav-cta .btn {
    display: inline-flex;
    padding: 9px 14px;
    font-size: 0.82rem;
  }
  .mobile-toggle {
    display: flex;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .nav {
    gap: 8px;
  }
  .logo-text span {
    display: none; /* hide long subtitle on very small screens */
  }
  .nav-cta .btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* Extra-small phones */
@media (max-width: 360px) {
  .logo-text {
    font-size: 0.85rem;
  }
  .nav-cta .btn {
    padding: 7px 10px;
    font-size: 0.75rem;
  }
}

/* Tablets landscape — keep desktop-style nav when wide enough */
@media (min-width: 769px) and (max-width: 992px) {
  .nav-links {
    display: flex;
  }
  .mobile-toggle {
    display: none;
  }
}

/* ========== REPORTS HERO — mobile-first + background image ========== */
.reports-hero {
  position: relative;
  padding: 100px 0 48px;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}

.reports-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      135deg,
      rgba(25, 84, 41, 0.94) 0%,
      rgba(25, 84, 41, 0.88) 45%,
      rgba(23, 153, 23, 0.82) 100%
    ),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80') center/cover no-repeat;
}

.reports-hero-inner {
  position: relative;
  z-index: 1;
}

.reports-hero .program-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
  line-height: 1.4;
}

.reports-hero .program-breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-decoration: none;
}

.reports-hero .program-breadcrumb a:hover {
  color: var(--accent-orange);
}

.reports-hero .breadcrumb-sep {
  opacity: 0.55;
  user-select: none;
}

.reports-hero [aria-current="page"] {
  color: var(--white);
  font-weight: 600;
}

.reports-hero-content {
  max-width: 720px;
  width: 100%;
}

.reports-hero-content .section-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
}

.reports-hero-content h1 {
  font-size: clamp(1.65rem, 5.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--white); /* was text-dark — caused invisible text */
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.reports-hero .program-lead {
  font-size: clamp(0.95rem, 2.8vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9); /* was text-muted — caused invisible text */
  max-width: 640px;
  margin: 0 0 22px;
}

.reports-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  width: 100%;
}

.reports-hero-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.95rem;
}

.reports-hero-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: transparent;
}

.reports-hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.reports-hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.reports-hero-trust li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
}

.reports-hero-trust strong {
  color: var(--accent-orange);
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 360px) {
  .reports-hero {
    padding: 92px 0 40px;
  }
  .reports-hero-content h1 {
    font-size: 1.5rem;
  }
  .reports-hero .program-lead {
    font-size: 0.9rem;
  }
  .reports-hero-actions .btn {
    font-size: 0.9rem;
    padding: 11px 16px;
  }
}

@media (min-width: 481px) {
  .reports-hero {
    padding: 110px 0 52px;
  }
  .reports-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
  }
  .reports-hero-actions .btn {
    width: auto;
    min-width: 160px;
  }
  .reports-hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px;
  }
}

@media (min-width: 768px) {
  .reports-hero {
    padding: 120px 0 60px;
  }
  .reports-hero .program-breadcrumb {
    font-size: 0.88rem;
    margin-bottom: 28px;
  }
  .reports-hero-content .section-label {
    font-size: 0.85rem;
  }
  .reports-hero .program-lead {
    margin-bottom: 24px;
  }
  .reports-hero-actions {
    gap: 12px;
    margin-bottom: 28px;
  }
  .reports-hero-trust {
    gap: 12px 28px;
    padding-top: 16px;
  }
  .reports-hero-trust li {
    font-size: 0.92rem;
  }
}

@media (min-width: 992px) {
  .reports-hero {
    padding: 128px 0 64px;
  }
  .reports-hero-content h1 {
    margin-bottom: 16px;
  }
}

/* ========== DASHBOARD ========== */
/* --- Reports Dashboard (modern card UI) --- */
.reports-dash {
  padding: 56px 0 64px;
  background: #f7faf8;
}

.reports-dash-head {
  text-align: center;
  margin-bottom: 36px;
}

.reports-dash-head .section-label {
  color: var(--primary-green);
}

.reports-dash-head h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--text-dark);
  margin: 8px 0 0;
  font-weight: 700;
}

.reports-dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dash-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(25, 84, 41, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.dash-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(25, 84, 41, 0.12);
}

.dash-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-card-value {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 6px;
}

.dash-card-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--text-dark);
}

.dash-card-meta {
  font-size: 0.8rem;
  margin: 0;
  color: var(--text-muted);
  line-height: 1.4;
}

.dash-card--primary .dash-card-icon {
  background: rgba(25, 84, 41, 0.1);
  color: #195429;
}
.dash-card--primary .dash-card-value { color: #195429; }

.dash-card--accent .dash-card-icon {
  background: rgba(247, 130, 38, 0.12);
  color: #e06b12;
}
.dash-card--accent .dash-card-value { color: #e06b12; }

.dash-card--green .dash-card-icon {
  background: rgba(23, 153, 23, 0.12);
  color: #179917;
}
.dash-card--green .dash-card-value { color: #179917; }

.dash-card--dark {
  background: linear-gradient(145deg, #195429 0%, #0f3a1c 100%);
  border-color: transparent;
  color: var(--white);
}
.dash-card--dark .dash-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.dash-card--dark .dash-card-value { color: var(--white); }
.dash-card--dark .dash-card-label { color: rgba(255, 255, 255, 0.95); }
.dash-card--dark .dash-card-meta { color: rgba(255, 255, 255, 0.7); }
.dash-card--dark:hover {
  box-shadow: 0 12px 32px rgba(25, 84, 41, 0.35);
}

@media (max-width: 992px) {
  .reports-dash-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .reports-dash {
    padding: 40px 0 48px;
  }
  .reports-dash-head {
    margin-bottom: 24px;
    text-align: left;
  }
  .reports-dash-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dash-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 16px;
  }
  .dash-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .dash-card-value {
    font-size: 1.55rem;
  }
}

/* --- Investment section (modern chart + table) --- */
.invest-section {
  padding: 64px 0 72px;
  background: var(--white);
}

.invest-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.invest-header-text {
  max-width: 560px;
}

.invest-header-text h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin: 8px 0 12px;
  color: var(--text-dark);
}

.invest-header-text p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
  font-size: 1rem;
}

.invest-total-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 16px 24px;
  border-radius: 16px;
  background: linear-gradient(145deg, #195429 0%, #0f3a1c 100%);
  color: var(--white);
  min-width: 160px;
}

.invest-total-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.invest-total-value {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.invest-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
  padding: 28px 24px;
  background: #f7faf8;
  border-radius: 20px;
  border: 1px solid rgba(25, 84, 41, 0.06);
}

.invest-chart-row {
  display: grid;
  grid-template-columns: 100px 1fr minmax(100px, auto);
  align-items: center;
  gap: 16px;
}

.invest-chart-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.invest-chart-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--primary-dark);
  text-decoration: none;
}

.invest-chart-name:hover {
  color: var(--accent-orange);
}

.invest-chart-year {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.invest-chart-track {
  height: 18px;
  background: rgba(25, 84, 41, 0.08);
  border-radius: 9px;
  overflow: hidden;
}

.invest-chart-fill {
  height: 100%;
  min-width: 0;
  border-radius: 9px;
  background: linear-gradient(90deg, #195429, #179917);
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0;
}

.invest-chart-fill--accent {
  background: linear-gradient(90deg, #f78226, #ff9f4a);
}

.invest-chart-row--highlight .invest-chart-name {
  color: #e06b12;
}

.invest-chart-amt {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: right;
  white-space: nowrap;
}

.invest-chart-amt span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.invest-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(25, 84, 41, 0.05);
}

.invest-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.invest-table th,
.invest-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.invest-table th {
  background: #f7faf8;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.invest-table tbody tr:hover {
  background: rgba(23, 153, 23, 0.04);
}

.invest-table-row--highlight {
  background: rgba(247, 130, 38, 0.06);
}

.invest-table-row--highlight:hover {
  background: rgba(247, 130, 38, 0.1);
}

.invest-table a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.invest-table a:hover {
  color: var(--accent-orange);
}

.invest-table tfoot td {
  background: #195429;
  color: var(--white);
  font-weight: 700;
  border-bottom: none;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .invest-section {
    padding: 48px 0 56px;
  }
  .invest-header {
    flex-direction: column;
    align-items: stretch;
  }
  .invest-total-pill {
    align-items: flex-start;
    width: 100%;
  }
  .invest-chart {
    padding: 20px 16px;
    gap: 18px;
  }
  .invest-chart-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .invest-chart-meta {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .invest-chart-amt {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  .invest-chart-amt span {
    display: inline;
    margin: 0;
  }
  .invest-table th,
  .invest-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

/* --- Documents section (modern doc cards) --- */
.docs-section {
  padding: 64px 0 72px;
  background: #f7faf8;
}

.docs-header {
  max-width: 560px;
  margin-bottom: 40px;
}

.docs-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin: 8px 0 12px;
  color: var(--text-dark);
}

.docs-header p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doc-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(25, 84, 41, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(25, 84, 41, 0.1);
}

.doc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.doc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-card-icon--green {
  background: rgba(23, 153, 23, 0.12);
  color: #179917;
}

.doc-card-icon--orange {
  background: rgba(247, 130, 38, 0.12);
  color: #e06b12;
}

.doc-card-icon--dark {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.doc-card-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f0f4f1;
  color: var(--text-muted);
}

.doc-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
  line-height: 1.3;
}

.doc-card-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.doc-card-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.4;
}

.doc-card-list li:last-child {
  border-bottom: none;
}

.doc-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-green);
  opacity: 0.5;
}

.doc-card-list a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
}

.doc-card-list a:hover {
  color: var(--accent-orange);
}

.doc-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
}

.doc-card-cta:hover {
  color: var(--accent-orange);
}

.doc-card--featured {
  background: linear-gradient(160deg, #195429 0%, #0f3a1c 100%);
  border-color: transparent;
  color: var(--white);
}

.doc-card--featured .doc-card-title {
  color: var(--white);
}

.doc-card--featured .doc-card-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.doc-card--featured .doc-card-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.doc-card--featured .doc-card-list li::before {
  background: var(--accent-orange);
  opacity: 1;
}

.doc-card--featured .doc-card-list a {
  color: var(--white);
}

.doc-card--featured .doc-card-list a:hover {
  color: var(--accent-orange);
}

.doc-card--featured .doc-card-cta {
  color: var(--accent-orange);
}

.doc-card--featured .doc-card-cta:hover {
  color: #ffb366;
}

.doc-card--featured:hover {
  box-shadow: 0 12px 32px rgba(25, 84, 41, 0.3);
}

@media (max-width: 992px) {
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .docs-section {
    padding: 48px 0 56px;
  }
  .docs-header {
    margin-bottom: 28px;
  }
  .doc-card {
    padding: 22px 18px;
    border-radius: 16px;
  }
}

/* --- Disclosure section --- */
.disclosure-section {
  padding: 56px 0 64px;
  background: var(--white);
}

.disclosure-card {
  display: flex;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 28px;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff8f0 0%, #ffffff 55%);
  border: 1px solid rgba(247, 130, 38, 0.2);
  box-shadow: 0 4px 24px rgba(247, 130, 38, 0.06);
}

.disclosure-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 130, 38, 0.12);
  color: #e06b12;
}

.disclosure-body {
  flex: 1;
  min-width: 0;
}

.disclosure-body .section-label {
  color: #e06b12;
}

.disclosure-body h2 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 6px 0 14px;
  color: var(--text-dark);
}

.disclosure-body p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.disclosure-body p strong {
  color: var(--text-dark);
}

.disclosure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.disclosure-actions .btn {
  min-height: 44px;
}

@media (max-width: 600px) {
  .disclosure-section {
    padding: 40px 0 48px;
  }
  .disclosure-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 18px;
    border-radius: 16px;
  }
  .disclosure-actions {
    flex-direction: column;
  }
  .disclosure-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== FINAL CTA ========== */
.final-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  background: #195429;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(25, 84, 41, 0.94) 0%, rgba(23, 153, 23, 0.88) 100%),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta .section-label {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #ffffff !important;
  margin-bottom: 16px;
  line-height: 1.25;
}

.final-cta-content > p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92) !important;
  margin-bottom: 24px;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.final-cta-actions .btn {
  min-width: 180px;
  justify-content: center;
}

.final-cta-actions .btn-outline-light {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.final-cta-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff !important;
}

/* Reports extras */
.reports-cta .reports-cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.reports-cta .reports-cta-trust li {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.reports-cta .reports-cta-trust strong {
  color: #f78226;
  font-weight: 700;
}

@media (max-width: 768px) {
  .final-cta { padding: 72px 0; }
  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .final-cta-actions .btn { width: 100%; }
}

@media (max-width: 560px) {
  .reports-cta .reports-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .reports-cta .final-cta-actions {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.footer-brand .logo-image {
  width: 320px;
  height: 120px;
  margin-bottom: 16px;
}

.footer-brand .logo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-brand .tax-info {
  font-size: 0.6rem;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--accent-orange);
}

.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.newsletter p {
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: inherit;
}

.newsletter-form button {
  background: var(--accent-orange);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: #e06e15;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-box {
    grid-column: span 2;
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .causes-grid,
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 40px;
    max-width: 100%;
  }
  .testimonials {
    flex-direction: column;
    text-align: center;
  }
  .testimonial-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 16px;
  }
  .nav-links.open {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-cta .btn {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
  .hero-card,
  .watch-story {
    display: none;
  }
  .about-grid,
  .why-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 360px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .trust-box {
    grid-column: auto;
  }
  .causes-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
}