/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: #1C1C1C; background: #fff; line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --green:      #0B3D2E;
  --green-mid:  #1A6B3A;
  --green-soft: #EAF3EE;
  --gold:       #B8950A;
  --gold-light: #F5E9C0;
  --white:      #FFFFFF;
  --off-white:  #F7F8F5;
  --gray-light: #F0F2EF;
  --gray:       #5C6B5E;
  --border:     #D8E4DB;
  --text:       #1C1C1C;
  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow:     0 4px 20px rgba(11,61,46,0.10);
  --shadow-lg:  0 12px 40px rgba(11,61,46,0.14);
  --radius:     8px;
  --radius-lg:  14px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { width: 40px; height: 40px; flex-shrink: 0; }
.nav-logo-text strong { display: block; font-size: 1rem; font-weight: 800; color: var(--green); letter-spacing: -0.3px; }
.nav-logo-text span { font-size: 0.68rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.nav-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 1.5rem;
  gap: 0; box-shadow: var(--shadow);
}
.nav-menu.open { display: flex; }
.nav-menu a { font-size: 0.9rem; font-weight: 500; color: var(--text); padding: 0.75rem 0; border-bottom: 1px solid var(--gray-light); transition: color 0.2s; }
.nav-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.nav-menu a:hover { color: var(--green); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; text-align: center; border-radius: 6px; padding: 0.75rem !important; font-weight: 700 !important; border-bottom: none !important; }
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  margin-top: 68px;
  min-height: 92vh;
  background:
    linear-gradient(to bottom, rgba(5,15,8,0.78) 0%, rgba(10,35,20,0.72) 50%, rgba(5,15,8,0.90) 100%),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1400&auto=format&fit=crop&q=85') center/cover no-repeat;
  display: flex; align-items: flex-end;
  padding: 3rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after { display: none; }
.hero-stats-strip {
  display: flex; flex-direction: column; gap: 0.6rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-item { display: flex; align-items: center; gap: 0.7rem; }
.hero-stat-item strong { color: #A8D5B8; font-size: 1.1rem; font-weight: 800; flex-shrink: 0; }
.hero-stat-item span { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.75rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 20px; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; flex-shrink: 0; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  font-weight: 800; color: var(--white); line-height: 1.15;
  margin-bottom: 1.2rem; letter-spacing: -0.5px;
}
.hero h1 em { color: #A8D5B8; font-style: normal; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--white); color: var(--green);
  padding: 0.85rem 1.8rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: -0.2px;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.9);
  padding: 0.85rem 1.8rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.35);
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
}
.trust-items { display: flex; flex-direction: column; gap: 0.8rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; color: var(--gray); font-weight: 500; }
.trust-item svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; }

/* ===== SECTION COMMONS ===== */
.section { padding: 3rem 1.5rem; }
.section-alt { background: var(--off-white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 1.5rem; }
.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--green-mid);
  margin-bottom: 0.6rem;
}
.section-label::before { content: '— '; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--green); line-height: 1.2; margin-bottom: 0.75rem; }
.section-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.75; max-width: 560px; }

/* ===== CONTEXTE PAKISTAN ===== */
.pak-context {
  display: flex; flex-direction: column; gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.pak-context-item {
  display: flex; align-items: flex-start; gap: 0.7rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.8rem 1rem;
  border-left: 3px solid var(--green-mid);
}
.pak-context-ico { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.pak-context-item strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--green); margin-bottom: 0.2rem; }
.pak-context-item p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

