/* =========================================================
   BERBAGI BERAS — Main Stylesheet v2.1.0
   ========================================================= */

/* CSS Variables */
:root {
  --bb-green:        #1B7A3E;
  --bb-green-dark:   #145C2E;
  --bb-green-light:  #E8F5EE;
  --bb-gold:         #F5A623;
  --bb-gold-dark:    #D4881A;
  --bb-gold-light:   #FEF6E4;
  --bb-dark:         #0F2318;
  --bb-text:         #1A1A1A;
  --bb-text-muted:   #5C6370;
  --bb-text-light:   #8A9099;
  --bb-white:        #FFFFFF;
  --bb-bg-alt:       #F8FAF9;
  --bb-border:       #E2E8E4;
  --bb-nav-height:   72px;
  --bb-radius-sm:    4px;
  --bb-radius:       8px;
  --bb-radius-lg:    12px;
  --bb-radius-xl:    16px;
  --bb-radius-2xl:   24px;
  --bb-radius-full:  9999px;
  --bb-shadow:       0 4px 12px rgba(0,0,0,0.08);
  --bb-shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --bb-shadow-glow:  0 0 40px rgba(27,122,62,0.20);
  --bb-transition:   250ms cubic-bezier(0.4,0,0.2,1);
  --bb-font-display: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --bb-font-body:    'Inter', -apple-system, sans-serif;
  --bb-container:    1200px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--bb-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--bb-text);
  background: var(--bb-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--bb-green); text-decoration: none; transition: color var(--bb-transition); }
a:hover { color: var(--bb-green-dark); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--bb-font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--bb-text);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================
   LAYOUT
   ========================================================= */
.bb-container {
  max-width: var(--bb-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bb-section { padding: 5rem 0; }
.bb-section-alt { background: var(--bb-bg-alt); }
.bb-section-dark { background: var(--bb-dark); }
.bb-text-center { text-align: center; }

/* Section Header */
.bb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-green);
  background: var(--bb-green-light);
  padding: 0.375rem 1rem;
  border-radius: var(--bb-radius-full);
  margin-bottom: 1rem;
}
.bb-eyebrow-gold {
  color: var(--bb-gold);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.30);
}
.bb-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.bb-title-white { color: var(--bb-white); }
.bb-subtitle {
  font-size: 1.0625rem;
  color: var(--bb-text-muted);
  max-width: 600px;
  line-height: 1.75;
}
.bb-subtitle-white { color: rgba(255,255,255,0.75); }
.bb-subtitle-center { margin: 0 auto; }

/* =========================================================
   BUTTONS
   ========================================================= */
.bb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--bb-font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--bb-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--bb-transition);
  white-space: nowrap;
  text-decoration: none;
}
.bb-btn:hover { text-decoration: none; transform: translateY(-1px); }

.bb-btn-primary {
  background: var(--bb-green);
  color: var(--bb-white);
  border-color: var(--bb-green);
  box-shadow: 0 4px 14px rgba(27,122,62,0.35);
}
.bb-btn-primary:hover {
  background: var(--bb-green-dark);
  border-color: var(--bb-green-dark);
  color: var(--bb-white);
  box-shadow: 0 6px 20px rgba(27,122,62,0.45);
}
.bb-btn-gold {
  background: var(--bb-gold);
  color: var(--bb-white);
  border-color: var(--bb-gold);
  box-shadow: 0 4px 14px rgba(245,166,35,0.40);
}
.bb-btn-gold:hover {
  background: var(--bb-gold-dark);
  border-color: var(--bb-gold-dark);
  color: var(--bb-white);
  box-shadow: 0 6px 20px rgba(245,166,35,0.50);
}
.bb-btn-outline {
  background: transparent;
  color: var(--bb-green);
  border-color: var(--bb-green);
}
.bb-btn-outline:hover {
  background: var(--bb-green);
  color: var(--bb-white);
}
.bb-btn-outline-white {
  background: transparent;
  color: var(--bb-white);
  border-color: rgba(255,255,255,0.6);
}
.bb-btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--bb-white);
  color: var(--bb-white);
}
.bb-btn-white {
  background: var(--bb-white);
  color: var(--bb-green);
  border-color: var(--bb-white);
}
.bb-btn-white:hover {
  background: var(--bb-green-light);
  color: var(--bb-green-dark);
}
.bb-btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.bb-btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.bb-btn-full { width: 100%; }

