/* ========================================
   CHAMIET CBO WEBSITE - MAIN STYLESHEET
   Color Palette: Deep Green, Harvest Gold, Warm Earth
   ======================================== */

/* CSS Variables & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --deep-green: #1F4F2B;
  --harvest-gold: #E6B422;
  --warm-earth: #B87B4A;
  --cream-light: #FFF9E8;
  --charcoal-soft: #2F3E2E;
  --accent-leaf: #488B49;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.02);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.1);
  --transition-smooth: all 0.3s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #FEFAE0;
  color: #2C2A24;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
  background: var(--cream-light);
  border-bottom: 3px solid var(--harvest-gold);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  background-color: rgba(255, 249, 232, 0.96);
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.logo-area h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--harvest-gold) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.logo-area p {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--warm-earth);
  letter-spacing: 1px;
  margin: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--deep-green);
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.nav-links a:hover {
  color: var(--harvest-gold);
  transform: translateY(-2px);
}

/* ========================================
   BUTTON STYLES
   ======================================== */

.btn-outline {
  border: 2px solid var(--deep-green);
  background: transparent;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 700;
  color: var(--deep-green);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--deep-green);
  color: white;
  border-color: var(--deep-green);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--harvest-gold);
  border: none;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 700;
  color: #2C2A24;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background: #cf9f1a;
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(230, 180, 34, 0.3);
}

.btn-secondary {
  background: var(--deep-green);
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: #0f3a1c;
  transform: translateY(-2px);
}

/* ========================================
   FULL SCREEN SLIDESHOW (HOME PAGE)
   ======================================== */

.hero-slideshow {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay for better text readability */
.slideshow-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Navigation Dots */
.dots-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active-dot {
  background: var(--harvest-gold);
  width: 30px;
  border-radius: 10px;
}

.dot:hover {
  background: var(--harvest-gold);
}

/* Hero Content Overlay */
.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  border-radius: 48px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  background: var(--harvest-gold);
  color: var(--deep-green);
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.hero-content h1 span {
  color: var(--harvest-gold);
  border-bottom: 3px solid var(--harvest-gold);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--harvest-gold);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   SECTION STYLES
   ======================================== */

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-green);
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
  color: #5e5b50;
  font-size: 1.1rem;
}

/* ========================================
   PROGRAM CARDS
   ======================================== */

.program-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background: white;
  border-radius: 28px;
  padding: 2rem 1.8rem;
  flex: 1 1 280px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-bottom: 5px solid var(--harvest-gold);
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--deep-green);
}

.card p {
  color: #4a473e;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* ========================================
   DONATION PAGE STYLES
   ======================================== */

/* Donation Hero */
.donation-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}

.donation-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.donation-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Donation Main Section */
.donation-main {
  padding: 60px 0;
  background: #FEFAE0;
}

