/* ============================================
   ZIVO — Zanzibar Internship & Volunteer Org
   Main Stylesheet
   ============================================ */

:root {
  /* Brand palette */
  --navy: #1c3f6e;
  --navy-dark: #14304f;
  --navy-light: #5b7ea3;
  --orange: #f2782e;
  --orange-dark: #e0641b;
  --orange-light: #f7a96b;
  --peach: #f3a479;
  --peach-light: #fbe1cf;
  --bg-grey: #e9edf1;
  --bg-blue-light: #eef3f8;
  --bg-blue-soft: #dfe6ee;
  --slate-blue: #7f97b3;
  --white: #ffffff;
  --text-dark: #1c2b3a;
  --text-body: #3c4a5c;
  --border-light: #d8e0e8;

  /* Type */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --container-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

.accent {
  color: var(--orange);
}

p {
  margin-bottom: 1rem;
}

section {
  position: relative;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(242, 120, 46, 0.3);
}

.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 120, 46, 0.4);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-orange {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: var(--peach-light);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-grey);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a.nav-link {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 2px;
  position: relative;
}

.main-nav > ul > li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav > ul > li:not(:last-child)::after {
  content: '';
  width: 1px;
  height: 16px;
  background: rgba(28, 63, 110, 0.25);
  margin-left: 18px;
}

.nav-link.active {
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy);
}

.chevron {
  font-size: 0.6rem;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(20, 40, 70, 0.18);
  padding: 18px 24px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.dropdown-menu.wide {
  min-width: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 28px;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 0;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
}

.dropdown-menu.wide li {
  border-bottom: 1px solid var(--border-light);
}

.dropdown-menu.wide li a {
  border-bottom: none;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  color: var(--orange);
}

.dropdown-menu li.current a {
  font-weight: 700;
}

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

.nav-actions .btn {
  padding: 11px 22px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  position: relative;
  background: var(--bg-grey);
  padding: 60px 0 70px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(233,237,241,0.55), rgba(233,237,241,0.92));
}

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

.page-hero h1 {
  font-size: 2.6rem;
}

/* ============================================
   HOME HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(20, 48, 79, 0.82), rgba(28, 63, 110, 0.55)), url('../imgs/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 60px 0;
}

.hero-eyebrow {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0.95;
}

.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  margin-bottom: 28px;
}

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

/* ============================================
   INTRO CARDS (Home)
   ============================================ */

.intro-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: -56px;
  position: relative;
  z-index: 5;
  flex-wrap: wrap;
  padding: 0 24px;
}

.intro-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 34px;
  box-shadow: 0 18px 40px rgba(20, 40, 70, 0.12);
  width: 360px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.intro-card h3 {
  color: var(--orange);
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.intro-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: var(--text-body);
}

.intro-card .icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  color: var(--navy);
}

/* ============================================
   MEET ZIVO / TWO COLUMN
   ============================================ */

.split-section {
  padding: 90px 0 60px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.split-grid img {
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(20,40,70,0.12);
}

.split-grid.reverse {
  direction: rtl;
}
.split-grid.reverse > * {
  direction: ltr;
}

.mission-block {
  margin-top: 36px;
}

.mission-block h3 {
  color: var(--orange);
  margin-bottom: 10px;
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */

.programs-section {
  background: var(--bg-grey);
  padding: 80px 0;
  text-align: center;
}

.programs-section h2 {
  margin-bottom: 40px;
}

.programs-carousel-wrap {
  position: relative;
}

.programs-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px 16px;
  scrollbar-width: none;
}

.programs-grid::-webkit-scrollbar {
  display: none;
}

.program-card {
  background: var(--navy-light);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  color: var(--white);
  flex: 0 0 320px;
  box-shadow: 0 16px 32px rgba(20,40,70,0.14);
}

.program-card img {
  height: 349px;
  width: 100%;
  object-fit: cover;
}

.program-card-body {
  padding: 22px 24px 26px;
}

.program-card-body h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.program-card-body p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}

.program-card-body a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.program-card-body a:hover {
  color: var(--peach-light);
}

.carousel-arrow {
  position: absolute;
  top: 40%;
  right: -8px;
  background: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(20,40,70,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  font-size: 1.1rem;
  z-index: 10;
}

.carousel-arrow.left {
  right: auto;
  left: -8px;
}

.programs-section .btn {
  margin-top: 16px;
}

/* ============================================
   TESTIMONIAL STRIP (Home)
   ============================================ */

.testimonial-strip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--peach) 100%);
  padding: 80px 0;
  color: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.testimonial-grid h2 {
  color: var(--white);
  font-size: 2.4rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 26px 28px;
  position: relative;
}

.testimonial-quote-mark {
  font-size: 2.2rem;
  font-family: Georgia, serif;
  color: var(--white);
  opacity: 0.85;
  line-height: 1;
}