/* =========================================================
   NAVIGATION
   ========================================================= */
#bb-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  height: var(--bb-nav-height);
  background: transparent;
  transition: background var(--bb-transition), box-shadow var(--bb-transition);
}
#bb-header.bb-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--bb-border), 0 2px 8px rgba(0,0,0,0.06);
}
#bb-header .bb-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.bb-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.bb-logo-img { height: 44px; width: auto; }
.bb-logo-name {
  font-family: var(--bb-font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--bb-white);
  display: block;
  line-height: 1.2;
  transition: color var(--bb-transition);
}
.bb-logo-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.70);
  display: block;
  transition: color var(--bb-transition);
}
#bb-header.bb-scrolled .bb-logo-name { color: var(--bb-text); }
#bb-header.bb-scrolled .bb-logo-tagline { color: var(--bb-text-muted); }

/* Desktop Nav */
.bb-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.bb-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bb-nav ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 0.875rem;
  border-radius: var(--bb-radius);
  transition: all var(--bb-transition);
  white-space: nowrap;
  display: block;
  text-decoration: none;
}
.bb-nav ul li a:hover {
  color: var(--bb-white);
  background: rgba(255,255,255,0.15);
}
#bb-header.bb-scrolled .bb-nav ul li a { color: var(--bb-text-muted); }
#bb-header.bb-scrolled .bb-nav ul li a:hover {
  color: var(--bb-green);
  background: var(--bb-green-light);
}
.bb-nav-cta { margin-left: 1rem; }

/* Mobile toggle */
.bb-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--bb-radius);
}
.bb-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bb-white);
  border-radius: 2px;
  transition: all var(--bb-transition);
}
#bb-header.bb-scrolled .bb-nav-toggle span { background: var(--bb-text); }
.bb-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bb-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.bb-mobile-menu {
  display: none;
  position: fixed;
  top: var(--bb-nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bb-white);
  z-index: 8999;
  overflow-y: auto;
  padding: 1.5rem;
}
.bb-mobile-menu.is-open { display: block; }
.bb-mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.bb-mobile-menu ul li { border-bottom: 1px solid var(--bb-border); }
.bb-mobile-menu ul li a {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--bb-text);
  text-decoration: none;
}
.bb-mobile-menu ul li a:hover { color: var(--bb-green); }
.bb-mobile-cta { margin-top: 1.5rem; }

/* =========================================================
   HERO
   ========================================================= */
.bb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--bb-nav-height);
  overflow: hidden;
  background: var(--bb-dark);
}
.bb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.30;
}
.bb-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,35,24,0.95) 0%, rgba(27,122,62,0.70) 50%, rgba(15,35,24,0.88) 100%);
}
.bb-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(245,166,35,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(27,122,62,0.20) 0%, transparent 50%);
}
.bb-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 4rem 0 5rem;
}
.bb-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: center;
}

/* Hero left */
.bb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.18);
  border: 1px solid rgba(245,166,35,0.40);
  color: var(--bb-gold);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: var(--bb-radius-full);
  margin-bottom: 1.25rem;
}
.bb-hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--bb-gold);
  border-radius: 50%;
  animation: bb-pulse 2s ease-in-out infinite;
}
.bb-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--bb-white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.bb-hero-title .bb-gold-text { color: var(--bb-gold); }
.bb-hero-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}
.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.bb-hero-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.bb-hero-trust-check { color: var(--bb-gold); flex-shrink: 0; margin-top: 1px; }

