﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@500;600;700&display=swap');

:root {
  --green-500: #63c333;
  --green-700: #4aa421;
  --green-900: #2d5e10;
  --green-soft: #f2faed;
  --gray-25: #fbfcfa;
  --gray-50: #f4f6f2;
  --gray-100: #e8ede3;
  --gray-200: #dce4d2;
  --gray-300: #c8d2bb;
  --gray-500: #5f6c58;
  --gray-700: #2f392a;
  --gray-900: #1f261b;
  --white: #ffffff;
  --danger: #c64234;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;

  --shadow-soft: 0 8px 24px rgba(25, 47, 12, 0.06);
  --shadow-card: 0 10px 22px rgba(24, 41, 13, 0.08);
  --container: min(1460px, calc(100% - clamp(1rem, 2.8vw, 3.2rem)));
}

/* Alias for a non-existent Flaticon class requested in markup */
.fi-ts-volunteer-vest:before {
  content: "\f7f5";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: clamp(15px, 0.2vw + 14px, 18px);
  color: var(--gray-900);
  background: #f0f2ed;
  line-height: 1.56;
}

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(2.2rem, 4.4vw, 3.8rem) 0;
}

.section-muted {
  background: var(--gray-50);
}

.section-title {
  margin: 0;
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: clamp(1.34rem, 2.7vw, 2.15rem);
  line-height: 1.25;
}

.section-subtitle {
  margin-top: var(--space-3);
  color: var(--gray-500);
  max-width: 64ch;
  font-size: 0.98rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--green-900);
  background: var(--green-soft);
  border: 1px solid rgba(74, 164, 33, 0.24);
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: var(--space-3);
  top: var(--space-3);
  z-index: 160;
  background: var(--green-900);
  color: var(--white);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-100);
  backdrop-filter: blur(8px);
}

.site-header.scrolled {
  box-shadow: 0 6px 16px rgba(21, 33, 12, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: clamp(62px, 7vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.brand-text span {
  font-size: 0.66rem;
  color: var(--gray-500);
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

.nav-panel {
  position: fixed;
  inset: 64px 0 auto;
  transform: translateY(-125%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  padding: var(--space-3);
}

.nav-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.22rem;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: block;
  padding: 0.56rem 0.68rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gray-700);
}

.has-submenu > a {
  padding-right: 1.45rem;
}

.has-submenu > a::after {
  content: '▾';
  position: absolute;
  right: 0.56rem;
  top: 50%;
  transform: translateY(-48%);
  font-size: 0.68rem;
  line-height: 1;
  color: var(--gray-500);
  transition: transform 0.2s ease, color 0.2s ease;
}

.has-submenu:hover > a::after,
.has-submenu:focus-within > a::after {
  transform: translateY(-48%) rotate(180deg);
  color: var(--green-700);
}

.submenu {
  list-style: none;
  margin: 0.22rem 0 0;
  margin-left: 0.5rem;
  padding: 0.34rem;
  display: grid;
  gap: 0.16rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.submenu a {
  padding: 0.42rem 0.52rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
}

.nav-list a:hover,
.nav-list a.active {
  background: var(--green-soft);
  color: var(--green-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch button {
  border: 0;
  background: transparent;
  padding: 0.32rem 0.56rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--green-900);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.79rem;
  padding: 0.6rem 1rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(120deg, var(--green-700), var(--green-500));
  color: var(--white);
  box-shadow: 0 8px 16px rgba(68, 152, 31, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--green-900);
  border: 1px solid rgba(45, 94, 16, 0.35);
}

.btn-soft {
  background: var(--green-soft);
  color: var(--green-900);
  border: 1px solid rgba(74, 164, 33, 0.26);
}

.btn-block {
  width: 100%;
}

main {
  background: var(--white);
  border-radius: 0;
}

.hero {
  position: relative;
  min-height: clamp(420px, 74vh, 680px);
  display: grid;
  align-items: end;
  background-image: linear-gradient(95deg, rgba(18, 39, 8, 0.78), rgba(18, 39, 8, 0.33) 55%, rgba(18, 39, 8, 0.12)),
    url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--gray-100);
}

.hero-content {
  color: var(--white);
  padding: var(--space-12) 0 var(--space-10);
}

.hero h1 {
  margin: var(--space-3) 0;
  max-width: 18ch;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.12;
}

.hero p {
  margin: 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.hero-ctas {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-facts {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  max-width: 690px;
}

.hero-fact {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
}

.hero-fact strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.hero-fact span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.9);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-4);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.highlight-box,
.contact-card,
.subject-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: var(--space-5);
}

.card-flat {
  box-shadow: none;
}

.highlight-box,
.contact-card,
.subject-card {
  padding: var(--space-5);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-grid;
  place-content: center;
  margin-bottom: var(--space-2);
  background: var(--green-soft);
  color: var(--green-900);
  border: 1px solid rgba(74, 164, 33, 0.2);
}

.icon-circle svg {
  width: 21px;
  height: 21px;
}

.values-card h3,
.stat-card h3,
.project-card h3,
.option-card h3,
.subject-card h3 {
  margin: 0 0 0.24rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
}

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

.values-grid {
  margin-top: 1rem;
}

.values-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #335f1f, #4aa421);
  box-shadow: 0 8px 18px rgba(30, 58, 16, 0.24);
}

.values-card .icon-circle {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-2);
  background: transparent;
  border: 0;
  color: var(--white);
}

.values-card .icon-circle i {
  font-size: 1.9rem;
  line-height: 1;
  display: inline-block;
}

.values-card h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--white);
}

