/* ACCEPT Kenya - Professional NGO Website Styles */

:root {
  --primary-green: #22c55e;
  --secondary-red: #c53030;
  --accent-yellow: #fbbf24;
  --dark-green: #16a34a;
  --light-bg: #f7fafc;
  --professional-bg: #f0f4f8;
  --text-dark: #2d3748;
  --text-light: #718096;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--professional-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-icon {
  background: var(--secondary-red);
  padding: 0.5rem;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text .primary {
  color: var(--secondary-red);
}

.logo-text .secondary {
  color: var(--primary-green);
  font-weight: 300;
  margin-left: 0.25rem;
}

nav.scrolled .logo-text .primary,
nav.scrolled .logo-text .secondary {
  color: var(--secondary-red);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s ease;
  color: var(--white);
}

nav.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary-red);
  text-decoration: underline;
  text-underline-offset: 8px;
}

.btn-primary {
  background: var(--secondary-red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.75rem;
  cursor: pointer;
}

nav.scrolled .mobile-menu-toggle {
  color: var(--primary-green);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 2rem;
  flex-direction: column;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.mobile-menu-header span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: capitalize;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 54, 93, 0.8), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 48rem;
}

.badge {
  display: inline-block;
  background: var(--secondary-red);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: center;
  opacity: 0.9;
}

.hero h1 .highlight {
  color: var(--secondary-red);
}

.hero p {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-white:hover {
  background: var(--secondary-red);
  color: var(--white);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-green);
}

/* Mission & Vision Section */
.mission-vision-section {
  background: var(--white);
  padding: 5rem 0;
}

.mission-vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.mv-card {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  padding: 3rem 2rem;
  border-radius: 1rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.2);
}

.mv-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-yellow);
}

.mv-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-yellow);
}

.mv-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Who We Are Section */
.who-we-are-section {
  background: var(--light-bg);
  padding: 5rem 0;
}

.who-we-are-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.who-we-are-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.who-we-are-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 2rem;
}

.who-we-are-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
  background: var(--white);
  padding: 5rem 0;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  border-radius: 1rem;
  border-bottom: 4px solid;
}

.stat-card.blue {
  background: #eff6ff;
  border-color: var(--primary-green);
}

.stat-card.red {
  background: #fef2f2;
  border-color: var(--secondary-red);
}

.stat-card svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--primary-green);
}

.stat-card.red svg {
  color: var(--secondary-red);
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.stat-card.red h3 {
  color: var(--secondary-red);
}

.stat-card p {
  color: var(--text-light);
  font-weight: 500;
}

/* Work Page Header Hero */
.work-header-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 4rem;
}

.work-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.75) 100%);
  z-index: 1;
}