/* Hero right — stats card */
.bb-hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--bb-radius-2xl);
  padding: 1.75rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.bb-hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--bb-gold);
  margin-bottom: 1.25rem;
}
.bb-stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.bb-stat-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--bb-radius-lg);
  padding: 0.875rem;
  text-align: center;
}
.bb-stat-mini-num {
  display: block;
  font-family: var(--bb-font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--bb-white);
  line-height: 1;
}
.bb-stat-mini-plus { color: var(--bb-gold); }
.bb-stat-mini-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.375rem;
  line-height: 1.4;
}

/* Rekening box in hero */
.bb-rekening-box {
  background: var(--bb-gold);
  border-radius: var(--bb-radius-xl);
  padding: 1.125rem;
}
.bb-rekening-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.625rem;
  display: block;
}
.bb-rekening-account {
  background: rgba(255,255,255,0.22);
  border-radius: var(--bb-radius-lg);
  padding: 0.75rem 1rem;
  margin-bottom: 0.625rem;
}
.bb-rekening-bank { font-size: 0.6875rem; color: rgba(255,255,255,0.80); display: block; }
.bb-rekening-num {
  font-family: var(--bb-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bb-white);
  letter-spacing: 0.04em;
  display: block;
}
.bb-rekening-name { font-size: 0.6875rem; color: rgba(255,255,255,0.80); display: block; }
.bb-rekening-note {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Scroll hint */
.bb-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
}
.bb-scroll-dot {
  width: 18px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.30);
  border-radius: var(--bb-radius-full);
  display: flex;
  justify-content: center;
  padding-top: 4px;
}
.bb-scroll-dot::after {
  content: '';
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
  animation: bb-scroll 1.5s ease-in-out infinite;
}

/* =========================================================
   STATS BAR
   ========================================================= */
.bb-stats-bar { background: var(--bb-green); padding: 2rem 0; }
.bb-stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.bb-stat-item {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.bb-stat-item:last-child { border-right: none; }
.bb-stat-num {
  display: block;
  font-family: var(--bb-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--bb-white);
  line-height: 1;
}
.bb-stat-plus { color: var(--bb-gold); }
.bb-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* =========================================================
   MEDIA STRIP
   ========================================================= */
.bb-media-strip {
  background: var(--bb-bg-alt);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bb-border);
}
.bb-media-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bb-media-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-text-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.bb-media-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  flex: 1;
}
.bb-media-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bb-text-light);
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius);
  padding: 0.375rem 0.75rem;
  white-space: nowrap;
  transition: all var(--bb-transition);
}
.bb-media-tag:hover {
  color: var(--bb-green);
  border-color: var(--bb-green);
  background: var(--bb-green-light);
}

/* =========================================================
   ABOUT
   ========================================================= */
.bb-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.bb-about-img-wrap { position: relative; }
.bb-about-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--bb-radius-2xl);
}
.bb-about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: var(--bb-white);
  border-radius: var(--bb-radius-xl);
  padding: 1rem 1.25rem;
  box-shadow: var(--bb-shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bb-about-img-badge-icon {
  width: 48px;
  height: 48px;
  background: var(--bb-green-light);
  border-radius: var(--bb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.bb-about-img-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bb-green);
  font-family: var(--bb-font-display);
}
.bb-about-img-badge span {
  font-size: 0.75rem;
  color: var(--bb-text-muted);
  font-weight: 500;
}
.bb-about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 2rem;
}
.bb-pillar {
  background: var(--bb-bg-alt);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.125rem;
  transition: all var(--bb-transition);
}
.bb-pillar:hover {
  border-color: var(--bb-green);
  background: var(--bb-green-light);
  transform: translateY(-2px);
}
.bb-pillar-icon { font-size: 1.5rem; margin-bottom: 0.625rem; }
.bb-pillar h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.375rem; }
.bb-pillar p { font-size: 0.8125rem; color: var(--bb-text-muted); margin: 0; line-height: 1.5; }