.values-card p,
.project-card p,
.option-card p,
.subject-card p,
.timeline p,
.copy-muted {
  margin: 0;
  color: var(--gray-500);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.stat-card {
  text-align: center;
  background: #fff;
  border: 1px solid var(--gray-100);
}

.stat-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  color: var(--green-900);
  line-height: 1.1;
}

.map-layout {
  display: grid;
  gap: var(--space-5);
}

.world-map {
  background: #f9fbf7;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.world-map svg {
  width: 100%;
  height: auto;
}

#ihr-world-map {
  width: 100%;
  height: 360px;
}

.jvm-region {
  stroke: #ffffff;
  stroke-width: 0.8;
}

.continent {
  fill: #e2ead8;
}

.map-point {
  fill: var(--green-500);
  stroke: var(--white);
  stroke-width: 2;
  transition: transform 0.2s ease, fill 0.2s ease;
  transform-origin: center;
}

.map-point.active,
.map-point:hover {
  fill: var(--danger);
  transform: scale(1.12);
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.country-chip {
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.36rem 0.68rem;
  cursor: pointer;
}

.country-chip.active,
.country-chip:hover {
  background: var(--green-soft);
  color: var(--green-900);
  border-color: rgba(74, 164, 33, 0.45);
}

.country-list-styled {
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #fbfcfa, #f3f8ee);
  border: 1px solid var(--gray-100);
}

.country-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.country-metric {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: #f8fbf5;
  padding: 0.7rem 0.8rem;
}

.country-metric strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  color: var(--green-900);
  font-size: 1.25rem;
  line-height: 1.1;
}

.country-metric span {
  color: var(--gray-500);
  font-size: 0.82rem;
}