.work-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.work-header-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.work-header-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.work-header-item {
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.work-header-item:nth-child(1) {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-header-item:nth-child(2) {
  background: linear-gradient(135deg, var(--secondary-red) 0%, #b91c1c 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-header-item:nth-child(3) {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ed8936 100%);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--primary-green);
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.work-header-item:nth-child(4) {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.work-header-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.work-header-item:nth-child(1):hover {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.work-header-item:nth-child(2):hover {
  background: linear-gradient(135deg, #b91c1c 0%, var(--secondary-red) 100%);
}

.work-header-item:nth-child(3):hover {
  background: linear-gradient(135deg, #ed8936 0%, var(--accent-gold) 100%);
}

.work-header-item:nth-child(4):hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

/* Featured Section */
.featured-section {
  padding: 5rem 0;
  background: #f9fafb;
}

.featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.featured-image {
  flex: 1;
  min-width: 300px;
}

.featured-image img {
  width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.featured-content {
  flex: 1;
  min-width: 300px;
}

.featured-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.featured-content p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-list {
  list-style: none;
  margin-bottom: 2rem;
}

.featured-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--primary-green);
  font-weight: 500;
}

.featured-list li::before {
  content: '';
  background: #fee2e2;
  padding: 0.25rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-list li::before {
  content: '→';
  color: var(--secondary-red);
  font-weight: bold;
}

.btn-blue {
  background: var(--primary-green);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-blue:hover {
  background: #2c5282;
}

/* Page Header */
.page-header {
  background: var(--primary-green);
  color: var(--white);
  padding: 8rem 0 5rem;
  margin-top: 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #cbd5e0;
  max-width: 42rem;
  margin: 0 auto;
  font-style: italic;
}

/* Services Grid */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--secondary-red) 100%);
  z-index: 2;
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-8px);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  position: relative;
}

.service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(34, 197, 94, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.service-card:hover .service-image::before {
  opacity: 1;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  position: relative;
  z-index: 0;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  background: #eff6ff;
  color: var(--primary-green);
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--secondary-red);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--secondary-red);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 2px solid #e5e7eb;
}

.service-link:hover {
  transform: translateX(0.5rem);
}

/* Projects Section */
.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.projects-header h2 {
  color: var(--secondary-red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.projects-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
}

.projects-header p {
  max-width: 28rem;
  color: var(--text-light);
  font-size: 1.125rem;
}

.project-item {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.project-item.reverse {
  flex-direction: row-reverse;
}

.project-image {
  flex: 1;
  min-width: 300px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.project-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 300px;
}

.project-meta {
  color: var(--secondary-red);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.project-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.project-content p {
  color: var(--text-dark);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid var(--primary-green);
  padding-left: 1.5rem;
}

.project-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.project-tag {
  background: #eff6ff;
  color: var(--primary-green);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-container { padding-top: 8rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.contact-info p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  background: #fee2e2;
  padding: 1rem;
  border-radius: 1rem;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--secondary-red);
}

.contact-icon.blue {
  background: #dbeafe;
}

.contact-icon.blue svg {
  color: var(--primary-green);
}

.contact-icon.green {
  background: #d1fae5;
}

.contact-icon.green svg {
  color: #059669;
}

.contact-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--text-light);
  margin: 0;
  font-size: 1rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
footer {
  background: #0f172a;
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-brand svg {
  color: var(--secondary-red);
  margin-right: 0.5rem;
}

.footer-brand span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  color: #cbd5e0;
  line-height: 1.7;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  color: #cbd5e0;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-section ul li a {
  color: #cbd5e0;
  text-decoration: none;
}

.footer-section ul li:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  color: #cbd5e0;
}

.footer-contact-item svg {
  color: var(--secondary-red);
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.875rem;
}
 /* Department Menu (Linear List) */
 .dept-menu {
  background: var(--professional-bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 82px;
  z-index: 999;
}

.dept-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dept-btn {
  background: var(--primary-green);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.dept-btn:hover, .dept-btn.active {
  background: var(--primary --primary-green);
  color: var(--white);
  border-color: var(--primary);
}

/* Team Section */
 .team-section {
  padding: 40px 0 80px;
}

.team-category {
  margin-bottom: 60px;
  scroll-margin-top: 180px;
}

.category-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.team-image {
  height: auto;
  overflow: hidden;
  background-color: #eee;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  margin: 0 0 5px;
  color: var(--primary);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.team-role {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-summary {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .dept-list {
    flex-direction: column;
    align-items: stretch;
  }
  .dept-btn {
    text-align: center;
  }
}

/* Mission Statement Section */
.mission-statement-section {
  padding: 5rem 0;
  background: var(--professional-bg);
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.mission-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.mission-container > p {
  font-size: 1.25rem;
  color: var(--text-dark);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.value-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(22, 224, 15, 0.05);
}

.value-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color:#48d41d;
  margin-bottom: 0.75rem;
}

.value-item p {
  color:#000000;
  line-height: 1.7;
}

/* Mission Statement Banner */
.mission-statement-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2c5282 100%);
  color: var(--white);
  text-align: center;
}

.mission-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-banner-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.mission-banner-container p {
  font-size: 1.25rem;
  color: #59cf35;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Introduction Section */
.about-intro-section {
  padding: 5rem 0;
  background: var(--white);
}

.about-intro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-intro-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2rem;
  text-align: center;
}

.about-intro-container p {
  font-size: 1.125rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Objectives Section */
.objectives-section {
  padding: 5rem 0;
  background: var(--professional-bg);
}

.objectives-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.objectives-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 3rem;
  text-align: center;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vm-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.vm-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.vm-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.vm-icon svg {
  width: 2rem;
  height: 2rem;
}

.vm-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1rem;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.objective-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary-red);
}

.objective-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.objective-icon {
  width: 3rem;
  height: 3rem;
  background: #fee2e2;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-red);
  margin-bottom: 1.5rem;
}

.objective-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.objective-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.objective-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
  padding: 5rem 0;
  background: var(--white);
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.partners-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  border-color: var(--primary-green);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.partner-logo-image {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-image[src=""] {
  display: none;
}

.partner-logo-image[src=""] ~ .partner-placeholder-text {
  display: block;
}

.partner-logo-image:not([src=""]) ~ .partner-placeholder-text {
  display: none;
}

.partner-logo-image:not([src=""]) {
  display: block;
}

.partner-placeholder-text {
  text-align: center;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.4;
  display: none;
}


.partner-placeholder {
  text-align: center;
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.partner-placeholder span {
  display: block;
  margin-bottom: 0.25rem;
}

.partner-placeholder small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Previous Projects Section */
.previous-projects-section {
  padding: 5rem 0;
  background: var(--professional-bg);
}

.previous-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.previous-projects-header {
  text-align: center;
  margin-bottom: 4rem;
}

.previous-projects-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.previous-projects-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

.previous-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.previous-project-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.previous-project-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.previous-project-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #e5e7eb;
}

.previous-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.previous-project-card:hover .previous-project-image img {
  transform: scale(1.05);
}

.previous-project-content {
  padding: 1.5rem;
}

.previous-project-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.previous-project-content p {
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.previous-project-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.previous-project-tag {
  background: #eff6ff;
  color: var(--primary-green);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-item {
    flex-direction: column;
  }

  .project-item.reverse {
    flex-direction: column;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .board-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .board-heading {
    font-size: 2rem;
  }

  .mission-values {
    grid-template-columns: 1fr;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .about-intro-container h2,
  .objectives-heading,
  .partners-heading,
  .mission-banner-container h2 {
    font-size: 2rem;
  }

  .mission-banner-container p {
    font-size: 1.125rem;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .partner-logo {
    min-height: 100px;
    padding: 1rem;
  }

  .partner-placeholder {
    font-size: 0.85rem;
  }

  .previous-projects-header h2 {
    font-size: 2rem;
  }

  .previous-projects-grid {
    grid-template-columns: 1fr;
  }

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .partnership-form-wrapper {
    padding: 1.5rem;
  }
}

/* Donation Page Styles */
.donate-hero {
  padding: 8rem 0 5rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2c5282 100%);
  color: var(--white);
  text-align: center;
  margin-top: 4rem;
}

.donate-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.donate-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.donate-hero-content p {
  font-size: 1.25rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.donate-call {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 1rem;
}

.donate-section {
  padding: 5rem 0;
  background: var(--professional-bg);
}

.donate-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.donate-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.donate-form-card,
.donate-info-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.donate-form-card h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.donate-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.amount-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-green);
  z-index: 1;
}

.amount-input-wrapper input {
  padding-left: 2.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.quick-amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.quick-amount-btn {
  padding: 0.75rem 1rem;
  background: #eff6ff;
  border: 2px solid #dbeafe;
  border-radius: 0.5rem;
  color: var(--primary-green);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.quick-amount-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
}

.donation-form input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.donation-form label {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
}

.btn-donate {
  background: var(--secondary-red);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-donate:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(197, 48, 48, 0.3);
}

.donation-note {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.donate-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.impact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.impact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.impact-icon {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: #eff6ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
}

.impact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.impact-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.25rem;
}

.impact-item p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.donation-methods {
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.donation-methods h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.donation-methods ul {
  list-style: none;
  margin-bottom: 1rem;
}

.donation-methods ul li {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.donation-methods ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-red);
  font-weight: 700;
}

.contact-donation {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.contact-donation a {
  color: var(--secondary-red);
  text-decoration: none;
  font-weight: 600;
}

.contact-donation a:hover {
  text-decoration: underline;
}

/* Partnership Section */
.partnership-section {
  padding: 5rem 0;
  background: var(--white);
}

.partnership-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partnership-header {
  text-align: center;
  margin-bottom: 3rem;
}

.partnership-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.partnership-header p {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.partnership-form-wrapper {
  background: var(--professional-bg);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.partnership-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.btn-partnership {
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-partnership:hover {
  background: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(26, 54, 93, 0.3);
}

@media (max-width: 768px) {
  .donate-hero-content h1 {
    font-size: 2rem;
  }

  .donate-hero-content p {
    font-size: 1.125rem;
  }

  .quick-amounts {
    grid-template-columns: repeat(2, 1fr);
  }

  .partnership-header h2 {
    font-size: 2rem;
  }

  .work-header-hero {
    height: 50vh;
    min-height: 400px;
  }

  .work-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .work-header-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .work-header-item {
    padding: 1.25rem;
    font-size: 1rem;
  }
}


/* About Page Detail Sections */
.about-detail-section {
  background: var(--white);
  padding: 5rem 0;
}

.about-detail-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.about-grid h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Mission & Vision Detail Section */
.mission-vision-detail-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  padding: 5rem 0;
  color: var(--white);
}

.mission-vision-detail-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mv-detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.mv-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.mv-detail-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Core Values Section */
.values-section {
  background: var(--white);
  padding: 5rem 0;
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-red);
  margin-bottom: 3rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
  transform: translateY(-5px);
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .mv-cards {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-section h2 {
    font-size: 1.75rem;
  }
}
/* About Page Detail Sections */
.about-detail-section {
  background: var(--white);
  padding: 5rem 0;
}

.about-detail-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.about-grid h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 1rem;
}

.about-grid p {
  color: var(--text-dark);
  line-height: 1.8;
}

/* Mission & Vision Detail Section */
.mission-vision-detail-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
  padding: 5rem 0;
  color: var(--white);
}

.mission-vision-detail-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mv-detail-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px); 
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1); 
  transition: all 0.3s ease;
}

.mv-detail-card:hover {
  box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);      
}

.mv-detail-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.mv-detail-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Core Values Section */
.values-section {
  background: var(--white);
  padding: 5rem 0;
}

.values-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-red);
  margin-bottom: 3rem;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 1rem;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
  transform: translateY(-5px);
}

.value-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-red);
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-dark);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .mv-cards {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-section h2 {
    font-size: 1.75rem;
  }
}

/* Service Details List */
.service-details {
  list-style: none;
  padding: 1rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  margin: 1rem 0;
}

.service-details li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-details li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

@media (max-width: 768px) {
  .service-details li {
    font-size: 0.9rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 1.5rem;
  }
  
  .service-card h3 {
    font-size: 1.2rem;
  }
}
/* ===============================
   PREMIUM DONATION UI UPGRADE
================================= */

.donate-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 25%),
    linear-gradient(135deg, var(--primary-green) 0%, #1f6f43 35%, #163d6b 100%);
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.15));
  pointer-events: none;
}