/* =========================================================
   CARA DONASI (STEPS)
   ========================================================= */
.bb-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bb-step {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all var(--bb-transition);
}
.bb-step:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow-lg), var(--bb-shadow-glow);
  transform: translateY(-4px);
}
.bb-step-num {
  width: 36px;
  height: 36px;
  background: var(--bb-green-light);
  color: var(--bb-green);
  border-radius: var(--bb-radius-full);
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--bb-font-display);
}
.bb-step-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bb-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.625rem; }
.bb-step p { font-size: 0.875rem; color: var(--bb-text-muted); margin: 0; line-height: 1.6; }
.bb-step-arrow {
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--bb-border);
  z-index: 1;
  pointer-events: none;
}
.bb-step:last-child .bb-step-arrow { display: none; }

/* Rekening Box (standalone) */
.bb-rekening-standalone {
  background: var(--bb-green-light);
  border: 1px solid rgba(27,122,62,0.20);
  border-radius: var(--bb-radius-2xl);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.bb-rekening-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bb-green);
  color: var(--bb-white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.25rem;
  border-radius: var(--bb-radius-full);
  margin-bottom: 1.5rem;
}
.bb-rekening-items {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.bb-rekening-item {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.25rem 2rem;
  min-width: 260px;
  cursor: pointer;
  transition: all var(--bb-transition);
}
.bb-rekening-item:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow);
}
.bb-rekening-item-bank {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-text-muted);
  margin-bottom: 0.25rem;
}
.bb-rekening-item-num {
  font-family: var(--bb-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bb-green);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.bb-rekening-item-name { font-size: 0.875rem; color: var(--bb-text-muted); font-weight: 500; }
.bb-rekening-copy-hint {
  font-size: 0.75rem;
  color: var(--bb-green);
  margin-top: 0.5rem;
  font-weight: 500;
}
.bb-rekening-note { font-size: 0.875rem; color: var(--bb-text-muted); }
.bb-rekening-note a { color: var(--bb-green); font-weight: 600; }
.bb-donasi-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* =========================================================
   DONATION OPTIONS
   ========================================================= */
.bb-donation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bb-donation-card {
  background: var(--bb-white);
  border: 2px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all var(--bb-transition);
}
.bb-donation-card:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow-lg), var(--bb-shadow-glow);
  transform: translateY(-4px);
}
.bb-donation-card.bb-featured {
  background: var(--bb-green);
  border-color: var(--bb-green);
}
.bb-donation-card.bb-featured h3,
.bb-donation-card.bb-featured p { color: rgba(255,255,255,0.90); }
.bb-donation-card.bb-featured h3 { color: var(--bb-white); }
.bb-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bb-gold);
  color: var(--bb-white);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.875rem;
  border-radius: var(--bb-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.bb-donation-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bb-donation-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.bb-donation-card p { font-size: 0.875rem; color: var(--bb-text-muted); margin-bottom: 1.5rem; line-height: 1.6; }

/* =========================================================
   IMPACT (DARK BG)
   ========================================================= */
.bb-targets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.bb-target-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--bb-radius-2xl);
  padding: 1.5rem;
  transition: all var(--bb-transition);
}
.bb-target-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,166,35,0.40);
  transform: translateY(-2px);
}
.bb-target-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.bb-target-card h3 { font-size: 1rem; font-weight: 700; color: var(--bb-white); margin-bottom: 0.5rem; }
.bb-target-card p { font-size: 0.8125rem; color: rgba(255,255,255,0.62); margin: 0; line-height: 1.6; }

/* =========================================================
   MEDIA CARDS
   ========================================================= */