.donation-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left Column - Info */
.donation-info {
  flex: 1;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.donation-info h2 {
  color: var(--deep-green);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.donation-info > p {
  color: #4a473e;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.info-list {
  margin: 1.5rem 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #EDE2CE;
}

.info-item i {
  color: var(--harvest-gold);
  font-size: 1.2rem;
}

/* Anonymous Note */
.anonymous-note {
  background: linear-gradient(135deg, #FFF3DF 0%, #FEF5E8 100%);
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.anonymous-note i {
  font-size: 1.8rem;
  color: var(--harvest-gold);
}

.anonymous-note strong {
  color: var(--deep-green);
  display: block;
  margin-bottom: 0.25rem;
}

.anonymous-note p {
  font-size: 0.8rem;
  margin: 0;
  color: #5e5b50;
}

.impact-badge {
  background: linear-gradient(135deg, #FFF3DF 0%, #FEF5E8 100%);
  padding: 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.impact-badge i {
  font-size: 2rem;
  color: var(--harvest-gold);
}

.impact-badge strong {
  color: var(--deep-green);
  display: block;
  margin-bottom: 0.25rem;
}

.impact-badge p {
  font-size: 0.85rem;
  margin: 0;
}

/* Right Column - Donation Form */
.donation-form {
  flex: 1.2;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.donation-form h3 {
  color: var(--deep-green);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Amount Section */
.amount-section {
  margin-bottom: 1.5rem;
}

.amount-section label {
  display: block;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.required {
  color: #e74c3c;
  font-size: 0.8rem;
}

.optional {
  font-weight: normal;
  color: #888;
  font-size: 0.75rem;
}

.amount-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.amount-btn {
  background: #FEFAE0;
  border: 2px solid #EDE2CE;
  padding: 10px 18px;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--deep-green);
}

.amount-btn:hover {
  border-color: var(--harvest-gold);
  transform: translateY(-2px);
}

.amount-btn.selected {
  background: var(--harvest-gold);
  border-color: var(--harvest-gold);
  color: var(--deep-green);
}

.custom-btn {
  background: transparent;
  border: 2px dashed var(--harvest-gold);
}

.custom-amount-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  font-size: 1rem;
  display: none;
  margin-top: 10px;
}

.custom-amount-input:focus {
  outline: none;
  border-color: var(--harvest-gold);
}

/* Optional Section */
.optional-section {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #FEFAE0;
  border-radius: 16px;
  border: 1px dashed #EDE2CE;
}

.optional-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #EDE2CE;
}

.optional-header i {
  font-size: 1.2rem;
  color: var(--harvest-gold);
}

.optional-header span {
  font-weight: 600;
  color: var(--deep-green);
}

.optional-header small {
  color: #888;
  font-size: 0.7rem;
  margin-left: auto;
}

/* Form Groups */
.donation-form .form-group {
  margin-bottom: 1.25rem;
}

.donation-form .form-group label {
  display: block;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.donation-form .form-group label i {
  margin-right: 8px;
  color: var(--harvest-gold);
}

.donation-form .form-group input,
.donation-form .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.donation-form .form-group input:focus,
.donation-form .form-group select:focus {
  outline: none;
  border-color: var(--harvest-gold);
  box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.1);
}

/* Payment Methods */
.payment-section {
  margin: 1.5rem 0;
}

.payment-section label {
  display: block;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.payment-method {
  cursor: pointer;
}

.payment-method input {
  display: none;
}

.payment-method input:checked + .payment-card {
  background: var(--harvest-gold);
  border-color: var(--harvest-gold);
  color: var(--deep-green);
  transform: translateY(-2px);
}

.payment-card {
  background: #FEFAE0;
  border: 2px solid #EDE2CE;
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.payment-card:hover {
  border-color: var(--harvest-gold);
  transform: translateY(-2px);
}

.payment-card i {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.payment-card span {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
}

.payment-card small {
  font-size: 0.65rem;
  display: block;
  color: #888;
  margin-top: 4px;
}

.card-icons {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.card-icons i {
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0;
}

/* Payment Details */
.payment-details {
  margin: 1rem 0;
}

.detail-box {
  background: #FEFAE0;
  padding: 1rem;
  border-radius: 16px;
  border-left: 4px solid var(--harvest-gold);
}

.detail-box h4 {
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.detail-box h4 i {
  color: var(--harvest-gold);
  margin-right: 8px;
}

/* Card Input Styles */
.card-input-group {
  margin-bottom: 1rem;
}

.card-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.card-row {
  display: flex;
  gap: 10px;
}

.card-expiry, .card-cvc {
  flex: 1;
  padding: 12px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  font-size: 1rem;
}

.accepted-cards {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #888;
}

.accepted-cards i {
  font-size: 1.2rem;
  margin-left: 5px;
  color: #4a473e;
}

/* M-Pesa, Bank, PayPal Info Styles */
.mpesa-info, .bank-info, .paypal-info {
  margin-bottom: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #EDE2CE;
}

.info-row .label {
  font-weight: 600;
  color: var(--deep-green);
}

.info-row .value {
  color: #4a473e;
}

.paypal-email {
  background: white;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  margin-top: 10px;
}

.paypal-email i {
  color: var(--harvest-gold);
  margin-right: 8px;
}

.instruction-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #EDE2CE;
}

.instruction-note i {
  color: var(--harvest-gold);
  margin-right: 5px;
}

/* Recurring Section */
.recurring-section {
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--harvest-gold);
}

.checkbox-label span {
  color: #4a473e;
  font-size: 0.9rem;
}

/* Donate Button */
.donate-submit-btn {
  width: 100%;
  background: var(--harvest-gold);
  color: var(--deep-green);
  padding: 14px;
  border: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.donate-submit-btn:hover {
  background: #cf9f1a;
  transform: scale(0.98);
}

.secure-text {
  text-align: center;
  font-size: 0.7rem;
  color: #888;
  margin-top: 1rem;
}

.secure-text i {
  margin-right: 5px;
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */

.toast-msg {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--deep-green);
  color: #FEFAE0;
  padding: 12px 24px;
  border-radius: 60px;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ========================================
   PAGE HEADER (for inner pages)
   ======================================== */

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(120deg, #FFF3DF 0%, #FEF5E8 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #5e5b50;
  max-width: 700px;
  margin: 0 auto;
}

/* ========================================
   GET INVOLVED PAGE STYLES
   ======================================== */

.involve-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 20px;
}

.involve-item {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  flex: 1 1 260px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid #EDE2CE;
}

.involve-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.involve-item h3 {
  color: var(--deep-green);
  margin: 12px 0;
}

.involve-item p {
  color: #4a473e;
  line-height: 1.6;
}

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

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  color: var(--deep-green);
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form {
  flex: 1.5;
  background: white;
  padding: 2rem;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--harvest-gold);
  box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.1);
}

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

.footer {
  background: #2A2C24;
  color: #DCD7C0;
  padding: 50px 0 30px;
  border-top: 8px solid var(--harvest-gold);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--harvest-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p, .footer-col a {
  color: #cbc6ae;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--harvest-gold);
  transform: translateX(3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4e543d;
  font-size: 0.85rem;
}
/* ========================================
   CONTACT PAGE STYLES (UPDATED)
   ======================================== */

.contact-section {
  padding: 60px 0;
  background: #FEFAE0;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Contact Info Card */
.contact-info-card {
  flex: 1;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: var(--deep-green);
  font-size: 1.3rem;
  margin: 1.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card h3:first-of-type {
  margin-top: 0;
}

.contact-info-card h3 i {
  color: var(--harvest-gold);
  font-size: 1.2rem;
  width: 25px;
}

.info-item {
  margin-bottom: 1.5rem;
  padding-left: 35px;
}

.info-item strong {
  color: var(--deep-green);
  display: block;
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0.5rem;
  color: #4a473e;
  line-height: 1.6;
}

.info-item a {
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.info-item a:hover {
  color: var(--harvest-gold);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  padding-left: 35px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition-smooth);
  font-size: 1.2rem;
}

.social-icon:hover {
  background: var(--harvest-gold);
  color: white;
  transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
  flex: 1.5;
  background: white;
  border-radius: 32px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  color: var(--deep-green);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: #888;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.contact-form-card .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-card .form-group label {
  display: block;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-group input,
.contact-form-card .form-group textarea,
.contact-form-card .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #EDE2CE;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
  background: white;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group textarea:focus,
.contact-form-card .form-group select:focus {
  outline: none;
  border-color: var(--harvest-gold);
  box-shadow: 0 0 0 3px rgba(230, 180, 34, 0.1);
}

.submit-btn {
  width: 100%;
  background: var(--harvest-gold);
  color: var(--deep-green);
  padding: 14px;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #cf9f1a;
  transform: scale(0.98);
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: #FFFAEF;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.faq-question i {
  font-size: 1.5rem;
  color: var(--harvest-gold);
}

.faq-question h3 {
  color: var(--deep-green);
  font-size: 1.1rem;
  margin: 0;
}

.faq-item p {
  color: #4a473e;
  line-height: 1.6;
  padding-left: 42px;
}

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

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 968px) {
  .donation-wrapper {
    flex-direction: column;
  }
  
  .donation-hero h1 {
    font-size: 2rem;
  }
  
  .donation-info h2 {
    font-size: 1.5rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-flex {
    flex-direction: column;
    text-align: center;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-item h3 {
    font-size: 1.5rem;
  }
  
  .hero-slideshow {
    min-height: 500px;
  }
  
  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .site-logo {
    width: 40px;
    height: 40px;
  }
  
  .logo-area h1 {
    font-size: 1.3rem;
  }
  
  .logo-area p {
    font-size: 0.6rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-row {
    flex-direction: column;
    gap: 5px;
  }
  
  .card-row {
    flex-direction: column;
  }
  
  .optional-header {
    flex-wrap: wrap;
  }
  
  .optional-header small {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .impact-stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .amount-buttons {
    gap: 8px;
  }
  
  .amount-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .hero-badge {
    font-size: 0.7rem;
  }
  
  .btn-primary, .btn-secondary {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .card h3 {
    font-size: 1.3rem;
  }
  
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.highlight {
  color: var(--harvest-gold);
}

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

/* ========================================
   IMPACT SECTION STYLES
   ======================================== */

.impact-section {
  background: #FFFAEF;
  padding: 80px 0;
}

.impact-stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0 2rem;
}

.impact-stat-item {
  text-align: center;
  padding: 2rem 2.5rem;
  background: white;
  border-radius: 32px;
  min-width: 240px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--harvest-gold);
}

.impact-stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.impact-stat-item:hover .impact-icon {
  transform: scale(1.1);
  opacity: 0.8;
}

.impact-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--harvest-gold);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.impact-icon {
  font-size: 2rem;
  opacity: 0.25;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.impact-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive Impact Section */
@media (max-width: 768px) {
  .impact-stats-container {
    gap: 1.5rem;
  }
  
  .impact-stat-item {
    min-width: 180px;
    padding: 1.5rem;
  }
  
  .impact-number {
    font-size: 2.5rem;
  }
  
  .impact-label {
    font-size: 0.9rem;
  }
  
  .impact-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .impact-stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .impact-stat-item {
    width: 100%;
    max-width: 280px;
  }
}
/* ========================================
   CURRENCY SELECTOR STYLES
   ======================================== */

.currency-section {
  margin-bottom: 1.5rem;
}

.currency-section label {
  display: block;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.75rem;
}

.currency-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.currency-btn {
  flex: 1;
  min-width: 120px;
  background: #FEFAE0;
  border: 2px solid #EDE2CE;
  padding: 12px 16px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--deep-green);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.currency-btn i {
  font-size: 1rem;
}

.currency-btn:hover {
  border-color: var(--harvest-gold);
  transform: translateY(-2px);
}

.currency-btn.active {
  background: var(--harvest-gold);
  border-color: var(--harvest-gold);
  color: var(--deep-green);
}

/* Responsive Currency Buttons */
@media (max-width: 640px) {
  .currency-buttons {
    flex-direction: column;
  }
  
  .currency-btn {
    width: 100%;
  }
}

/* ========================================
   PAGE HERO (GREEN GRADIENT BACKGROUND)
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  padding: 80px 0 60px;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero h1 span {
  color: var(--harvest-gold);
}

.page-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 60px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .page-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* ========================================
   PAGE HERO (GREEN BACKGROUND)
   ======================================== */

.programs-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}
.programs-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.programs-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.impact-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}

.impact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.impact-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.about-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.get-involved-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}
.get-involved-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.get-involved-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

.contact-hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #2F5E3A 100%);
  text-align: center;
  color: white;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Flask + Paystack donation fields */
.donor-section {
  margin: 22px 0;
}

.donor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.donor-input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid rgba(31, 79, 43, 0.22);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  color: var(--charcoal-soft);
  outline: none;
  transition: var(--transition-smooth);
}

.donor-input:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 4px rgba(31, 79, 43, 0.08);
}

.field-help {
  display: block;
  margin-top: 8px;
  color: rgba(47, 62, 46, 0.72);
  line-height: 1.4;
}

.toast-msg {
  position: fixed;
  right: 24px;
  bottom: 24px;
  max-width: min(420px, calc(100vw - 48px));
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  font-weight: 700;
}

.donate-submit-btn:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .donor-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   MOBILE RESPONSIVE FIXES
================================ */

@media (max-width: 900px) {
  .nav-flex {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .donation-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .donation-info,
  .donation-form {
    width: 100%;
  }

  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amount-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 92%;
    max-width: 100%;
  }

  .navbar {
    padding: 12px 0;
  }

  .logo-container {
    justify-content: center;
    text-align: center;
  }

  .site-logo {
    width: 50px;
    height: 50px;
  }

  .logo-container h1 {
    font-size: 1.4rem;
  }

  .logo-container p {
    font-size: 0.7rem;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .nav-links a {
    font-size: 13px;
    padding: 6px 8px;
  }

  .btn-outline {
    padding: 7px 14px !important;
  }

  .donation-hero {
    padding: 60px 0 35px;
  }

  .donation-hero h1 {
    font-size: 2rem;
  }

  .donation-hero p {
    font-size: 1rem;
  }

  .donation-main {
    padding: 40px 0;
  }

  .donation-wrapper {
    display: block;
  }

  .donation-info,
  .donation-form {
    padding: 24px 18px;
    margin-bottom: 25px;
    border-radius: 22px;
  }

  .donation-info h2,
  .donation-form h3 {
    font-size: 1.6rem;
  }

  .amount-buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .amount-btn {
    width: 100%;
    font-size: 13px;
    padding: 11px 8px;
  }

  .custom-amount-input,
  .donor-input {
    width: 100%;
    font-size: 15px;
  }

  .payment-methods-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .payment-card {
    min-height: 95px;
    padding: 12px 8px;
  }

  .payment-card i {
    font-size: 1.5rem;
  }

  .payment-card span {
    font-size: 13px;
  }

  .donate-submit-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
  }
}

@media (max-width: 420px) {
  .amount-buttons,
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }

  .donation-info,
  .donation-form {
    padding: 20px 15px;
  }

  .donation-hero h1 {
    font-size: 1.8rem;
  }

  .info-item,
  .anonymous-note,
  .impact-badge {
    flex-direction: column;
    align-items: flex-start;
  }
}