/* ===================================================================
   YAPEPAM Landing Page — yapepam-landing.css
   Modern minimalist NGO theme · Emerald / Mint / Cream
   Mobile-first · cPanel friendly · No framework
   =================================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Warna utama mengikuti logo YAPEPAM: crimson + emas */
  --primary:        #C4152E;
  --primary-dark:   #9E1025;
  --primary-soft:   #FBE9EC;
  --accent:         #F5B800;
  --accent-soft:    #FEF6DD;
  --highlight:      #F5B800;
  --highlight-soft: #FDF3D6;

  --surface:        #FFFFFF;
  --background:     #FAF7F2;
  --text-main:      #221A1B;
  --text-muted:     #6B5F61;
  --border:         #EDE5E2;

  --shadow-soft:    0 12px 34px rgba(80, 20, 30, 0.10);
  --shadow-card:    0 4px 18px rgba(80, 20, 30, 0.06);
  --shadow-hover:   0 18px 40px rgba(80, 20, 30, 0.14);

  --radius-lg:      24px;
  --radius-md:      16px;
  --radius-sm:      10px;

  --container:      1180px;
  --nav-h:          70px;
  --ease:           cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.18; letter-spacing: -0.02em; color: var(--text-main); }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-head { max-width: 660px; margin: 0 auto 44px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; }
.section-sub { margin-top: 14px; color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 100px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 20px rgba(196, 21, 46, 0.28); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(196, 21, 46, 0.34); }
.btn-ghost { background: var(--surface); color: var(--primary-dark); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--primary); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.16); }
.btn-outline-light { background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 1000; display: flex; align-items: center;
  background: rgba(250, 248, 242, 0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.92); border-bottom-color: var(--border); box-shadow: 0 4px 20px rgba(20,50,35,0.05); }
.nav-inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 42px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.15rem; color: var(--primary-dark); letter-spacing: -0.01em; }
.brand-tag { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a { font-size: 0.9rem; font-weight: 600; color: var(--text-main); padding: 8px 13px; border-radius: 100px; transition: color .2s, background .2s; }
.nav-menu a:hover { color: var(--primary); background: var(--primary-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--primary-dark); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--nav-h) + 56px) 0 72px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(160deg, #FBEFEF 0%, var(--background) 42%, #FEF6DD 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(8px); z-index: -1; pointer-events: none; opacity: 0.5; }
.hero-blob.b1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(196,21,46,0.30), transparent 70%); top: -80px; right: -60px; }
.hero-blob.b2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,184,0,0.30), transparent 70%); bottom: -90px; left: -70px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; font-weight: 700; color: var(--primary-dark);
  background: var(--surface); border: 1px solid var(--border);
  padding: 6px 13px; border-radius: 100px; box-shadow: var(--shadow-card);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 900; }
.hero h1 .hl { color: var(--primary); position: relative; }
.hero p.lead { margin: 22px 0 30px; font-size: 1.12rem; color: var(--text-muted); max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-stats { display: flex; gap: 10px; margin-top: 38px; flex-wrap: wrap; }
.hero-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-card); flex: 1; min-width: 120px; }
.hero-stat b { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.45rem; font-weight: 800; color: var(--primary-dark); }
.hero-stat span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 4.4; position: relative;
}
.hero-float {
  position: absolute; left: -18px; bottom: 26px;
  background: var(--surface); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-soft); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.hero-float .ic svg { width: 22px; height: 22px; }
.hero-float b { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; color: var(--primary-dark); display: block; }
.hero-float span { font-size: 0.74rem; color: var(--text-muted); }