.bb-media-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.bb-media-card {
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.5rem;
  transition: all var(--bb-transition);
}
.bb-media-card:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow);
  transform: translateY(-2px);
}
.bb-media-source {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bb-green);
  background: var(--bb-green-light);
  padding: 0.25rem 0.625rem;
  border-radius: var(--bb-radius-sm);
  margin-bottom: 0.875rem;
}
.bb-media-card h4 { font-size: 0.9375rem; font-weight: 600; line-height: 1.4; margin-bottom: 0.75rem; color: var(--bb-text); }
.bb-media-link {
  font-size: 0.8125rem;
  color: var(--bb-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  transition: gap var(--bb-transition);
}
.bb-media-link:hover { gap: 0.5rem; color: var(--bb-green-dark); }

/* =========================================================
   TRANSPARENCY / LAPKEU
   ========================================================= */
.bb-transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.bb-features-list { display: flex; flex-direction: column; gap: 1rem; }
.bb-feature {
  display: flex;
  gap: 1rem;
  background: var(--bb-bg-alt);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.25rem;
  transition: all var(--bb-transition);
}
.bb-feature:hover { border-color: var(--bb-green); background: var(--bb-green-light); }
.bb-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bb-green);
  border-radius: var(--bb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.bb-feature-text h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.bb-feature-text p { font-size: 0.8125rem; color: var(--bb-text-muted); margin: 0; line-height: 1.5; }

.bb-lapkeu-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; }
.bb-lapkeu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bb-lapkeu-card {
  background: var(--bb-white);
  border: 2px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.125rem 1.25rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--bb-transition);
}
.bb-lapkeu-card:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.bb-lapkeu-year {
  font-family: var(--bb-font-display);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--bb-green);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bb-lapkeu-desc { font-size: 0.8125rem; color: var(--bb-text-muted); margin-bottom: 0.875rem; flex: 1; }
.bb-lapkeu-dl {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bb-green);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* =========================================================
   JOIN SECTION
   ========================================================= */
.bb-join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.bb-join-card {
  background: var(--bb-white);
  border: 2px solid var(--bb-border);
  border-radius: var(--bb-radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: all var(--bb-transition);
}
.bb-join-card:hover {
  border-color: var(--bb-green);
  box-shadow: var(--bb-shadow-lg), var(--bb-shadow-glow);
  transform: translateY(-4px);
}
.bb-join-icon {
  width: 72px;
  height: 72px;
  background: var(--bb-green-light);
  border-radius: var(--bb-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
}
.bb-join-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.bb-join-card p { font-size: 0.875rem; color: var(--bb-text-muted); margin-bottom: 1.5rem; line-height: 1.6; }

/* =========================================================
   SHARE
   ========================================================= */
.bb-share-section {
  background: var(--bb-gold-light);
  border-top: 1px solid rgba(245,166,35,0.20);
  border-bottom: 1px solid rgba(245,166,35,0.20);
  padding: 3rem 0;
}
.bb-share-inner { text-align: center; }
.bb-share-inner h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.bb-share-inner p { color: var(--bb-text-muted); margin-bottom: 1.5rem; }
.bb-share-btns { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }
.bb-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--bb-radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--bb-transition);
  color: var(--bb-white);
}
.bb-share-btn:hover { transform: translateY(-2px); box-shadow: var(--bb-shadow); color: var(--bb-white); }
.bb-share-fb   { background: #1877F2; }
.bb-share-wa   { background: #25D366; }
.bb-share-tw   { background: #1DA1F2; }
.bb-share-tg   { background: #2CA5E0; }

/* =========================================================
   CONTACT
   ========================================================= */
.bb-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.bb-contact-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.bb-contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.bb-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--bb-green-light);
  border-radius: var(--bb-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
}
.bb-contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bb-text-muted);
  margin-bottom: 0.25rem;
}
.bb-contact-item a,
.bb-contact-item p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bb-text);
  margin: 0;
  text-decoration: none;
}
.bb-contact-item a:hover { color: var(--bb-green); }
.bb-social-links { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.bb-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--bb-white);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--bb-text);
  text-decoration: none;
  transition: all var(--bb-transition);
}
.bb-social-link:hover {
  border-color: var(--bb-green);
  color: var(--bb-green);
  background: var(--bb-green-light);
}

