:root {
  --green: #1c8a4b;
  --green-dark: #0d3b26;
  --navy: #1a2a4a;
  --text-dark: #1c2530;
  --text-gray: #5b6472;
  --red: #d43b3b;
  --purple: #7a2f9e;
  --blue: #1565c0;
  --green2: #1c8a4b;
  --orange: #e8821e;
  --teal: #167f8c;
  --border: #e6e8ec;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: relative;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #2b3444;
}

.nav-links a.active {
  color: var(--green);
  font-weight: 700;
  border-bottom: 2px solid var(--green);
  padding-bottom: 4px;
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.chevron { font-size: 12px; }

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 168px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 42, 74, 0.12);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 100;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-menu > li {
  position: relative;
}

.dropdown-menu > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4a5568;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.has-flyout:hover > a {
  background: #f7faf8;
  color: var(--green);
}

.flyout-arrow {
  font-size: 11px;
  color: #94a3b8;
}

.has-flyout:hover .flyout-arrow,
.has-flyout:focus-within .flyout-arrow {
  color: var(--green);
}

.flyout-menu {
  list-style: none;
  position: absolute;
  top: 0;
  left: calc(100% - 2px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(26, 42, 74, 0.12);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 101;
}

.has-flyout:hover > .flyout-menu,
.has-flyout:focus-within > .flyout-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.flyout-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4a5568;
  line-height: 1.35;
}

.flyout-menu a.accent {
  color: var(--teal);
}

.flyout-menu a:hover {
  background: #f7faf8;
  color: var(--green);
}

.sidebar-subgroup a.accent,
.sidebar-panel > a {
  display: block;
  padding: 8px 10px 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
}

.sidebar-panel > a {
  border-left: 2px solid var(--border);
  margin: 2px 0 2px 0;
}

.sidebar-subgroup a.accent {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
}

/* ===== MOBILE SIDEBAR ===== */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sidebar-overlay.is-visible {
  opacity: 1;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 28px rgba(26, 42, 74, 0.14);
}

.mobile-sidebar.is-open {
  transform: translateX(0);
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.sidebar-close {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
}

.sidebar-nav > a,
.sidebar-accordion {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 600;
  color: #2b3444;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sidebar-nav > a.active {
  color: var(--green);
}

.sidebar-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-accordion .chevron {
  transition: transform 0.2s ease;
}

.sidebar-group.is-open .sidebar-accordion .chevron {
  transform: rotate(180deg);
}

.sidebar-panel {
  display: none;
  padding: 0 12px 8px 22px;
}

.sidebar-group.is-open .sidebar-panel {
  display: block;
}

.sidebar-subgroup {
  margin-bottom: 12px;
}

.sidebar-parent {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 8px 0 6px;
}

.sidebar-subgroup a {
  display: block;
  padding: 8px 10px 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  border-left: 2px solid var(--border);
}

.sidebar-subgroup a:hover {
  color: var(--green);
  border-left-color: var(--green);
}

.sidebar-footer {
  padding: 16px 22px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-footer .btn-donate {
  text-align: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--navy);
  font-size: 14px;
}

.btn-donate {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  background: url("assets/hero-photo.png") no-repeat right center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(6, 46, 33, 0.94) 0%,
    rgba(8, 55, 46, 0.85) 30%,
    rgba(10, 40, 40, 0.35) 58%,
    rgba(10, 40, 40, 0.05) 78%);
}

.hero-content {
  position: relative;
  max-width: 640px;
  padding: 60px 32px 60px 64px;
  color: #fff;
}

.eyebrow {
  color: #8fdb9d;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #dfe8e2;
  max-width: 500px;
  margin-bottom: 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
}

.arrow { font-weight: 700; }
.icon-people { font-size: 16px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.dot.active { background: var(--green); }

/* ===== FOCUS AREAS ===== */
.focus-areas {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  text-align: center;
}

.focus-areas h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  display: inline-block;
  border-bottom: 3px solid var(--navy);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.focus-sub {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}

.card-icon.icon-red svg,
.card-icon.icon-blue svg,
.card-icon.icon-green svg,
.card-icon.icon-orange svg,
.card-icon.icon-teal svg { fill: #fff; stroke: none; }

.icon-red { background: var(--red); }
.icon-purple { background: var(--purple); }
.icon-blue { background: var(--blue); }
.icon-green { background: var(--green2); }
.icon-orange { background: var(--orange); }
.icon-teal { background: var(--teal); }

.card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.3;
}

.card .sub-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.title-red { color: var(--red); }
.title-purple { color: var(--purple); }
.title-blue { color: var(--blue); }
.title-green { color: var(--green2); }
.title-orange { color: var(--orange); }
.title-teal { color: var(--teal); }

.card p {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .nav-actions .phone,
  .nav-actions .btn-donate { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: repeat(1, 1fr); }
  .hero h1 { font-size: 32px; }
  .hero-content { padding: 40px 24px; }
  .nav-container { flex-wrap: wrap; }
}