.video-placeholder {
  border-radius: var(--radius-md);
  min-height: 250px;
  display: block;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(17, 37, 8, 0.8), rgba(45, 94, 16, 0.5)),
    url('https://images.unsplash.com/photo-1629904853893-c2c8981a1dc5?auto=format&fit=crop&w=1600&q=80') center/cover;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.video-embed {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.qa-video {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.reel-embed {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin: 1rem auto 0;
  aspect-ratio: 9 / 16;
  border: 0;
  border-radius: var(--radius-md);
  background: #000;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.2rem;
  margin: 0 auto 0.7rem;
}

.instagram-widget {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  background:
    radial-gradient(circle at top right, rgba(99, 195, 51, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfdfb 0%, #f5f8f1 100%);
  box-shadow: var(--shadow-soft);
  padding: 0.75rem;
}

.lightwidget-widget {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  overflow: hidden;
  background: transparent;
}

.newsletter {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #1d3910, #316816);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.newsletter p {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  margin-top: var(--space-4);
  display: grid;
  gap: 0.56rem;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.62rem 0.74rem;
  font: inherit;
  font-size: 0.9rem;
  background: var(--white);
}

.newsletter .input {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.newsletter .input::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  color: var(--gray-700);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-grid h3 {
  margin: 0 0 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.footer-links,
.footer-social,
.footer-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.footer-links a,
.footer-social a {
  color: #5d6a57;
  font-size: 0.85rem;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--green-900);
}

.footer-bottom {
  margin-top: var(--space-6);
  border-top: 1px solid var(--gray-100);
  padding-top: var(--space-3);
  font-size: 0.77rem;
  color: #75826f;
}

.page-hero {
  border-bottom: 1px solid var(--gray-100);
  background: linear-gradient(180deg, #fbfcfa 0%, #f7faf4 100%);
  padding: var(--space-10) 0 var(--space-8);
}

.page-hero h1 {
  margin: var(--space-3) 0 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.5rem, 3.8vw, 2.3rem);
}

.page-hero p {
  margin-top: var(--space-3);
  max-width: 62ch;
  color: var(--gray-500);
}

.timeline {
  border-left: 2px solid rgba(74, 164, 33, 0.32);
  padding-left: var(--space-4);
  display: grid;
  gap: var(--space-4);
}

.timeline-item h3 {
  margin: 0 0 0.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

.option-card {
  position: relative;
  overflow: hidden;
}

.option-card::after {
  content: '';
  position: absolute;
  right: -28px;
  top: -28px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 195, 51, 0.19), transparent 68%);
}

.impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.impact-list li {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.54rem 0.65rem;
  border-radius: 10px;
  background: #f8fbf5;
  border: 1px solid var(--gray-100);
  font-size: 0.88rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-700);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.project-card {
  display: grid;
  gap: 0.74rem;
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.meta-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--gray-500);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-900);
  background: var(--green-soft);
  border: 1px solid rgba(74, 164, 33, 0.22);
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
}

.subject-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.callout {
  border-radius: var(--radius-md);
  background: linear-gradient(138deg, var(--green-900), #3f831e);
  color: var(--white);
  padding: var(--space-6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.callout p {
  color: rgba(255, 255, 255, 0.92);
}

.contact-grid {
  display: grid;
  gap: var(--space-4);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
}

.form-grid {
  display: grid;
  gap: var(--space-3);
}

.form-grid label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.86rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.note {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.form-status {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: var(--gray-700);
}

.form-status[data-state='success'] {
  color: var(--green-700);
}

.form-status[data-state='error'] {
  color: var(--danger);
}

.newsletter .form-status {
  color: rgba(255, 255, 255, 0.88);
}

.newsletter .form-status[data-state='success'] {
  color: #d7f7c3;
}

.newsletter .form-status[data-state='error'] {
  color: #ffd0cb;
}

.floating-donate {
  display: none !important;
}

.whatsapp-btn {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.chatbot-wrap {
  position: fixed;
  right: 14px;
  bottom: 68px;
  z-index: 98;
}

.chatbot-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--green-900);
  color: var(--white);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  box-shadow: var(--shadow-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.chatbot-toggle::before {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.5 2h5'/%3E%3Cpath d='M12 2v3'/%3E%3Crect x='4' y='6' width='16' height='13' rx='4'/%3E%3Ccircle cx='9' cy='12' r='1.2' fill='%23ffffff'/%3E%3Ccircle cx='15' cy='12' r='1.2' fill='%23ffffff'/%3E%3Cpath d='M9 16h6'/%3E%3Cpath d='M4 10H2.5'/%3E%3Cpath d='M21.5 10H20'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(360px, calc(100vw - 1rem));
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  background: var(--white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chatbot-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: var(--green-900);
}

.chatbot-body {
  padding: var(--space-3);
  display: grid;
  gap: 0.52rem;
  max-height: 340px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(99, 195, 51, 0.08), transparent 34%),
    linear-gradient(180deg, #fcfdfb 0%, #f7faf4 100%);
}

.chatbot-bubble {
  background: #f7faf4;
  border: 1px solid var(--gray-100);
  padding: 0.65rem;
  border-radius: 10px;
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.chatbot-bubble-assistant {
  justify-self: start;
  max-width: 92%;
}

.chatbot-bubble-user {
  justify-self: end;
  background: #eaf6e2;
  border-color: rgba(74, 164, 33, 0.25);
  color: var(--green-900);
  max-width: 92%;
}

.chatbot-footer {
  border-top: 1px solid var(--gray-100);
  padding: var(--space-3);
  background: #ffffff;
}

.chatbot-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.chatbot-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 164, 33, 0.3);
  border-radius: 999px;
  background: #f7faf4;
  color: var(--green-900);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.26rem 0.56rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.chatbot-quick-link:hover {
  background: var(--green-soft);
  border-color: rgba(74, 164, 33, 0.52);
}

button.chatbot-quick-link {
  font-family: inherit;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.42rem;
}

.chatbot-input {
  min-height: 40px;
}

.chatbot-response-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.chatbot-response-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
}

.chatbot-form .btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.sticky-donate-mobile {
  display: none !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: min(440px, calc(100% - 1rem));
  z-index: 97;
}

.design-system-grid {
  display: grid;
  gap: var(--space-4);
}

.palette {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
}

.color-swatch {
  border-radius: 10px;
  min-height: 88px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.62rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.2rem;
  font-size: 0.75rem;
}

.color-swatch.light {
  color: var(--gray-900);
}

.color-swatch.dark {
  color: var(--white);
}

/* Home-focused blocks to match provided layout */
.home-about {
  display: grid;
  gap: var(--space-4);
  align-items: center;
}

.home-about-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  min-height: 230px;
}

.home-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-band {
  background: #f6f8f4;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.impact-band .section {
  padding: var(--space-10) 0;
}

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

.impact-stats {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6) var(--space-4);
}

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

.impact-number {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 4.1vw, 2.35rem);
  line-height: 1.08;
  color: var(--green-900);
  font-weight: 700;
}

.impact-label {
  margin: 0.28rem 0 0;
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Donate page widget */
.donate-shell {
  display: grid;
  gap: var(--space-4);
}

.donate-layout {
  display: grid;
  gap: var(--space-4);
}

.donation-widget {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: var(--space-5);
  height: 100%;
  border-bottom-width: 3px;
  display: flex;
  flex-direction: column;
}

.donate-title {
  margin-top: 0.8rem;
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
}

.donate-subtitle {
  max-width: none;
}

.donate-note {
  margin: var(--space-4) 0 0;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: #f4f9ef;
  border: 1px solid rgba(74, 164, 33, 0.2);
  color: var(--gray-700);
  font-size: 0.86rem;
}

.donate-platforms {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-3);
  flex: 1;
  align-items: stretch;
}

.donate-platform {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
}

.donate-platform::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
}

.platform-cotizup::before {
  background: linear-gradient(90deg, #4aa421, #77cf4e);
}

.platform-paypal::before {
  background: linear-gradient(90deg, #0070ba, #009cde);
}

.platform-helloasso::before {
  background: linear-gradient(90deg, #254f9d, #4f75c0);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.24rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-900);
  background: #edf7e7;
  border: 1px solid rgba(74, 164, 33, 0.24);
}

.platform-cta {
  margin-top: auto;
  align-self: flex-start;
}

.step-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.22rem;
  margin-bottom: var(--space-4);
}

.step-dot {
  height: 5px;
  border-radius: 999px;
  background: var(--gray-100);
}

.step-dot.active {
  background: var(--green-500);
}

.frequency-switch {
  display: inline-flex;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 3px;
  background: #f8faf6;
}

.frequency-switch button {
  border: 0;
  background: transparent;
  color: var(--gray-500);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 0.36rem 0.78rem;
  border-radius: 999px;
}

.frequency-switch button.active {
  background: var(--green-500);
  color: var(--white);
}

.amount-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.amount-chip {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  padding: 0.52rem 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gray-700);
  text-align: center;
}

.amount-chip.active {
  border-color: rgba(74, 164, 33, 0.45);
  background: var(--green-soft);
  color: var(--green-900);
}

.custom-amount {
  margin-top: var(--space-3);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}

.method-grid {
  margin-top: var(--space-4);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.method-pill {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.56rem;
  background: var(--white);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
}

.bank-box {
  margin-top: var(--space-4);
  border: 1px dashed var(--gray-300);
  border-radius: 10px;
  padding: 0.58rem 0.66rem;
  background: #fafcf8;
  font-size: 0.74rem;
  color: var(--gray-500);
}

.trust-stack {
  display: grid;
  gap: var(--space-4);
}

.trust-item {
  padding: var(--space-5);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* academy style closer to sample */
.academy-hero-center {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}

.academy-hero-logo {
  width: 110px;
  margin-inline: auto;
  margin-bottom: 0.8rem;
}

.course-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
}

.course-box {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

/* contact-like sample */
.contact-shell {
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
}

.contact-shell .contact-card {
  height: 100%;
}

.contact-form {
  height: 100%;
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.contact-form .btn {
  margin-top: 0;
  justify-self: start;
}

.contact-form textarea {
  min-height: 285px;
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  height: 300px;
  position: relative;
}

.contact-map iframe,
.contact-map img {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.section-donate-focus {
  background:
    radial-gradient(circle at 10% 16%, rgba(99, 195, 51, 0.16), transparent 42%),
    radial-gradient(circle at 84% 84%, rgba(45, 94, 16, 0.14), transparent 46%),
    linear-gradient(180deg, #f7fbf3 0%, #edf5e7 100%);
  border-top: 1px solid rgba(74, 164, 33, 0.22);
}

.donate-focus-shell {
  display: grid;
  gap: var(--space-4);
  align-items: stretch;
}

.donate-focus-main {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(126deg, #1f4510, #356f1a 56%, #4aa421);
  box-shadow: 0 14px 34px rgba(31, 69, 16, 0.28);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.donate-focus-main .section-title {
  color: var(--white);
}

.donate-focus-text {
  margin: var(--space-3) 0 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.9);
}

.donate-focus-actions {
  margin-top: auto;
  padding-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.donate-focus-actions .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.donate-focus-grid {
  display: grid;
  gap: var(--space-3);
}

.donate-focus-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-soft);
}

.donate-focus-card h3 {
  margin: 0 0 0.32rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  color: var(--green-900);
}

.donate-focus-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.89rem;
}

@media (min-width: 760px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subject-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .map-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
  }

  .form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-about {
    grid-template-columns: 1.1fr 1fr;
  }

  .donate-layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .contact-shell {
    grid-template-columns: 1.2fr 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .donate-platforms {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }

  .donate-focus-shell {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: stretch;
  }

  .donate-focus-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  body {
    padding: clamp(8px, 0.9vw, 14px);
  }

  main,
  .site-header,
  .site-footer {
    width: calc(100% - clamp(12px, 1.2vw, 22px));
    max-width: 1860px;
    margin-inline: auto;
  }

  .site-header {
    border-radius: 14px 14px 0 0;
  }

  .site-footer {
    border-radius: 0 0 14px 14px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    inset: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 0.16rem;
  }

  .nav-list a {
    padding: 0.44rem 0.58rem;
    font-size: 0.76rem;
  }

  .has-submenu > a {
    padding-right: 1.3rem;
  }

  .has-submenu > a::after {
    right: 0.45rem;
    font-size: 0.62rem;
  }

  .submenu {
    position: absolute;
    top: calc(100% + 0.24rem);
    left: 0;
    min-width: 230px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: var(--shadow-soft);
    z-index: 130;
  }

  .has-submenu:hover > .submenu,
  .has-submenu:focus-within > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .submenu a {
    padding: 0.4rem 0.5rem;
    font-size: 0.72rem;
  }

  .brand-text strong {
    max-width: 250px;
    font-size: 0.74rem;
  }

  .hero-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .projects-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .container {
    width: min(1600px, calc(100% - 3rem));
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: var(--space-5);
  }
}

@media (max-width: 979px) {
  .header-actions .btn-primary {
    display: none;
  }

  body {
    background: var(--white);
  }

  main,
  .site-header,
  .site-footer {
    max-width: none;
    margin-inline: 0;
  }

  .container {
    width: min(100%, calc(100% - 1rem));
  }

  .section {
    padding: clamp(1.8rem, 7vw, 2.8rem) 0;
  }
}

@media (max-width: 840px) {
  .floating-donate {
    display: none;
  }

  .sticky-donate-mobile {
    display: block;
  }

  .chatbot-wrap {
    bottom: 62px;
  }

  .course-offers {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: var(--space-10) 0 var(--space-8);
  }

  .hero h1 {
    max-width: 16ch;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 0.75rem));
  }

  .section {
    padding: 1.5rem 0;
  }

  #ihr-world-map {
    height: 280px;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .instagram-widget {
    padding: 0.45rem;
  }

  .lightwidget-widget {
    min-height: 360px;
  }

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

  .method-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