/* CTA Banner */
.bb-cta-banner {
  background: var(--bb-green);
  border-radius: var(--bb-radius-2xl);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.bb-cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(245,166,35,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bb-cta-banner h2 { font-size: clamp(1.375rem, 3vw, 1.875rem); color: var(--bb-white); margin-bottom: 0.75rem; }
.bb-cta-banner p { color: rgba(255,255,255,0.80); margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.bb-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.bb-quick-info {
  background: var(--bb-bg-alt);
  border: 1px solid var(--bb-border);
  border-radius: var(--bb-radius-xl);
  padding: 1.5rem;
}
.bb-quick-info h4 { font-size: 0.9375rem; margin-bottom: 1rem; }
.bb-quick-info-list { display: flex; flex-direction: column; gap: 0.625rem; }
.bb-quick-info-list li { font-size: 0.875rem; color: var(--bb-text-muted); display: flex; align-items: center; gap: 0.5rem; }

/* =========================================================
   FOOTER
   ========================================================= */
#bb-footer {
  background: var(--bb-dark);
  color: rgba(255,255,255,0.72);
  padding: 4rem 0 0;
}
.bb-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.bb-footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.60);
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
}
.bb-footer-logo-text {
  font-family: var(--bb-font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--bb-white);
  display: block;
  margin-bottom: 0.25rem;
}
.bb-footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bb-white);
  margin-bottom: 1rem;
}
.bb-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.bb-footer-links li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--bb-transition); }
.bb-footer-links li a:hover { color: var(--bb-white); }
.bb-footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.bb-footer-contact li { font-size: 0.8125rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.bb-footer-contact li a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--bb-transition); }
.bb-footer-contact li a:hover { color: var(--bb-white); }
.bb-footer-social { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.bb-footer-social-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--bb-radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: all var(--bb-transition);
}
.bb-footer-social-btn:hover { background: rgba(255,255,255,0.15); color: var(--bb-white); }
.bb-footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bb-footer-copy { font-size: 0.8125rem; color: rgba(255,255,255,0.38); }
.bb-footer-bottom-links { display: flex; gap: 1.5rem; }
.bb-footer-bottom-links a { font-size: 0.8125rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color var(--bb-transition); }
.bb-footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }

/* =========================================================
   WA FLOAT
   ========================================================= */
.bb-wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.bb-wa-tooltip {
  background: rgba(0,0,0,0.85);
  color: var(--bb-white);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.875rem;
  border-radius: var(--bb-radius-full);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--bb-transition);
  pointer-events: none;
}
.bb-wa-float:hover .bb-wa-tooltip { opacity: 1; transform: translateX(0); }
.bb-wa-btn {
  position: relative;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: var(--bb-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: all var(--bb-transition);
}
.bb-wa-btn:hover { transform: scale(1.10); box-shadow: 0 8px 28px rgba(37,211,102,0.60); }
.bb-wa-btn svg { width: 30px; height: 30px; fill: var(--bb-white); }
.bb-wa-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: var(--bb-gold);
  border-radius: var(--bb-radius-full);
  border: 2px solid var(--bb-white);
  animation: bb-pulse 2s ease-in-out infinite;
}

/* =========================================================
   TOAST
   ========================================================= */
