/* Root variables and base styles */

:root {
    --color-primary: #0f7b48;
    --color-primary-dark: #0a5a32;
    --color-secondary: #ffffff;
    --color-bg: #f6f8f5;
    --color-bg-alt: #ffffff;
    --color-accent: #e8c26a;
    --color-accent-soft: #f6e6b8;
    --color-text: #1c1f1a;
    --color-muted: #6b7464;
    --color-border: #e0e5dd;
  
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 999px;
  
    --header-height: 72px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
  }
  
  /* Layout helpers */
  
  .site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  main {
    flex: 1 0 auto;
  }
  
  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Typography */
  
  h1, h2, h3, h4 {
    font-weight: 600;
    color: #122016;
  }
  
  h1 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 0.75rem;
  }
  
  h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 0.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
  }
  
  h4 {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
  }
  
  p {
    margin: 0 0 0.75rem;
    color: var(--color-muted);
  }
  
  /* Links & Buttons */
  
  a {
    color: var(--color-primary);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--color-primary-dark);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 123, 72, 0.22);
  }
  
  .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(15, 123, 72, 0.28);
  }
  
  .btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(15, 123, 72, 0.4);
  }
  
  .btn-outline:hover {
    background: rgba(15, 123, 72, 0.08);
  }

/* White outline button (used on dark/hero backgrounds) */
.btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}
  
  .btn-gold {
    background: linear-gradient(135deg, #f2d58b, #e4b957);
    color: #3b3110;
    box-shadow: 0 10px 20px rgba(185, 143, 46, 0.25);
  }
  
  .btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(185, 143, 46, 0.3);
  }
  
  .btn-small {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
  }
  
  .btn-full {
    width: 100%;
  }
  
  .text-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-primary-dark);
    position: relative;
  }
  
  .text-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 999px;
    transform-origin: left;
    transform: scaleX(0.4);
    opacity: 0.6;
    transition: transform 0.15s ease, opacity 0.15s ease;
  }
  
  .text-link:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }
  
  /* Header / Navbar */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 248, 245, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(224, 229, 221, 0.7);
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }
  
  .logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    background: radial-gradient(circle at 20% 20%, #fbeab8, #e5c266);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #3b3110;
  }
  
  .logo-text {
    font-weight: 600;
    letter-spacing: 0.02em;
    font-size: 1.1rem;
    color: #122016;
  }
  
  .logo-text span {
    color: var(--color-primary);
  }
  
  /* Nav */
  
  .nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  
  .nav-links a {
    font-size: 0.92rem;
    color: var(--color-muted);
    padding: 0.35rem 0.4rem;
    border-radius: 999px;
  }
  
  .nav-links a.active,
  .nav-links a:hover {
    color: #122016;
    background-color: rgba(15, 123, 72, 0.08);
  }
  
  .nav-donate-btn {
    display: inline-flex;
  }
  
  /* Mobile nav toggle */
  
  .nav-toggle {
    background: none;
    border: none;
    padding: 0;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  
  .nav-toggle-bar {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background-color: #263022;
  }
  
  /* Hero (Home) */
  
  .hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(135deg, rgba(10, 38, 22, 0.9), rgba(15, 123, 72, 0.6)), url("../images/hero.jpg");
    background-size: cover;
    background-position: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(248, 231, 180, 0.35), transparent 50%);
    mix-blend-mode: screen;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 3rem;
    padding: 4rem 1.5rem 3.5rem;
  }
  
  .hero-text {
    max-width: 560px;
  }
  
  .hero-kicker {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f8f2df;
    margin-bottom: 0.7rem;
  }
  
  .hero h1 {
    color: #fffdf5;
  }
  
  .hero-subtitle {
    color: #f3efe4;
    font-size: 0.98rem;
    max-width: 32rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
    margin-bottom: 0.7rem;
  }
  
  .hero-note {
    font-size: 0.85rem;
    color: #f8f1de;
  }
  
  .hero-highlight-card {
    padding: 1.5rem 1.4rem;
    border-radius: var(--radius-lg);
    background: rgba(246, 244, 235, 0.95);
    box-shadow: var(--shadow-soft);
    color: #1f2718;
    align-self: center;
  }
  
  .hero-highlight-card h2 {
    margin-bottom: 0.3rem;
  }
  
  .hero-highlight-card p {
    color: #5b6756;
  }
  
  .hero-highlight-stats {
    display: flex;
    gap: 1.6rem;
    margin-top: 1rem;
    margin-bottom: 0.9rem;
  }
  
  .hero-highlight-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #7a846f;
  }
  
  .hero-highlight-stats .stat-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: #122016;
  }
  
  .hero-link {
    font-size: 0.88rem;
  }
  
  /* Sections */
  
  .section {
    padding: 3.5rem 0;
  }
  
  .section-alt {
    background-color: var(--color-bg-alt);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.2rem;
  }
  
  .section-header p {
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .section-header-left {
    text-align: left;
  }
  
  .section-footer-link {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  /* Impact grid */
  
  .impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
  
  .impact-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.3rem;
    box-shadow: var(--shadow-soft);
  }
  
  .impact-icon {
    font-size: 1.8rem;
    display: inline-block;
    margin-bottom: 0.4rem;
  }
  
  .impact-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #122016;
    margin-bottom: 0.25rem;
  }
  
  /* Campaign cards */
  
  .campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
  }
  
  .campaign-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
  }
  
  .campaign-image {
    height: 160px;
    background-size: cover;
    background-position: center;
  }
  
  .campaign-body {
    padding: 1.4rem 1.4rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .campaign-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #eef2e9;
    overflow: hidden;
    margin-top: 0.25rem;
  }
  
  .campaign-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-primary), #9bd08f);
    transition: width 1.2s ease-out;
  }
  
  .campaign-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--color-muted);
  }
  
  .campaign-list {
    padding-left: 1.2rem;
    margin: 0;
    color: var(--color-muted);
    font-size: 0.9rem;
  }
  
  /* About preview */
  
  .about-preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 2.5rem;
    align-items: flex-start;
  }
  
  .about-preview-highlights {
    display: grid;
    gap: 1rem;
  }
  
  .highlight-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid rgba(224, 229, 221, 0.8);
  }
  
  .highlight-title {
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  /* Testimonials slider */
  
  .testimonials-slider {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 2rem 2.2rem;
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }
  
  .testimonial-slide {
    display: none;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  .testimonial-quote {
    font-size: 0.98rem;
    color: #3a4435;
    margin-bottom: 0.8rem;
  }
  
  .testimonial-name {
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    font-weight: 500;
  }
  
  .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(246, 248, 245, 0.95);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a5545;
  }
  
  .testimonial-nav.prev {
    left: 1rem;
  }
  
  .testimonial-nav.next {
    right: 1rem;
  }
  
  /* CTA section */
  
  .cta-section {
    background: radial-gradient(circle at 20% 0, #fbeab8, transparent 60%), #0d3b26;
    color: #fff;
  }
  
  .cta-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.6rem;
    justify-content: space-between;
  }
  
  .cta-text h2 {
    color: #fffdf2;
  }
  
  .cta-text p {
    max-width: 500px;
    color: #f5efe0;
  }
  
  /* Page heroes */
  
  .page-hero {
    padding: 4rem 0 2.5rem;
    background: linear-gradient(135deg, rgba(15, 123, 72, 0.1), rgba(204, 177, 100, 0.12));
    border-bottom: 1px solid rgba(224, 229, 221, 0.8);
  }
  
  .page-hero h1 {
    margin-bottom: 0.4rem;
  }
  
  .page-hero p {
    max-width: 520px;
  }
  
  /* About page grids */
  
  .about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
  
  /* Values */
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
  }
  
  .value-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.2rem;
    box-shadow: var(--shadow-soft);
  }
  
  /* Lists */
  
  .checklist {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .checklist li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    color: var(--color-muted);
    font-size: 0.95rem;
  }
  
  .checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-size: 0.85rem;
    transform: translateY(0.1rem);
  }
  
  .simple-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--color-muted);
    font-size: 0.95rem;
  }
  
  /* Forms */
  
  form {
    width: 100%;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #1e261a;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
    background-color: #ffffff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px rgba(15, 123, 72, 0.1);
    background-color: #fbfdf9;
  }
  
  textarea {
    resize: vertical;
  }
  
  .form-note {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: -0.25rem;
    margin-bottom: 0.9rem;
  }
  
  .form-success-message {
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    background: rgba(15, 123, 72, 0.07);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    margin-top: 0.8rem;
    border: 1px solid rgba(15, 123, 72, 0.18);
  }
  
  input.error,
  textarea.error,
  select.error {
    border-color: #d9534f;
    background: #fff4f4;
  }
  
  .error-message {
    font-size: 0.8rem;
    color: #d9534f;
    margin-top: 0.25rem;
  }
  
  /* Donation / volunteer layout */
  
  .donation-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.5rem;
  }
  
  .donation-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-soft);
  }
  
  .amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
  }
  
  .amount-btn {
    border-radius: 999px;
    border: 1px solid var(--color-border);
    padding: 0.4rem 0.9rem;
    font-size: 0.86rem;
    background: #f7faf4;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  }
  
  .amount-btn.active,
  .amount-btn:hover {
    background: rgba(15, 123, 72, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
  }
  
  .donation-aside {
    align-self: flex-start;
  }

  /* Manual donation UI (manual copy + open app) */

  .steps-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
  }

  .step-item {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.1rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
  }

  .step-number {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(15, 123, 72, 0.08);
    border: 1px solid rgba(15, 123, 72, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #0f5a36;
    flex: 0 0 auto;
  }

  .step-item h3 {
    margin: 0 0 0.25rem;
    font-size: 1.06rem;
  }

  .step-item p {
    margin: 0;
  }

  .donation-wallet-grid,
  .donation-bank-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .donation-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(224, 229, 221, 0.85);
    position: relative;
    overflow: hidden;
  }

  .donation-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.25rem;
  }

  .donation-card-title {
    margin: 0;
  }

  .donation-feature-pill {
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(232, 194, 106, 0.18);
    border: 1px solid rgba(232, 194, 106, 0.55);
    color: #7a5b10;
    font-weight: 600;
    white-space: nowrap;
  }

  .donation-card-featured {
    border-color: rgba(232, 194, 106, 0.85);
  }

  .donation-card-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(232, 194, 106, 0.25), transparent 55%);
    pointer-events: none;
  }

  .donation-label {
    margin-top: 0.85rem;
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 500;
  }

  .donation-value {
    margin: 0.25rem 0 0;
    font-weight: 600;
    color: #122016;
  }

  .donation-code {
    margin-top: 0.35rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.98rem;
    background: rgba(15, 123, 72, 0.06);
    border: 1px dashed rgba(15, 123, 72, 0.28);
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    word-break: break-word;
  }

  .donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
  }

  .copy-feedback {
    margin: 0.9rem 0 0;
    font-size: 0.9rem;
    color: var(--color-primary-dark);
    min-height: 1.2em;
  }
  
  /* Contact layout */
  
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
    gap: 2.5rem;
  }
  
  .contact-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
  }
  
  .contact-list li {
    margin-bottom: 0.7rem;
    font-size: 0.94rem;
  }
  
  .contact-label {
    font-weight: 500;
    margin-right: 0.3rem;
  }
  
  /* Gallery */
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: zoom-in;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.04);
  }
  
  /* Lightbox */
  
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 10, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
  }
  
  .lightbox.open {
    display: flex;
  }
  
  .lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
  }
  
  #lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  }
  
  .lightbox-close {
    position: absolute;
    top: -40px;
    right: -6px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Blog cards */
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
  }
  
  .blog-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
  }
  
  .blog-image {
    height: 180px;
    background-size: cover;
    background-position: center;
  }
  
  .blog-body {
    padding: 1.5rem 1.4rem;
  }
  
  .blog-meta {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
  }
  
  /* Footer */
  
  .site-footer {
    background: #07130c;
    color: #d8ddcf;
    padding-top: 2.8rem;
    margin-top: 2.5rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .site-footer h3,
  .site-footer h4 {
    color: #f5f8f0;
  }
  
  .site-footer p {
    color: #c1c8b8;
    font-size: 0.9rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
    color: #d8ddcf;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-newsletter input {
    background: rgba(10, 18, 12, 0.85);
    border-color: rgba(145, 154, 136, 0.7);
    color: #f2f4ec;
  }
  
  .footer-note {
    font-size: 0.78rem;
    margin-top: 0.4rem;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(71, 81, 74, 0.8);
    padding: 0.9rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: #a2ab9a;
  }
  
  /* WhatsApp floating button */
  
  .whatsapp-float {
    position: fixed;
    right: 1.3rem;
    bottom: 1.3rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: #22c35e;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(17, 102, 50, 0.45);
  }
  
  .whatsapp-float span {
    font-weight: 500;
  }
  
/* Floating call button (mobile only) */
.call-float {
  position: fixed;
  right: 1.3rem;
  bottom: 4.4rem;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #ffffff;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(15, 123, 72, 0.35);
}

.call-float span {
  font-weight: 500;
}

  /* Responsive styles */
  
  @media (max-width: 960px) {
    .hero-content {
      grid-template-columns: minmax(0, 1.2fr);
    }
  
    .hero-highlight-card {
      margin-top: 1rem;
    }
  
    .impact-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .campaigns-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .about-preview-grid,
    .about-grid,
    .values-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .donation-layout,
    .contact-layout {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .nav-toggle {
      display: inline-flex;
      flex: 0 0 auto;
    }

    .nav-donate-btn {
      display: none;
    }
  
    .nav-links {
      position: fixed;
      inset: var(--header-height) 0 auto 0;
      background: rgba(246, 248, 245, 0.98);
      flex-direction: column;
      align-items: flex-start;
      padding: 0.75rem 1.5rem 1rem;
      transform: translateY(-120%);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.18s ease, opacity 0.18s ease;
      border-bottom: 1px solid rgba(224, 229, 221, 0.85);
    }
  
    .nav-links.nav-open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .nav-links li {
      width: 100%;
    }
  
    .nav-links a {
      display: block;
      width: 100%;
      padding: 0.5rem 0.1rem;
    }
  
    /* Keep donate link inside the menu list (already present as "Donate") */
  }
  
  @media (max-width: 720px) {
    .impact-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .campaigns-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .values-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .gallery-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .blog-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-content {
      padding-top: 3.3rem;
    }
  
    .section {
      padding: 2.6rem 0;
    }
  
    .page-hero {
      padding: 3rem 0 2rem;
    }
  
    .footer-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .cta-container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .whatsapp-float {
      right: 1rem;
      bottom: 1rem;
    }

  .call-float {
    display: inline-flex;
    right: 1rem;
    bottom: 4.1rem;
  }
  }
  
  @media (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-highlight-card {
      padding: 1.3rem 1.25rem;
    }
  }

/* Manual donation responsive layout */

@media (min-width: 720px) {
  .donation-wallet-grid,
  .donation-bank-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .donation-bank-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}