.pak-transparency {
  display: flex; align-items: flex-start; gap: 0.8rem;
  background: var(--gold-light); border: 1px solid #D4B85A;
  border-radius: var(--radius); padding: 0.7rem 0.9rem;
  margin-top: 0.8rem;
}
.pak-transparency-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.pak-transparency strong { display: block; font-size: 0.88rem; font-weight: 700; color: #7A5800; margin-bottom: 0.3rem; }
.pak-transparency p { font-size: 0.82rem; color: #6B4E00; line-height: 1.65; }

@media (min-width: 640px) {
  .pak-context { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ===== MISSION PAKISTAN ===== */
.pak-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pak-card-header {
  background: var(--green);
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.pak-flag { font-size: 1.8rem; }
.pak-card-header h2 { color: var(--white); font-size: 1.1rem; font-weight: 700; line-height: 1.3; }
.pak-card-header p { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin-top: 0.2rem; }
.pak-card-body { padding: 1rem; }

/* Progression */
.prog-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.prog-row span { font-size: 0.82rem; font-weight: 600; color: var(--gray); }
.prog-row strong { font-size: 0.88rem; font-weight: 700; color: var(--gold); }
.prog-track { background: var(--gray-light); border-radius: 50px; height: 8px; overflow: hidden; margin-bottom: 0.9rem; }
.prog-fill { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-mid)); border-radius: 50px; transition: width 1.4s cubic-bezier(.4,0,.2,1); }

/* Stats */
.pak-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.7rem; margin-bottom: 1rem; }
.pak-stat { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.6rem 0.4rem; text-align: center; }
.pak-stat strong { display: block; font-size: 1rem; font-weight: 800; color: var(--green); }
.pak-stat span { font-size: 0.68rem; color: var(--gray); font-weight: 500; margin-top: 0.1rem; display: block; }

/* Kit */
.kit-label { font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.kit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.4rem; margin-bottom: 1rem; }
.kit-row { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.6rem; background: var(--off-white); border-radius: 6px; font-size: 0.78rem; color: var(--text); border: 1px solid var(--border); }
.kit-row .k-ico { font-size: 1rem; flex-shrink: 0; }
.kit-row .k-qty { margin-left: auto; font-size: 0.75rem; color: var(--gray); font-weight: 600; }

/* Globe visuel dans Pakistan */
.kit-visual { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; margin-bottom: 1rem; padding: 0.9rem; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); }
.ring-wrap { position: relative; width: 100px; height: 100px; flex-shrink: 0; }
.ring-svg { width: 100%; height: 100%; }
.ring-bg { fill: none; stroke: var(--border); stroke-width: 9; }
.ring-progress { fill: none; stroke: var(--green-mid); stroke-width: 9; stroke-linecap: round; transform: rotate(-90deg); transform-origin: center; transition: stroke-dashoffset 1.4s cubic-bezier(.4,0,.2,1); }
.ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.ring-num { font-size: 1.3rem; font-weight: 900; color: var(--green); line-height: 1; }
.ring-txt { font-size: 0.68rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.2rem; }
.ring-total { font-size: 0.65rem; color: #aaa; }
.kit-right { text-align: center; width: 100%; }
.fam-title { font-size: 0.8rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.families-grid { display: flex; flex-wrap: wrap; gap: 3px; justify-content: center; margin-bottom: 0.4rem; max-width: 260px; margin-left: auto; margin-right: auto; }
.family-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: background 0.3s, transform 0.2s; }
.family-dot.funded { background: var(--green-mid); transform: scale(1.1); }
.fam-note { font-size: 0.72rem; color: var(--gray); }

.btn-green {
  display: block; background: var(--green); color: var(--white);
  text-align: center; padding: 0.9rem; border-radius: 6px;
  font-weight: 700; font-size: 0.9rem; letter-spacing: -0.2px;
  transition: background 0.2s, transform 0.2s;
}
.btn-green:hover { background: #0a3326; transform: translateY(-1px); }
.pak-note { text-align: center; font-size: 0.78rem; color: var(--gray); margin-top: 0.6rem; }

/* Kit stagger */
.ki { opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease; }
.ki.show { opacity: 1; transform: translateY(0); }
.ki:nth-child(1){transition-delay:.04s}.ki:nth-child(2){transition-delay:.08s}
.ki:nth-child(3){transition-delay:.12s}.ki:nth-child(4){transition-delay:.16s}
.ki:nth-child(5){transition-delay:.20s}.ki:nth-child(6){transition-delay:.24s}
.ki:nth-child(7){transition-delay:.28s}.ki:nth-child(8){transition-delay:.32s}
.ki:nth-child(9){transition-delay:.36s}

/* ===== MISSION ===== */
.mission-pts { display: flex; flex-direction: column; gap: 1rem; }
.mission-pt {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  border-left: 3px solid var(--green-mid);
}
.mission-pt .m-ico { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.mission-pt h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.25rem; }
.mission-pt p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ===== ACTIONS ===== */
.actions-grid { display: flex; flex-direction: column; gap: 0.8rem; }
.action-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.action-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.action-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--green-soft); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.action-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.action-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

/* ===== GLOBE ===== */
.globe-section { background: #071A10; padding: 3rem 1.5rem 2rem; text-align: center; overflow: hidden; }
.globe-section .section-label { color: rgba(255,255,255,0.5); }
.globe-section .section-label::before { content: '— '; }
.globe-section .section-title { color: var(--white); font-size: clamp(1.4rem,3vw,1.9rem); }
.globe-section .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto; font-size: 0.88rem; }
#globeViz { width: 100%; height: 320px; cursor: grab; margin: 1.5rem 0 1rem; }
#globeViz:active { cursor: grabbing; }
.globe-legend { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot.orange { background: #C9922A; }
.legend-dot.green  { background: #4CAF50; }
.globe-info { position: absolute; background: var(--white); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: 0.85rem; box-shadow: var(--shadow-lg); max-width: 220px; text-align: left; z-index: 10; left: 50%; transform: translateX(-50%); bottom: 4rem; border-top: 3px solid var(--green-mid); }
.globe-info-close { position: absolute; top: 0.4rem; right: 0.6rem; background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--gray); }

/* ===== DON ===== */
.don-section { background: var(--green); padding: 3.5rem 1.5rem; }
.don-header { margin-bottom: 2rem; }
.don-header .section-label { color: rgba(255,255,255,0.5); }
.don-header .section-title { color: var(--white); }
.don-header .section-sub { color: rgba(255,255,255,0.65); }
.don-montants { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.7rem; margin-bottom: 1.2rem; }
.don-btn {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius); color: var(--white);
  padding: 0.9rem 0.5rem; font-family: 'Inter', sans-serif;
  cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  transition: all 0.2s;
}
.don-btn .d-amount { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.5px; }
.don-btn .d-desc   { font-size: 0.72rem; opacity: 0.75; font-weight: 500; }
.don-btn:hover, .don-btn.actif { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); }
.don-btn.actif { box-shadow: 0 0 0 2px rgba(255,255,255,0.4); }
.don-custom { margin-bottom: 1.2rem; }
.don-custom label { display: block; color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 500; margin-bottom: 0.5rem; }
.don-custom-row { display: flex; align-items: center; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); padding: 0.6rem 1rem; max-width: 220px; }
.don-custom-row input { background: none; border: none; color: var(--white); font-size: 1rem; font-weight: 700; font-family: 'Inter', sans-serif; outline: none; width: 100%; }
.don-custom-row input::placeholder { color: rgba(255,255,255,0.35); font-weight: 400; }
.don-custom-row span { color: rgba(255,255,255,0.7); font-weight: 600; }
.don-resume { background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 0.75rem 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 1.2rem; }
.don-resume strong { color: #A8D5B8; font-weight: 700; }
.btn-don-blanc {
  display: block; background: var(--white); color: var(--green);
  text-align: center; padding: 0.95rem; border-radius: 6px;
  font-weight: 800; font-size: 0.95rem; letter-spacing: -0.3px;
  margin-bottom: 0.8rem; transition: all 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.btn-don-blanc:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.don-trust { display: flex; flex-direction: column; gap: 0.4rem; }
.don-trust span { font-size: 0.75rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.4rem; }

/* ===== ACTUALITES ===== */
.actu-placeholder { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center; }
.actu-placeholder h3 { font-size: 1rem; font-weight: 700; color: var(--green); margin-bottom: 0.5rem; }
.actu-placeholder p { font-size: 0.85rem; color: var(--gray); }

/* ===== CONTACT ===== */
.contact-infos { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.9rem; }
.c-ico { width: 38px; height: 38px; background: var(--green-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-item strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text); }
.contact-info-item span { font-size: 0.82rem; color: var(--gray); }
.form { display: flex; flex-direction: column; gap: 0.9rem; }
.form-row { display: flex; flex-direction: column; gap: 0.9rem; }
.form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; }
.form input, .form textarea, .form select {
  width: 100%; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  font-size: 0.9rem; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(26,107,58,0.08); }
.form textarea { min-height: 110px; resize: vertical; }
.btn-submit {
  background: var(--green); color: var(--white); border: none;
  border-radius: 6px; padding: 0.9rem; font-size: 0.9rem;
  font-weight: 700; font-family: 'Inter', sans-serif; cursor: pointer;
  width: 100%; transition: background 0.2s, transform 0.2s;
}
.btn-submit:hover { background: #0a3326; transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer { background: #071A10; padding: 3rem 1.5rem 1.5rem; }
.footer-brand { margin-bottom: 1.8rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-logo strong { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.footer-logo span { font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; }
.footer-brand > p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 320px; }
.footer-nav { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.5rem 1.5rem; margin-bottom: 2rem; }
.footer-nav a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; padding: 0.2rem 0; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.2rem; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== NOTIF ===== */
.notif { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; background: var(--white); border-left: 3px solid var(--green-mid); border-radius: var(--radius); padding: 0.9rem 1.2rem; font-size: 0.88rem; font-weight: 600; box-shadow: var(--shadow-lg); display: none; z-index: 9999; }

/* ===== ANIMATIONS ===== */
.fadein { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fadein.visible { opacity: 1; transform: translateY(0); }
.fadein:nth-child(2){transition-delay:.1s}.fadein:nth-child(3){transition-delay:.2s}.fadein:nth-child(4){transition-delay:.3s}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(11,61,46,0.3)} 70%{box-shadow:0 0 0 10px rgba(11,61,46,0)} 100%{box-shadow:0 0 0 0 rgba(11,61,46,0)} }
.btn-primary { animation: pulse 2.5s infinite; }

/* ===== MOBILE SMALL (< 480px) ===== */
@media (max-width: 480px) {
  /* Navbar */
  .navbar { padding: 0 1rem; height: 58px; }
  .navbar .nav-logo-text span { display: none; }
  .navbar .nav-logo svg { width: 34px; height: 34px; }
  .nav-logo-text strong { font-size: 0.9rem; }
  .nav-menu { top: 58px; padding: 1rem; gap: 0; }
  .nav-menu a { font-size: 0.88rem; padding: 0.65rem 0; }

  /* Hero */
  .hero { margin-top: 58px; padding: 2rem 1rem 2.5rem; min-height: auto; }
  .hero h1 { font-size: 1.5rem; margin-bottom: 0.7rem; }
  .hero p { font-size: 0.85rem; margin-bottom: 1.2rem; }
  .hero-eyebrow { font-size: 0.68rem; padding: 0.25rem 0.7rem; margin-bottom: 1rem; }
  .hero-actions { gap: 0.6rem; }
  .btn-primary, .btn-secondary { padding: 0.75rem 1.5rem; font-size: 0.88rem; width: 100%; justify-content: center; }
  .hero-stats-strip { margin-top: 1.5rem; padding-top: 1.2rem; gap: 0.8rem; }
  .hero-stat-item strong { font-size: 1rem; }
  .hero-stat-item span { font-size: 0.75rem; }

  /* Trust bar */
  .trust-bar { padding: 0.9rem 1rem; }
  .trust-item { font-size: 0.76rem; }
  .trust-item svg { width: 15px; height: 15px; }

  /* Sections */
  .section { padding: 2rem 1rem; }
  .section-title { font-size: 1.3rem; }
  .section-sub { font-size: 0.85rem; }

  /* Pakistan */
  .pak-card-header { padding: 1rem 1.2rem; gap: 0.8rem; }
  .pak-flag { font-size: 1.4rem; }
  .pak-card-header h2 { font-size: 0.95rem; }
  .pak-card-header p { font-size: 0.72rem; }
  .pak-card-body { padding: 1rem; }
  .pak-stats { grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
  .pak-stat strong { font-size: 0.88rem; }
  .pak-stat span { font-size: 0.65rem; }
  .kit-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
  .kit-row { font-size: 0.75rem; padding: 0.35rem 0.5rem; }
  .pak-context-item p { font-size: 0.75rem; }
  .ring-wrap { width: 90px; height: 90px; }
  .ring-num { font-size: 1.1rem; }
  .ring-txt { font-size: 0.6rem; }
  .family-dot { width: 8px; height: 8px; }
  .families-grid { gap: 3px; }

  /* Globe */
  #globeViz { height: 260px; }
  .globe-section { padding: 2rem 1rem 1.5rem; }

  /* Don */
  .don-section { padding: 2rem 1rem; }
  .don-section .section-title { font-size: 1.3rem; }
  .don-montants { grid-template-columns: repeat(2,1fr); gap: 0.5rem; }
  .don-btn .d-amount { font-size: 1rem; }
  .don-btn .d-desc { font-size: 0.68rem; }
  .don-btn { padding: 0.75rem 0.4rem; }
  .don-custom-row { max-width: 100%; }
  .btn-don-blanc { padding: 0.85rem; font-size: 0.9rem; }

  /* Actions */
  .action-card { padding: 0.9rem 1rem; }
  .action-ico { width: 40px; height: 40px; font-size: 1.2rem; border-radius: 8px; }
  .action-card h3 { font-size: 0.85rem; }
  .action-card p { font-size: 0.78rem; }

  /* Contact */
  .c-ico { width: 34px; height: 34px; font-size: 0.9rem; }
  .contact-info-item strong { font-size: 0.82rem; }
  .contact-info-item span { font-size: 0.78rem; }
  .form input, .form textarea, .form select { font-size: 0.88rem; padding: 0.65rem 0.8rem; }
  .btn-submit { padding: 0.85rem; font-size: 0.88rem; }

  /* Footer */
  footer { padding: 2rem 1rem 1rem; }
  .footer-logo strong { font-size: 0.88rem; }
  .footer-brand > p { font-size: 0.78rem; }
  .footer-nav { grid-template-columns: repeat(2,1fr); gap: 0.4rem 1rem; }
  .footer-nav a { font-size: 0.78rem; }
  .footer-bottom p, .footer-bottom a { font-size: 0.72rem; }
}

/* ===== DESKTOP ===== */
@media (min-width: 640px) {
  .hero { padding: 5rem 2rem 5rem; }
  .hero-actions { flex-direction: row; }
  .hero-stats-strip { flex-direction: row; gap: 2rem; }
  .hero-stat-item { flex: 1; }
  .trust-items { flex-direction: row; flex-wrap: wrap; gap: 1.2rem 2rem; }
  .section { padding: 4rem 2rem; }
  .pak-card-body { padding: 2.2rem; }
  .kit-grid { grid-template-columns: repeat(3,1fr); }
  .kit-visual { flex-direction: row; align-items: center; }
  .kit-right { text-align: left; }
  .families-grid { margin-left: 0; }
  .actions-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .form-row { flex-direction: row; }
  .form-row > div { flex: 1; }
  #globeViz { height: 440px; }
  footer { padding: 4rem 2rem 2rem; }
  .footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; align-items: start; }
  .footer-brand { margin-bottom: 0; }
  .footer-nav { grid-template-columns: repeat(3,1fr); }
}
@media (min-width: 1024px) {
  .navbar { padding: 0 2.5rem; }
  .hamburger { display: none; }
  .nav-menu { display: flex; position: static; flex-direction: row; padding: 0; box-shadow: none; border: none; gap: 0.25rem; align-items: center; background: transparent; }
  .nav-menu a { padding: 0.4rem 0.75rem; border-bottom: none; font-size: 0.875rem; border-radius: 6px; }
  .nav-menu a:hover { background: var(--off-white); }
  .nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 0.5rem 1.1rem !important; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .actions-grid { grid-template-columns: repeat(4,1fr); }
  .footer-nav { grid-template-columns: repeat(4,1fr); }
}