.bb-toast {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  background: var(--bb-green);
  color: var(--bb-white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--bb-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10000;
  box-shadow: var(--bb-shadow-lg);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.bb-toast-hide { opacity: 0; transform: translateY(8px); }

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes bb-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes bb-scroll {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.bb-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.bb-fade.bb-visible { opacity: 1; transform: translateY(0); }
.bb-fade-d1 { transition-delay: 0.10s; }
.bb-fade-d2 { transition-delay: 0.20s; }
.bb-fade-d3 { transition-delay: 0.30s; }

/* =========================================================
   PAGE CONTENT WRAP (non-homepage)
   ========================================================= */
.bb-page-wrap { padding-top: var(--bb-nav-height); min-height: 60vh; }
.bb-page-inner { padding: 4rem 0; max-width: 800px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.8; }
.bb-page-inner h2 { font-size: 1.875rem; margin: 2.5rem 0 1rem; }
.bb-page-inner h3 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.bb-page-inner ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.bb-page-inner ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.bb-page-inner li { margin-bottom: 0.5rem; }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible { outline: 3px solid var(--bb-green); outline-offset: 2px; border-radius: 2px; }
.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; }

/* =========================================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================================= */
@media (max-width: 1024px) {
  :root { --bb-nav-height: 64px; }
  .bb-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bb-hero-card { max-width: 480px; }
  .bb-about-grid { grid-template-columns: 1fr; }
  .bb-about-img { height: 320px; }
  .bb-about-img-badge { right: 0; }
  .bb-steps-grid { grid-template-columns: 1fr 1fr; }
  .bb-step-arrow { display: none; }
  .bb-donation-grid { grid-template-columns: 1fr 1fr; }
  .bb-targets-grid { grid-template-columns: 1fr 1fr; }
  .bb-transparency-grid { grid-template-columns: 1fr; }
  .bb-media-cards-grid { grid-template-columns: 1fr 1fr; }
  .bb-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bb-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  .bb-section { padding: 3.5rem 0; }
  .bb-container { padding: 0 1rem; }
  .bb-nav { display: none; }
  .bb-nav-toggle { display: flex; }
  .bb-nav-cta { display: none; }
  .bb-hero-title { font-size: 2rem; }
  .bb-hero-actions { flex-direction: column; }
  .bb-stats-bar-grid { grid-template-columns: 1fr 1fr; }
  .bb-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); }
  .bb-stat-item:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.10); }
  .bb-stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .bb-about-pillars { grid-template-columns: 1fr; }
  .bb-steps-grid { grid-template-columns: 1fr; }
  .bb-donation-grid { grid-template-columns: 1fr; }
  .bb-targets-grid { grid-template-columns: 1fr; }
  .bb-media-cards-grid { grid-template-columns: 1fr; }
  .bb-join-grid { grid-template-columns: 1fr; }
  .bb-lapkeu-grid { grid-template-columns: 1fr 1fr; }
  .bb-footer-grid { grid-template-columns: 1fr; }
  .bb-footer-bottom { flex-direction: column; text-align: center; }
  .bb-footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .bb-wa-float { bottom: 1.25rem; right: 1.25rem; }
  .bb-wa-btn { width: 52px; height: 52px; }
  .bb-rekening-items { flex-direction: column; align-items: center; }
  .bb-donasi-btns { flex-direction: column; align-items: center; }
  .bb-cta-actions { flex-direction: column; align-items: center; }
  .bb-share-btns { flex-direction: column; align-items: center; }
  .bb-stats-mini { grid-template-columns: 1fr 1fr; }
  .bb-media-strip-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (max-width: 480px) {
  .bb-lapkeu-grid { grid-template-columns: 1fr; }
  .bb-about-pillars { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  #bb-header, .bb-wa-float, .bb-scroll-hint, .bb-mobile-menu { display: none !important; }
  .bb-page-wrap { padding-top: 0; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bb-fade { opacity: 1; transform: none; }
}

/* =========================================================
   ELEMENTOR COMPATIBILITY
   ========================================================= */

/* When Elementor is active on a page, remove any theme wrapper padding */
body.elementor-page .bb-page-wrap {
    padding-top: 0;
}

/* Elementor full-width sections override */
body.elementor-page .elementor-section.elementor-section-full_width {
    padding-left: 0;
    padding-right: 0;
}

/* Ensure Elementor canvas sections span full width */
body.elementor-page .e-container,
body.elementor-page .e-con {
    max-width: 100%;
}

/* Fix Elementor editor preview top spacing */
body.elementor-editor-active #bb-header {
    z-index: 99999;
}