.testimonial-card .name {
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px;
  text-align: right;
}

.testimonial-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 10px;
}

.testimonial-strip .btn {
  margin-top: 28px;
}

/* ============================================
   WHY ZIVO
   ============================================ */

.why-section {
  padding: 80px 0;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 44px 0;
}

.why-item .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--orange);
}

.why-item p {
  font-weight: 500;
  color: var(--navy);
  max-width: 220px;
  margin: 0 auto;
}

.why-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  position: relative;
  background: var(--bg-grey);
  padding: 64px 0 36px;
  overflow: hidden;
}

.footer-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1.4fr auto;
  gap: 40px;
  align-items: start;
}

.footer-logo img {
  height: 56px;
  margin-bottom: 6px;
}

.footer-about h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.footer-about p {
  font-size: 0.92rem;
  max-width: 360px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

.footer-contact-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--navy);
}

.footer-location {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: var(--orange);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

/* ============================================
   CTA BAND (Volunteer opportunity)
   ============================================ */

.cta-band {
  background: linear-gradient(120deg, var(--orange-dark), var(--peach));
  padding: 64px 0;
  color: var(--white);
}

.cta-band-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.cta-band img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-band h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-band .lead {
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.cta-band-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-band .btn {
  margin-top: 14px;
  align-self: flex-start;
}

/* ============================================
   GENERIC SECTION HELPERS
   ============================================ */

.section-pad {
  padding: 80px 0;
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}
.bg-navy h2, .bg-navy h3 { color: var(--white); }

.bg-grey {
  background: var(--bg-grey);
}

.bg-blue-light {
  background: var(--bg-blue-light);
}

.bg-slate {
  background: var(--slate-blue);
  color: var(--white);
}
.bg-slate h2, .bg-slate h3 { color: var(--white); }

.text-center { text-align: center; }

.eyebrow-icon-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.eyebrow-icon-row .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
}

.eyebrow-icon-row .icon {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
}

/* Responsive grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

/* ============================================
   ABOUT / OUR STORY
   ============================================ */

.icon-block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.icon-block .icon-circle {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  color: var(--white);
}

.vision-block {
  padding: 70px 0;
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.goals-list .goal-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--orange);
  font-weight: 500;
}

.goals-list .goal-item:last-child {
  border-bottom: none;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */

.testimonials-masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 50px 0;
}

.testimonial-box {
  background: var(--peach-light);
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-box img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.testimonial-box-body {
  padding: 24px 26px;
}

.testimonial-box-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.testimonial-box-body p {
  font-size: 0.88rem;
  color: var(--text-body);
}

.testimonials-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 10px;
}

/* ============================================
   BLOG
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 50px 0 70px;
}

.blog-card {
  background: var(--peach);
  border-radius: 20px;
  overflow: hidden;
  color: var(--white);
  transition: transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card-body {
  padding: 22px 26px 30px;
}

.blog-card-body h3 {
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
}

/* ============================================
   PROGRAM DETAIL PAGES
   ============================================ */

.program-hero {
  background: var(--bg-grey);
  padding: 50px 0 70px;
}

.program-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.program-hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.program-hero-images img:first-child {
  grid-row: span 2;
  height: 100%;
  object-fit: cover;
}

.program-hero-images img {
  border-radius: 14px;
  height: 100%;
  object-fit: cover;
}

.program-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  margin: 28px 0 32px;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.program-meta-item .icon {
  width: 24px;
  height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}

.program-details-section {
  padding: 70px 0;
}

.program-details-section .lead-text {
  font-style: italic;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
}

.program-details-section img {
  border-radius: 14px;
  margin: 36px 0;
  width: 100%;
  object-fit: cover;
  max-height: 360px;
}

.duties-requirements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.duties-requirements h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.duties-requirements ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.duties-requirements li {
  padding-left: 22px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
}

.duties-requirements li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--orange-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin: 44px 0;
  text-align: center;
}

.included-item .icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: var(--navy);
}

.included-item h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.included-item p {
  font-size: 0.82rem;
  color: var(--text-body);
}

.day-schedule {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-light);
}

.schedule-row .time {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.88rem;
}

.schedule-row .desc {
  font-size: 0.9rem;
  color: var(--text-body);
}

.weekend-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

/* ============================================
   PRACTICAL INFORMATION
   ============================================ */