/* ---------- Image placeholders (swap with real <img>) ---------- */
.ph {
  width: 100%; height: 100%; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18) 0, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(0,0,0,0.12) 0, transparent 45%);
}
.ph .ph-ic { position: relative; z-index: 1; color: rgba(255,255,255,0.85); }
.ph .ph-ic svg { width: 56px; height: 56px; }
.ph.v2 { background: linear-gradient(135deg, #E0556B 0%, var(--primary-dark) 100%); }
.ph.v3 { background: linear-gradient(135deg, var(--highlight) 0%, #E89B2B 100%); }
.ph.v4 { background: linear-gradient(135deg, #D93050 0%, #780C1B 100%); }

/* ---------- Stats section ---------- */
.stats-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-card); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stat-ic { width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.stat-ic svg { width: 26px; height: 26px; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.1rem; font-weight: 900; color: var(--primary-dark); }
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.about-visual { position: relative; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 5/5.4; }
.about-statbox { position: absolute; right: -14px; top: 28px; background: var(--primary); color: #fff; border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-soft); text-align: center; }
.about-statbox b { font-family: 'Montserrat', sans-serif; font-size: 1.7rem; font-weight: 900; display: block; }
.about-statbox span { font-size: 0.74rem; opacity: 0.85; }
.about-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
.about-text > p { color: var(--text-muted); margin: 18px 0 24px; }
.focus-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.focus-item { display: flex; gap: 14px; align-items: flex-start; }
.focus-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.focus-ic svg { width: 22px; height: 22px; }
.focus-item h4 { font-size: 1.02rem; font-weight: 700; margin-bottom: 2px; }
.focus-item p { font-size: 0.9rem; color: var(--text-muted); }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.vm-box { border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--border); }
.vm-box.vision { background: var(--primary-soft); }
.vm-box.mission { background: var(--highlight-soft); }
.vm-box h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.vm-box.mission h4 { color: #B58200; }
.vm-box p { font-size: 0.9rem; color: var(--text-main); }
.vm-box ul { display: flex; flex-direction: column; gap: 7px; }
.vm-box li { font-size: 0.88rem; padding-left: 20px; position: relative; color: var(--text-main); }
.vm-box li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--highlight); }

/* ---------- Programs ---------- */
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prog-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.prog-ic { width: 58px; height: 58px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--primary-soft); color: var(--primary); }
.prog-ic svg { width: 28px; height: 28px; }
.prog-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 9px; }
.prog-card p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 16px; }
.prog-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 700; color: var(--primary); transition: gap .2s; }
.prog-link:hover { gap: 11px; }
.prog-link svg { width: 16px; height: 16px; }

/* ---------- Rumah Belajar ---------- */
.rb { background: linear-gradient(150deg, #780C1B 0%, #C4152E 100%); border-radius: var(--radius-lg); overflow: hidden; position: relative; color: #fff; }
.rb::before { content: ''; position: absolute; top: -60px; right: -40px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.rb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; z-index: 1; }
.rb-visual { min-height: 380px; }
.rb-content { padding: 50px 46px; }
.rb-content .eyebrow { color: #fff; background: rgba(255,255,255,0.15); }
.rb-content h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.2rem); font-weight: 800; }
.rb-content > p { color: rgba(255,255,255,0.82); margin: 16px 0 26px; font-size: 1rem; }
.rb-benefits { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.rb-benefit { display: flex; gap: 13px; align-items: center; }
.rb-benefit .ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: center; color: var(--highlight); }
.rb-benefit .ic svg { width: 22px; height: 22px; }
.rb-benefit b { font-size: 0.98rem; display: block; }
.rb-benefit span { font-size: 0.84rem; color: rgba(255,255,255,0.72); }
.rb-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Campaigns ---------- */
.camp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.camp-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.camp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.camp-media { aspect-ratio: 16/10; position: relative; }
.camp-cat { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; background: rgba(255,255,255,0.95); color: var(--primary-dark); padding: 5px 11px; border-radius: 100px; }
.camp-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.camp-body h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.camp-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; flex: 1; }
.progress { height: 9px; background: var(--primary-soft); border-radius: 100px; overflow: hidden; margin-bottom: 10px; }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary)); border-radius: 100px; }
.camp-meta { display: flex; justify-content: space-between; margin-bottom: 16px; }
.camp-meta .raised b { font-family: 'Montserrat', sans-serif; color: var(--primary-dark); font-size: 0.98rem; }
.camp-meta .raised span, .camp-meta .goal span { display: block; font-size: 0.72rem; color: var(--text-muted); }
.camp-meta .goal { text-align: right; }
.camp-meta .goal b { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; }