.donate-hero-content {
  position: relative;
  z-index: 2;
}

.donate-hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.donate-hero-content p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.donate-grid {
  gap: 2rem;
}

.donate-form-card,
.donate-info-card {
  border-radius: 1.25rem;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.08),
    0 6px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.donate-form-card::before,
.donate-info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-red), var(--primary-green), var(--accent-yellow));
}

.donate-form-card h2,
.donate-info-card h3 {
  letter-spacing: -0.02em;
}

.donate-subtitle {
  font-size: 1rem;
  color: #64748b;
}

/* Form fields */
.donation-form .form-group,
.partnership-form .form-group {
  margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #f8fafc;
  border: 1px solid #dbe3ec;
  border-radius: 0.9rem;
  padding: 1rem 1rem;
  transition: all 0.25s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #b8c4d4;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

/* Amount input */
.amount-input-wrapper {
  border-radius: 1rem;
}

.amount-input-wrapper input {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 1rem;
  min-height: 64px;
  font-size: 1.35rem;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.currency-symbol {
  left: 1rem;
  font-size: 1rem;
  background: #ecfdf5;
  color: var(--primary-green);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.15);
}

/* Quick amounts */
.quick-amounts {
  margin-top: -0.3rem;
}

.quick-amount-btn {
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbeafe;
  color: var(--primary-green);
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.quick-amount-btn:hover,
.quick-amount-btn:focus {
  background: var(--primary-green);
  color: #fff;
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.18);
}

/* Checkbox rows */
.donation-form label,
.partnership-form label {
  line-height: 1.5;
}

.donation-form input[type="checkbox"],
.partnership-form input[type="checkbox"] {
  accent-color: var(--primary-green);
  transform: scale(1.1);
}

/* Buttons */
.btn-donate,
.btn-partnership {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  min-height: 56px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.btn-donate {
  background: linear-gradient(135deg, #c53030 0%, #9f1f1f 100%);
}

.btn-donate:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #8e1b1b 100%);
  transform: translateY(-2px);
}

.btn-partnership {
  background: linear-gradient(135deg, var(--primary-green) 0%, #1b8c50 100%);
}

.btn-partnership:hover {
  background: linear-gradient(135deg, #1ea653 0%, #177a46 100%);
  transform: translateY(-2px);
}

/* Success message */
.form-success-message {
  background: linear-gradient(135deg, #ecfdf3 0%, #dcfce7 100%);
  color: #166534;
  border: 1px solid #86efac;
  border-left: 5px solid #16a34a;
  padding: 16px 18px;
  border-radius: 0.9rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.08);
}

/* Impact cards */
.impact-list {
  gap: 1.25rem;
}

.impact-item {
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  transition: all 0.25s ease;
}

.impact-item:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.impact-icon {
  background: linear-gradient(135deg, #eff6ff 0%, #ecfdf5 100%);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.08);
}

/* Donation methods / bank block */
.donation-methods {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.donation-methods h4 {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.donation-methods p {
  margin-bottom: 0.9rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.donation-methods strong {
  color: var(--primary-green);
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  padding: 7px 12px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #c53030 0%, #a61d1d 100%);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(197, 48, 48, 0.18);
  transition: all 0.25s ease;
}

.copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(197, 48, 48, 0.24);
}

/* Partnership section polish */
.partnership-section {
  background:
    linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.partnership-form-wrapper {
  border-radius: 1.25rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.06),
    0 6px 16px rgba(15, 23, 42, 0.04);
}

/* Mobile polish */
@media (max-width: 768px) {
  .donate-form-card,
  .donate-info-card,
  .partnership-form-wrapper {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .donate-hero {
    padding: 7rem 0 4rem;
  }

  .quick-amount-btn {
    font-size: 0.9rem;
    padding: 0.8rem 0.7rem;
  }

  .copy-btn {
    margin-left: 0;
    margin-top: 0.5rem;
    display: inline-flex;
  }
}