.fee-table-wrap {
  background: var(--peach-light);
  border-radius: 16px;
  padding: 28px 30px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th, .fee-table td {
  text-align: left;
  padding: 12px 8px;
  font-size: 0.92rem;
}

.fee-table th {
  color: var(--navy);
  font-family: var(--font-display);
  border-bottom: 2px solid var(--orange);
}

.fee-table td {
  color: var(--text-body);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.included-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}

.check-list .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-list.yes .icon { color: #2da86b; }
.check-list.no .icon { color: #d9534f; }

.info-block {
  padding: 50px 0;
  border-bottom: 1px solid var(--border-light);
}

.info-block:last-of-type {
  border-bottom: none;
}

.info-block-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.info-block-grid img {
  border-radius: 14px;
}

.safety-tips {
  background: var(--bg-blue-light);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 20px;
}

.safety-tips li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-group {
  margin-bottom: 44px;
}

.faq-group h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.faq-item {
  background: var(--bg-blue-light);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.96rem;
}

.faq-question .chev {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--navy);
}

.faq-item.open .faq-question .chev {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0;
}

.faq-bottom-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* ============================================
   DONATIONS
   ============================================ */

.donate-hero {
  background: var(--bg-grey);
  padding: 60px 0 80px;
}

.donate-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.donate-widget {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 32px;
  box-shadow: 0 20px 50px rgba(20,40,70,0.14);
}

.donate-widget h3 {
  margin-bottom: 4px;
}

.donate-widget > p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.donate-widget label.field-label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.donate-type-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.donate-type-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.donate-type-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.donate-amount-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.donate-amount-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.donate-amount-btn.active {
  background: var(--orange-light);
  border-color: var(--orange);
  color: var(--white);
}

.donate-other-label {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 8px;
  display: block;
}

.donate-other-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.donate-other-input:focus {
  outline: none;
  border-color: var(--orange);
}

.donate-widget .btn {
  margin-bottom: 12px;
}

.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin: 40px 0;
}

.initiative-item h3 {
  margin-bottom: 10px;
}

.initiative-item p {
  font-size: 0.9rem;
}

.initiative-item.with-image {
  grid-column: span 1;
}

.initiative-item img {
  border-radius: 14px;
  margin-bottom: 16px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ways-donate-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.donation-transparency {
  margin-top: 50px;
}

/* HIV/AIDS specific */
.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
  font-size: 0.92rem;
}

.impact-stats li {
  padding-left: 20px;
  position: relative;
}

.impact-stats li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--orange);
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-row img {
  border-radius: 12px;
  height: 220px;
  width: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-intro {
  padding: 50px 0 0;
}

.contact-cards {
  background: linear-gradient(120deg, var(--orange), var(--peach));
  padding: 50px 0;
  margin-top: 30px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.contact-card h3 {
  color: var(--orange);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-card .icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-main-grid {
  padding: 70px 0;
}

.contact-main-grid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0;
  height: 280px;
  background: var(--bg-blue-light);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-caption {
  font-size: 0.88rem;
  color: var(--text-body);
}

.location-caption strong {
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.contact-form-wrap {
  background: var(--bg-blue-light);
  border-radius: 16px;
  padding: 34px 38px;
}

.contact-form-wrap p {
  font-size: 0.88rem;
}

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

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .split-grid, .grid-2, .testimonial-grid, .cta-band-grid, .footer-content {
    grid-template-columns: 1fr;
  }
  .split-grid.reverse { direction: ltr; }
  .grid-3, .grid-4, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-social { justify-content: flex-start; }
  .intro-cards { margin-top: 24px; }
  .hero { padding: 50px 0; min-height: auto; }

  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(20,40,70,0.15);
    padding: 10px 24px 20px;
  }
  .main-nav.open > ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav.open > ul > li {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }
  .main-nav.open > ul > li::after { display: none; }
  .main-nav.open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
    width: 100%;
    padding: 6px 0 0 12px;
    display: none;
  }
  .main-nav.open .dropdown-menu.wide {
    grid-template-columns: 1fr;
  }
  .main-nav.open li.open-dropdown .dropdown-menu {
    display: block;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2rem; }
  .grid-3, .grid-4, .why-grid, .grid-2 { grid-template-columns: 1fr; }
  .intro-card { width: 100%; }
  .testimonial-grid h2 { font-size: 1.8rem; }
  .nav-actions .btn span.full-text { display: none; }
}

@media (max-width: 980px) {
  .testimonials-masonry,
  .blog-grid,
  .program-hero-grid,
  .duties-requirements,
  .day-schedule,
  .weekend-block,
  .info-block-grid,
  .initiatives-grid,
  .contact-cards-grid,
  .contact-main-grid-inner,
  .included-checklist,
  .donate-hero-grid {
    grid-template-columns: 1fr;
  }
  .program-hero-images { grid-template-columns: 1fr 1fr; }
  .included-grid { grid-template-columns: repeat(3, 1fr); }
  .program-meta { grid-template-columns: repeat(2, 1fr); }
  .gallery-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .program-meta { grid-template-columns: 1fr; }
  .fee-table { font-size: 0.8rem; }
}