/* ---------- Transparency ---------- */
.transparency { background: var(--primary-soft); }
.trans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trans-card { background: var(--surface); border-radius: var(--radius-lg); padding: 30px 26px; text-align: center; border: 1px solid var(--border); }
.trans-step { font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 800; color: var(--accent); margin-bottom: 8px; }
.trans-ic { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 18px; background: var(--accent-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.trans-ic svg { width: 30px; height: 30px; }
.trans-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 9px; }
.trans-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); cursor: pointer; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item .ph { transition: transform .4s var(--ease); }
.gallery-item:hover .ph { transform: scale(1.06); }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 14px; background: linear-gradient(transparent, rgba(14,77,48,0.78)); color: #fff; font-size: 0.82rem; font-weight: 600; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow-card); position: relative; }
.testi-quote { font-family: 'Montserrat', sans-serif; font-size: 3rem; line-height: 1; color: var(--accent); opacity: 0.35; margin-bottom: 6px; }
.testi-card p { font-size: 0.96rem; color: var(--text-main); margin-bottom: 22px; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 800; color: #fff; }
.testi-person b { font-size: 0.92rem; display: block; }
.testi-person span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Big CTA ---------- */
.cta-band {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg); padding: 60px 40px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; top: -70px; left: -40px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,0.07); }
.cta-band::after { content: ''; position: absolute; bottom: -90px; right: -50px; width: 300px; height: 300px; border-radius: 50%; background: rgba(245,184,0,0.16); }
.cta-band .inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 16px 0 30px; font-size: 1.08rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.contact-row { display: flex; gap: 15px; align-items: flex-start; }
.contact-row .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 13px; background: var(--primary-soft); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .lbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.contact-row .val { font-size: 0.98rem; font-weight: 600; color: var(--text-main); word-break: break-word; }
.contact-socials { display: flex; gap: 10px; margin-top: 26px; }
.contact-socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--primary-dark); transition: all .2s; }
.contact-socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-3px); }
.contact-socials svg { width: 20px; height: 20px; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 380px; border: 1px solid var(--border); }
.map-box iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: #11241B; color: rgba(255,255,255,0.7); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand img { height: 46px; filter: brightness(0) invert(1); opacity: 0.92; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 290px; color: rgba(255,255,255,0.55); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-col a:hover { color: var(--highlight); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1100;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-size: 0.92rem;
  padding: 13px 20px; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(37,211,102,0.5); }
.wa-float svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(14,30,20,0.92); display: none; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-inner { max-width: 760px; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 16/10; }
.lightbox-close { position: absolute; top: 18px; right: 22px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; }
.lightbox-close svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .rb-grid { grid-template-columns: 1fr; }
  .rb-visual { min-height: 240px; }
  .prog-grid, .camp-grid, .trans-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
/* Collapse the horizontal menu into a hamburger before it crowds the logo */
@media (max-width: 992px) {
  .nav-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 10px 16px 18px; box-shadow: var(--shadow-soft); transform: translateY(-130%); transition: transform .35s var(--ease); }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 13px 14px; border-radius: 12px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .nav-actions .btn { display: none; }
  .stats-wrap { grid-template-columns: repeat(2, 1fr); }
  .prog-grid, .camp-grid, .trans-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; }
  .vm-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-statbox { right: 10px; top: 12px; }
  .rb-content { padding: 36px 26px; }
  .cta-band { padding: 46px 26px; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; }
}
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero-stat { min-width: 100%; }
}
