/* ===== CSS VARIABLES ===== */
:root {
  --green: #006b00;
  --green-dark: #004d00;
  --green-light: #008800;
  --orange: #f68f09;
  --orange-dark: #d47a08;
  --orange-light: #ffa530;
  --white: #ffffff;
  --off-white: #f8f9f5;
  --light-gray: #eef2ee;
  --mid-gray: #c8d4c8;
  --dark-gray: #3a3a3a;
  --text-dark: #1a2b1a;
  --text-body: #3a4a3a;

  --font: 'Calibri', 'Candara', 'Segoe UI', sans-serif;
  --base: 20px;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,107,0,0.12);
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--base);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid var(--orange);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--orange-light); transition: var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-item i { color: var(--orange); font-size: 14px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }

/* ===== MAIN NAV ===== */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img { height: 80px; width: auto; }
.nav-logo-text { line-height: 1.2; }
.nav-logo-text .org-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-logo-text .org-tag {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--green);
  background: var(--light-gray);
}
.nav-links > li > a i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.3s;
}
.nav-links > li:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
}
/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border-top: 3px solid var(--orange);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
}
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 17px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  background: var(--light-gray);
  color: var(--green);
  padding-left: 24px;
}
.nav-donate-btn {
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 30px;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  box-shadow: 0 4px 12px rgba(246,143,9,0.3);
  transition: var(--transition) !important;
}
.nav-donate-btn:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246,143,9,0.4) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,75,0,0.82) 40%, rgba(0,75,0,0.3) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
.slide-text { max-width: 640px; color: var(--white); }
.slide-text .tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.slide-text h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-text p {
  font-size: 22px;
  opacity: 0.92;
  margin-bottom: 32px;
  line-height: 1.6;
}
.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(246,143,9,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,143,9,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: var(--transition);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}
/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--orange); width: 32px; border-radius: 6px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.slider-arrow:hover { background: var(--orange); border-color: var(--orange); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(0,107,0,0.1);
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,107,0,0.2);
}
.section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--green); }
.section-desc { font-size: 22px; color: #667766; max-width: 680px; margin: 0 auto; }
.divider {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 18px auto 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { padding: 20px; color: var(--white); }
.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 18px;
  opacity: 0.9;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about-section { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(246,143,9,0.4);
}
.about-badge .num { font-size: 36px; font-weight: 800; display: block; }
.about-badge .lbl { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-content { padding-bottom: 24px; }
.about-content h2 { font-size: 40px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; line-height: 1.2; }
.about-content h2 span { color: var(--green); }
.about-content .intro {
  font-size: 22px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.75;
}
.about-features { margin-bottom: 32px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0,107,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 21px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feature-text p { font-size: 18px; color: #667766; }
.about-chars {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
}
.about-chars h4 { font-size: 19px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.char-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.char-tag {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ===== WHAT WE DO ===== */
.services-section { padding: 96px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--orange);
}
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 24px; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(0,107,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 22px;
  margin-bottom: 16px;
}
.service-body h3 { font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.service-body p { font-size: 18px; color: #667766; line-height: 1.7; }

/* ===== PROJECTS ===== */
.projects-section { padding: 96px 0; background: var(--white); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
  background: var(--white);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.project-img { position: relative; overflow: hidden; }
.project-img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-img img { transform: scale(1.06); }
.project-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
}
.project-body { padding: 22px; }
.project-body h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.project-body p { font-size: 18px; color: #667766; }
.project-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.project-status.active { color: var(--green); }
.project-status.active::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}

/* ===== PHOTO GALLERY ===== */
.gallery-section { padding: 96px 0; background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,107,0,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 28px; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.wide img { height: 200px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 85vh; max-width: 90vw; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none; border: none;
  font-family: var(--font);
  line-height: 1;
}
.lightbox-close:hover { color: var(--orange); }

/* ===== NEWS ===== */
.news-section { padding: 96px 0; background: var(--white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-body { padding: 22px; }
.news-date {
  font-size: 14px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.news-body h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.news-body p { font-size: 18px; color: #667766; }
.news-link { color: var(--green); font-weight: 700; font-size: 17px; display: inline-block; margin-top: 12px; }
.news-link:hover { color: var(--orange); }

/* ===== DONATION ===== */
.donation-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, rgba(0,107,0,0.85) 100%);
  position: relative;
  overflow: hidden;
}
.donation-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.donation-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(246,143,9,0.08);
}
.donation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.donation-info { color: var(--white); }
.donation-info .section-tag { background: rgba(255,255,255,0.15); color: var(--white); border-color: rgba(255,255,255,0.2); }
.donation-info h2 { font-size: 44px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.donation-info h2 span { color: var(--orange-light); }
.donation-info p { font-size: 22px; opacity: 0.9; margin-bottom: 28px; }
.donation-methods { display: flex; flex-direction: column; gap: 16px; }
.method-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
}
.method-icon {
  width: 42px; height: 42px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.method-item span { font-size: 19px; font-weight: 600; }
.donation-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.donation-form h3 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 28px; text-align: center; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.amount-btn {
  padding: 12px;
  border: 2px solid var(--mid-gray);
  border-radius: 10px;
  background: var(--white);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--green);
  background: rgba(0,107,0,0.08);
  color: var(--green);
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: 10px;
  font-size: 18px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,107,0,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(246,143,9,0.35);
  margin-top: 8px;
}
.form-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,143,9,0.45);
}
.form-note { font-size: 14px; color: #999; text-align: center; margin-top: 12px; }

/* ===== CONTACT ===== */
.contact-section { padding: 96px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { font-size: 40px; font-weight: 800; color: var(--text-dark); margin-bottom: 16px; }
.contact-info p { font-size: 20px; color: #667766; margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(0,107,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-card p { font-size: 17px; color: #667766; }
.contact-card a { color: var(--green); }
.contact-card a:hover { color: var(--orange); }
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.contact-form h3 { font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 28px; }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { }
.footer-brand img { height: 60px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 17px; line-height: 1.75; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:before { content: '›'; color: var(--orange); font-weight: 700; }
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--orange); margin-top: 4px; font-size: 15px; }
.footer-contact-item span { font-size: 17px; color: rgba(255,255,255,0.75); }
.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--orange); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-hero h1 { font-size: 52px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 22px; opacity: 0.88; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 17px;
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { opacity: 0.6; }

/* ===== MISSION / VISION CARDS ===== */
.mv-section { padding: 80px 0; background: var(--white); }
.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mv-card {
  background: var(--off-white);
  border-radius: 14px;
  padding: 36px 28px;
  border-top: 5px solid var(--green);
  transition: var(--transition);
}
.mv-card:nth-child(2) { border-top-color: var(--orange); }
.mv-card:nth-child(3) { border-top-color: var(--green-light); }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mv-card i { font-size: 36px; color: var(--green); margin-bottom: 18px; display: block; }
.mv-card:nth-child(2) i { color: var(--orange); }
.mv-card h3 { font-size: 26px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
.mv-card p { font-size: 19px; color: #667766; line-height: 1.75; }

/* ===== GOALS LIST ===== */
.goals-section { padding: 80px 0; background: var(--off-white); }
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.goal-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  align-items: flex-start;
}
.goal-num {
  width: 44px; height: 44px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.goal-item p { font-size: 19px; color: var(--text-body); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .slide-text h1 { font-size: 44px; }
  .services-grid, .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .donation-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  :root { --base: 18px; }
  .top-bar-left { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 20px; padding: 14px 16px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--light-gray);
    border-radius: 8px;
    margin-top: 4px;
  }
  .hero-slider { height: 480px; }
  .slide-content { padding: 0 24px; }
  .slide-text h1 { font-size: 34px; }
  .slide-text p { font-size: 18px; }
  .about-grid, .contact-grid, .mv-grid, .goals-grid { grid-template-columns: 1fr; }
  .services-grid, .projects-grid, .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 34px; }
  .donation-form { padding: 28px 20px; }
  .about-badge { right: 0; bottom: -16px; }
  .stat-number { font-size: 44px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .slide-buttons { flex-direction: column; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }
.hidden { display: none !important; }
.page-section { display: none; }
.page-section.active { display: block; }

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px 6px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.75);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.lang-btn.active {
  background: var(--orange);
  color: var(--white);
}
.lang-flag { font-size: 15px; line-height: 1; }

/* RTL support for Arabic */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .dropdown { left: auto; right: 0; }
html[dir="rtl"] .top-bar-left { flex-direction: row-reverse; }
html[dir="rtl"] .about-grid,
html[dir="rtl"] .donation-grid,
html[dir="rtl"] .contact-grid { direction: rtl; }
html[dir="rtl"] .slider-arrow.prev { left: auto; right: 20px; }
html[dir="rtl"] .slider-arrow.next { right: auto; left: 20px; }

/* Hide Google's own translate bar injected into page */
.goog-te-banner-frame,
.goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9998;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
  color: var(--white);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2.2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #1a1a1a;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a1a1a;
  border-right: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

@media (max-width: 768px) {
  .lang-switcher { gap: 2px; padding: 2px 4px; }
  .lang-btn { font-size: 12px; padding: 4px 8px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 26px; }
  .whatsapp-tooltip { display: none; }
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--light-gray);
}
.partners-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
/* Fade edges */
.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.partners-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.partners-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.partners-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo-card {
  flex-shrink: 0;
  width: 190px;
  height: 100px;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: default;
}
.partner-logo-card:hover {
  border-color: var(--green);
  background: rgba(0,107,0,0.05);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,107,0,0.1);
}
/* Placeholder style — remove once real logos are added */
.partner-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--mid-gray);
}
.partner-placeholder i { font-size: 28px; color: var(--green); opacity: 0.4; }
.partner-placeholder span { font-size: 14px; font-weight: 700; color: #aaa; letter-spacing: 0.5px; }
/* When real logo imgs are placed inside .partner-logo-card */
.partner-logo-card img {
  max-height: 65px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: var(--transition);
}
.partner-logo-card:hover img { filter: grayscale(0%); opacity: 1; }
.partners-note {
  text-align: center;
  margin-top: 32px;
  font-size: 17px;
  color: #889988;
}
.partners-note a { color: var(--green); font-weight: 700; }
.partners-note a:hover { color: var(--orange); }
.partners-note i { margin-right: 6px; color: var(--orange); }
