/* ============================================================
   assets/style.css — Lembata Coastal Hub
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --ocean:  #0077B6;
  --sky:    #00B4D8;
  --pale:   #90E0EF;
  --foam:   #CAF0F8;
  --deep:   #03045E;
  --teal:   #0E9FA3;
  --green:  #1A7A4A;
  --coral:  #E8504A;
  --gold:   #F4A261;
  --cream:  #FAF7F2;
  --sand:   #F5F0E8;
  --white:  #FFFFFF;
  --dark:   #1A2332;
  --muted:  #6B7280;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Plus Jakarta Sans',sans-serif; background:var(--white); color:var(--dark); overflow-x:hidden; }

/* ── LOADING SCREEN ─────────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: linear-gradient(160deg, #03045E 0%, #0077B6 55%, #0E9FA3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.5s ease, visibility 1.5s ease;
}
#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ls-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lsFadeUp 1.1s cubic-bezier(.22,1,.36,1) both;
}
.ls-logo {
  width: 120px; height: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.ls-logo-fallback {
  width: 110px; height: 110px;
  border-radius: 26px;
  background: rgba(255,255,255,.14);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #fff;
}
.ls-logo-fallback svg { width: 52px; height: 52px; opacity: .9; }
.ls-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 6px;
  text-align: center; letter-spacing: .3px;
}
.ls-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px; color: rgba(202,240,248,.72);
  margin-bottom: 30px; text-align: center;
}
.ls-ig {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: 50px; padding: 9px 24px;
  color: rgba(255,255,255,.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none; backdrop-filter: blur(10px);
  animation: lsFadeUp 1.1s .25s cubic-bezier(.22,1,.36,1) both;
  transition: background .2s, transform .2s;
}
.ls-ig:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.ls-ig svg { width: 17px; height: 17px; flex-shrink: 0; }
.ls-dots { display: flex; gap: 9px; margin-top: 44px; animation: lsFadeUp 1.1s .45s cubic-bezier(.22,1,.36,1) both; }
.ls-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: lsDotPulse 2.6s ease-in-out infinite;
}
.ls-dot:nth-child(2) { animation-delay: .52s; }
.ls-dot:nth-child(3) { animation-delay: 1.04s; }
@keyframes lsFadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes lsDotPulse {
  0%,80%,100% { transform:scale(.7); background:rgba(255,255,255,.28); }
  40%          { transform:scale(1.15); background:rgba(255,255,255,.9); }
}

/* ── NAV LOADING ────────────────────────────────────────────── */
#nav-loading {
  position: fixed; inset: 0; z-index: 99998;
  background: linear-gradient(160deg, #03045E 0%, #0077B6 55%, #0E9FA3 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}
#nav-loading.show { opacity: 1; visibility: visible; pointer-events: all; }
#nav-loading .ls-logo-wrap { animation: none; }
#nav-loading .ls-logo-wrap,
#nav-loading .ls-ig,
#nav-loading .ls-dots { animation: nlFadeUp .55s cubic-bezier(.22,1,.36,1) both; }
#nav-loading .ls-ig   { animation-delay: .1s; }
#nav-loading .ls-dots { animation-delay: .22s; }
@keyframes nlFadeUp {
  from { opacity:0; transform: translateY(18px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── ACCESSIBILITY BAR ──────────────────────────────────────── */
.access-bar {
  background: #070f1f;
  height: 42px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  position: sticky; top: 0; z-index: 1001;
  border-bottom: 1px solid rgba(0,180,216,.12);
  padding: 0 10px;
}
.access-bar-label {
  color: rgba(144,224,239,.5);
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-right: 2px;
}
.access-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; border-radius: 50px;
  border: 1.5px solid rgba(144,224,239,.18);
  background: rgba(255,255,255,.04);
  font-family: inherit; font-size: 12px; font-weight: 600;
  color: rgba(144,224,239,.65);
  cursor: pointer; transition: all .2s; line-height: 1;
  letter-spacing: .2px;
}
.access-btn.active {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  box-shadow: 0 0 14px rgba(0,180,216,.35);
}
.access-btn:not(.active):hover {
  background: rgba(0,180,216,.1);
  color: var(--sky);
  border-color: rgba(0,180,216,.35);
}
@media(max-width:480px) {
  .access-bar-label { display: none; }
  .access-btn { padding: 4px 10px; font-size: 11px; }
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 42px; z-index: 1000;
  background: #0D1E3D;
  border-bottom: 1px solid rgba(144,224,239,.1);
  height: 56px;
  display: grid; align-items: center; padding: 0;
  /* 2-kolom: logo | sisa — menu di-absolute-center terhadap full navbar */
  grid-template-columns: auto 1fr;
}
.nav-logos {
  display: flex; align-items: center; height: 100%;
  flex-shrink: 0; padding: 0 8px;
}
.nav-logo-item {
  display: flex; align-items: center; gap: 8px; height: 100%;
  padding: 0 12px; text-decoration: none; transition: background .2s;
}
.nav-logo-item:hover { background: rgba(255,255,255,.05); }
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-blue   { background: linear-gradient(135deg, #0077B6, #00B4D8); }
.nav-logo-orange { background: linear-gradient(135deg, #E8504A, #F4A261); }
.nav-logo-icon svg { display: block; }
.nav-logo-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; }
.nav-logo-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.nav-logo-sub  { font-size: 10px; color: rgba(144,224,239,.55); }
.nav-logo-sep  { width: 1px; height: 26px; background: rgba(144,224,239,.2); margin: 0 2px; align-self: center; }
/* Menu absolute-center terhadap full lebar navbar */
.nav-menu {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  list-style: none; height: 56px; gap: 0;
  pointer-events: auto;
}
.nav-menu li { display: flex; align-items: center; height: 100%; }
.nav-menu li a {
  display: flex; align-items: center; gap: 6px; height: 100%; padding: 0 14px;
  text-decoration: none; font-size: 13px; font-weight: 500; color: rgba(202,240,248,.7);
  white-space: nowrap; transition: all .2s; border-bottom: 2px solid transparent; box-sizing: border-box;
}
.nav-menu li a:hover  { color: #fff; background: rgba(0,180,216,.08); }
.nav-menu li a.active { color: #fff; border-bottom-color: var(--sky); }
.nav-ico { width: 15px; height: 15px; flex-shrink: 0; display: block; }

/* Hamburger ada di access-bar, selalu hidden di desktop */
.nav-hamburger {
  display: none;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(0,180,216,.15);
  border: 1.5px solid rgba(0,180,216,.3);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .15s;
}
.nav-hamburger:hover {
  background: rgba(0,180,216,.28);
  border-color: var(--sky);
  transform: scale(1.05);
}
.nav-hamburger svg { width: 15px; height: 15px; color: var(--sky); display: block; }

@media(max-width:1024px) {
  .nav-menu li a span:not(.nav-ico-wrap) { display: none; }
  .nav-menu li a { padding: 0 10px; }
}
@media(max-width:768px) {
  .nav-logo-sep { display: none; }
  .nav-logo-text { display: flex; } /* tetap tampil di mobile */
  .nav-logo-name { font-size: 10px; }
  .nav-logo-sub  { font-size: 9px; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-logo-item { padding: 0 8px; }
  /* Sembunyikan menu horizontal */
  .nav-menu { display: none; }
  /* Tampilkan hamburger di access-bar */
  .nav-hamburger { display: flex; }
  /* Access-bar rata kiri saat hamburger muncul */
  .access-bar { justify-content: flex-start; }
}
@media(max-width:480px) {
  .access-bar { gap: 4px; }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: calc(100vh - 98px); /* 42px access-bar + 56px navbar */
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/logo/BGPondok.png?v=1') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,50,100,.45) 0%, rgba(0,70,130,.55) 50%, rgba(0,40,90,.65) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; padding: 0px 24px 40px; max-width: 820px; margin-top: -100px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.3); border-radius: 50px;
  padding: 6px 18px; color: rgba(255,255,255,.92);
  font-size: 13px; font-weight: 600; margin-bottom: 14px;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px,6vw,68px); font-weight: 700;
  color: var(--white); line-height: 1.05; margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.hero-subtitle { font-size: clamp(16px,2.2vw,20px); color: rgba(255,255,255,.92); font-weight: 400; margin-bottom: 10px; }
.hero-desc { font-size: clamp(13px,1.4vw,15px); color: rgba(255,255,255,.75); line-height: 1.6; max-width: 600px; margin: 0 auto 24px; }
.hero-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--white);
  padding: 15px 38px; border-radius: 50px; font-size: 16px; font-weight: 700;
  font-family: inherit; text-decoration: none; border: none; cursor: pointer;
  transition: all .3s; box-shadow: 0 8px 28px rgba(232,80,74,.4);
}
.btn-hero-primary:hover { transform:translateY(-2px); box-shadow:0 14px 36px rgba(232,80,74,.55); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 38px; border-radius: 50px; font-size: 16px; font-weight: 600;
  font-family: inherit; text-decoration: none;
  border: 2px solid rgba(255,255,255,.65); cursor: pointer; transition: all .3s;
}
.btn-hero-outline:hover { background:rgba(255,255,255,.15); border-color:var(--white); transform:translateY(-2px); }
.hero-wave { position:absolute; bottom:-2px; left:0; right:0; line-height:0; z-index:2; }
.hero-wave svg { display:block; width:100%; }

/* ── SHARED ─────────────────────────────────────────────────── */
section { padding:90px 48px; }
.sec-tag {
  display: inline-block;
  background: rgba(0,180,216,.12); border: 1px solid rgba(0,180,216,.3); color: var(--sky);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 14px;
}
.sec-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(32px,5vw,52px); font-weight: 700; color: var(--deep); line-height: 1.15; margin-bottom: 14px; }
.sec-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.sec-header { text-align:center; margin-bottom:60px; }
.reveal { opacity:0; transform:translateY(36px); transition:all .7s ease; }
.reveal.on { opacity:1; transform:translateY(0); }

/* ── PRODUK ─────────────────────────────────────────────────── */
#produk { background: var(--cream); }
.produk-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1300px; margin: 0 auto 44px; }
.pcard { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,.07); transition: all .3s ease; }
.pcard:hover { transform:translateY(-6px); box-shadow:0 18px 48px rgba(0,119,182,.15); }
.pcard-img-wrap { position: relative; height: 200px; overflow: hidden; background: #e8f4f8; }
.pcard-img-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(0,119,182,.35); }
.pcard-img-placeholder svg { width: 40px; height: 40px; }
.pcard-img-placeholder span { font-size: 12px; font-weight: 500; }
.pcard-img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s; }
.pcard:hover .pcard-img { transform:scale(1.05); }
.pcard-body { padding: 16px 16px 20px; }
.pcard-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; color: var(--deep); margin-bottom: 6px; line-height: 1.3; }
.pcard-desc { font-size:13px; color:var(--muted); line-height:1.55; margin-bottom:14px; }
.pcard-foot { display:flex; align-items:center; justify-content:space-between; gap:8px; flex-wrap:wrap; }
.pcard-price { color:var(--coral); font-size:18px; font-weight:800; line-height:1.1; }
.btn-pesan {
  display: inline-flex; align-items: center; gap: 6px; background: #0E9FA3; color: var(--white);
  padding: 9px 16px; border-radius: 10px; font-size: 13px; font-weight: 700;
  font-family: inherit; text-decoration: none; border: none; cursor: pointer; transition: all .25s; white-space: nowrap;
}
.btn-pesan svg { width:14px; height:14px; flex-shrink:0; }
.btn-pesan:hover { background:#0c8a8e; transform:scale(1.03); }
.produk-more { text-align:center; }
.btn-more {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ocean);
  padding: 13px 36px; border-radius: 50px; font-size: 15px; font-weight: 600;
  font-family: inherit; text-decoration: none; border: 2px solid var(--ocean); cursor: pointer; transition: all .25s;
}
.btn-more:hover { background:var(--ocean); color:var(--white); }
@media(max-width:1200px) { .produk-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px)  { .produk-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:480px)  { .produk-grid { grid-template-columns: 1fr; } }

/* ── KONSERVASI ─────────────────────────────────────────────── */
#konservasi { background: var(--cream); }
.konservasi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; align-items: start; }
.konservasi-map-wrap { border-radius: 20px; overflow: hidden; box-shadow: 0 16px 50px rgba(0,119,182,.14); border: 1px solid rgba(0,180,216,.15); position: relative; }
.konservasi-map-img { width:100%; height:420px; object-fit:cover; display:block; }
.konservasi-map-caption { position: absolute; bottom:0; left:0; right:0; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); padding: 20px 24px; }
.konservasi-map-caption h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight:700; color:var(--deep); margin-bottom:5px; display:flex; align-items:center; gap:8px; }
.konservasi-map-caption h4 .wave { color: var(--sky); font-size:20px; }
.konservasi-map-caption p { font-size:13px; color:var(--muted); line-height:1.55; }
.konservasi-features { display:flex; flex-direction:column; gap:18px; }
.kfeat-card { background: var(--white); border-radius: 16px; padding: 24px; display:flex; align-items:flex-start; gap:18px; box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.kfeat-icon { width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; flex-shrink:0; color:#fff; }
.kfeat-icon svg { width:26px; height:26px; }
.kfeat-icon.green { background:linear-gradient(135deg,#1A7A4A,#2DC653); }
.kfeat-icon.teal  { background:linear-gradient(135deg,var(--teal),var(--sky)); }
.kfeat-icon.coral { background:linear-gradient(135deg,var(--coral),var(--gold)); }
.kfeat-body h4 { font-family:'Plus Jakarta Sans',sans-serif; font-size:18px; font-weight:700; margin-bottom:6px; }
.kfeat-body h4.green { color:var(--green); }
.kfeat-body h4.teal  { color:var(--teal); }
.kfeat-body h4.coral { color:var(--coral); }
.kfeat-body p { font-size:14px; color:var(--muted); line-height:1.6; margin-bottom:10px; }
.kfeat-badge { display:inline-block; font-size:12px; font-weight:700; padding:4px 14px; border-radius:50px; }
.kfeat-badge.green { background:rgba(26,122,74,.1); color:var(--green); }
.kfeat-badge.teal  { background:rgba(14,159,163,.1); color:var(--teal); }
.kfeat-badge.coral { background:rgba(232,80,74,.1);  color:var(--coral); }

/* ── STATS ──────────────────────────────────────────────────── */
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:56px auto 0; }
.stat-card { background:var(--white); border-radius:16px; padding:28px 20px; text-align:center; box-shadow:0 4px 16px rgba(0,0,0,.06); }
.stat-num { font-family:'Plus Jakarta Sans',sans-serif; font-size:42px; font-weight:700; color:var(--deep); line-height:1; margin-bottom:6px; }
.stat-lbl { font-size:14px; color:var(--muted); }

/* ── MITRA ──────────────────────────────────────────────────── */
#mitra { background:var(--white); }
.mitra-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; max-width:1200px; margin:0 auto; }
.mitra-card { background:var(--white); border-radius:18px; overflow:hidden; box-shadow:0 4px 18px rgba(0,0,0,.07); transition:all .3s; }
.mitra-card:hover { transform:translateY(-5px); box-shadow:0 16px 44px rgba(0,119,182,.14); }
.mitra-card-img { height:180px; position:relative; overflow:hidden; background:#b8d4e0; }
.mitra-card-img img { width:100%; height:100%; object-fit:cover; display:block; }
.mitra-card-icon { position:absolute; bottom:14px; left:14px; width:40px; height:40px; background:var(--white); border-radius:10px; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 12px rgba(0,0,0,.15); color: var(--ocean); }
.mitra-card-icon svg { width:20px; height:20px; }
.mitra-card-body { padding:18px 18px 22px; }
.mitra-card-body h4 { font-family:'Plus Jakarta Sans',sans-serif; font-size:16px; font-weight:700; color:var(--ocean); margin-bottom:5px; line-height:1.3; }
.mitra-card-body p { font-size:13px; color:var(--muted); }

/* ── CTA ────────────────────────────────────────────────────── */
#cta { padding:70px 48px; background:var(--cream); }
.cta-box { max-width:1200px; margin:0 auto; background:linear-gradient(135deg,var(--deep) 0%,#1A7A4A 100%); border-radius:24px; padding:60px 48px; text-align:center; position:relative; overflow:hidden; }
.cta-box::before { content:''; position:absolute; top:-50%; right:-10%; width:500px; height:500px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%); }
.cta-icon { width:64px; height:64px; margin:0 auto 20px; background:rgba(255,255,255,.15); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; }
.cta-icon svg { width:30px; height:30px; }
.cta-title { font-family:'Plus Jakarta Sans',sans-serif; font-size:clamp(22px,4vw,36px); font-weight:700; color:var(--white); margin-bottom:16px; }
.cta-sub { font-size:16px; color:rgba(255,255,255,.78); max-width:580px; margin:0 auto; line-height:1.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background:#0D2840; padding:64px 48px 32px; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1.3fr; gap:48px; max-width:1200px; margin:0 auto 52px; }
.footer-brand { font-family:'Plus Jakarta Sans',sans-serif; font-size:22px; font-weight:700; color:var(--white); margin-bottom:12px; line-height:1.2; }
.footer-brand-sub { font-size:14px; color:rgba(255,255,255,.58); line-height:1.65; margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; }
.footer-social { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; text-decoration:none; color:rgba(255,255,255,.7); transition:all .2s; }
.footer-social svg { width:16px; height:16px; }
.footer-social:hover { background:var(--ocean); color:#fff; }
.footer-col-title { font-size:15px; font-weight:700; color:var(--white); margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,.58); text-decoration:none; font-size:14px; transition:color .2s; }
.footer-links a:hover { color:var(--white); }
.footer-contact { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-contact li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.62); line-height:1.5; }
.footer-contact .ico { flex-shrink:0; color:var(--sky); margin-top:1px; }
.footer-contact .ico svg { width:15px; height:15px; display:block; }
.footer-nl-desc { font-size:14px; color:rgba(255,255,255,.62); margin-bottom:14px; line-height:1.6; }
.footer-nl-form { display:flex; flex-direction:column; gap:8px; }
.footer-nl-form input { padding:11px 16px; border-radius:10px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.07); color:var(--white); font-size:14px; font-family:inherit; outline:none; }
.footer-nl-form input::placeholder { color:rgba(255,255,255,.35); }
.footer-nl-form input:focus { border-color:var(--sky); }
.footer-nl-form button { padding:11px; border-radius:10px; border:none; background:var(--coral); color:var(--white); font-size:14px; font-weight:700; font-family:inherit; cursor:pointer; transition:background .2s; }
.footer-nl-form button:hover { background:#c03e38; }
.footer-bottom { max-width:1200px; margin:0 auto; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); text-align:center; font-size:13px; color:rgba(255,255,255,.32); }

/* ── FOOTER BOTTOM NEW: Logo + Supported By ─────────────────── */

/* Baris logo + nama pondok */
.fbn-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.fbn-logo-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.2);
}
.fbn-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.fbn-logo-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
}
.fbn-logo-fallback svg { width: 28px; height: 28px; }
.fbn-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fbn-brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.fbn-brand-sub {
  font-size: 12px;
  color: rgba(144,224,239,.6);
  font-weight: 500;
}

/* Divider */
.fbn-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 20px;
}

/* Supported By */
.fbn-supported { }
.fbn-supported-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.fbn-supported-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
/* Tiap lingkaran sponsor */
.fbn-supporter-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  border: 2px solid rgba(255,255,255,.15);
  transition: transform .2s, box-shadow .2s;
}
.fbn-supporter-circle:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.fbn-supporter-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}


/* ── MURO PILLAR: Read More hint ────────────────────────────── */
.muro-pillar-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  opacity: .8;
  transition: opacity .2s, gap .2s;
}
.muro-pillar:hover .muro-pillar-readmore {
  opacity: 1;
  gap: 8px;
}

/* ── ZONE MODAL ─────────────────────────────────────────────── */
.zone-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(3, 4, 30, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.zone-modal.open {
  opacity: 1;
  visibility: visible;
}
.zone-modal-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 60, 120, 0.15);
  border-top: 5px solid var(--zone-clr, #0077B6);
  border-left: none;
  border-right: none;
  border-bottom: none;
  outline: none;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
  margin: auto;
  /* hapus max-height agar konten bisa scroll lewat overlay */
}
.zone-modal-box:focus { outline: none; }
.zone-modal.open .zone-modal-box {
  transform: translateY(0) scale(1);
}
.zone-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  color: #374151;
}
.zone-modal-close:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}
.zone-modal-close svg { width: 16px; height: 16px; display: block; }
.zone-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.zone-modal-icon svg { width: 32px; height: 32px; }
.zone-modal-code {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.zone-modal-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
}
.zone-modal-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2332;
  margin-bottom: 16px;
}
.zone-modal-divider {
  height: 2px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.zone-modal-desc {
  font-size: 15px;
  color: #374151;
  line-height: 1.85;
}

@media(max-width: 480px) {
  .zone-modal-box { padding: 28px 22px 26px; border-radius: 20px; }
  .zone-modal-code { font-size: 38px; }
  .zone-modal-name { font-size: 19px; }
  .zone-modal-desc { font-size: 14px; }
}

/* ── MURO ───────────────────────────────────────────────────── */
/* ── MURO SLIDER ── */
.muro-slider-wrap {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.muro-slider-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.muro-slider-track {
  display: flex;
  gap: 26px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  align-items: stretch;
}
.muro-nav {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,180,216,.25);
  background: #fff;
  color: #0077B6;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
  align-self: center;
  box-shadow: 0 2px 12px rgba(0,119,182,.1);
  z-index: 2;
}
.muro-nav:hover:not(:disabled) {
  background: #0077B6;
  color: #fff;
  border-color: #0077B6;
  box-shadow: 0 4px 18px rgba(0,119,182,.3);
  transform: scale(1.08);
}
.muro-nav:disabled { cursor: default; }
.muro-nav-prev { margin-right: 16px; }
.muro-nav-next { margin-left:  16px; }
.muro-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 28px;
}
.muro-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0,119,182,.2);
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.muro-dot.active {
  background: #0077B6;
  width: 24px;
  border-radius: 4px;
}
/* keep pillar card same as before */
.muro-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; max-width: 1100px; margin: 0 auto; }
.muro-pillar { background: var(--white); border-radius: 18px; padding: 32px 26px; box-shadow: 0 4px 20px rgba(0,0,0,.07); border: 1px solid rgba(0,180,216,.1); transition: transform .3s, box-shadow .3s; width: calc((100% - 52px) / 3); flex-shrink: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }
.muro-pillar:focus { outline: none; }
.muro-pillar:hover { transform:translateY(-6px); box-shadow:0 18px 48px rgba(0,119,182,.16); }
.muro-pillar-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.muro-pillar-icon svg { width:26px; height:26px; }
.muro-pillar-code { font-size:20px; font-weight:700; line-height:1.2; margin-bottom:4px; font-family:'Plus Jakarta Sans',sans-serif; }
.muro-pillar-sub { font-size:11px; font-weight:600; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); margin-bottom:12px; }
.muro-pillar-name { font-family:'Plus Jakarta Sans',sans-serif; font-size:13px; font-weight:600; color:var(--muted); margin-bottom:12px; letter-spacing:.3px; }
.muro-pillar-desc { font-size:14px; color:var(--muted); line-height:1.75; }

/* ── ARTIKEL MURO ───────────────────────────────────────────── */
#artikel-muro { background: var(--white); padding: 80px 48px; }
.artikel-muro-slider-wrap { position: relative; max-width: 1100px; margin: 0 auto 32px; padding: 0 52px; }
.artikel-muro-overflow { overflow: hidden; border-radius: 4px; }
.artikel-muro-track { display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.artikel-muro-card { flex: 0 0 calc(33.333% - 16px); border-radius: 16px; overflow: hidden; background: var(--dark); box-shadow: 0 4px 20px rgba(0,0,0,.09); position: relative; transition: transform .3s, box-shadow .3s; cursor: pointer; min-height: 240px; }
.artikel-muro-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,119,182,.16); }
.artikel-muro-img { width: 100%; height: 240px; object-fit: cover; display: block; }
.artikel-muro-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,4,94,.80) 45%, rgba(0,0,0,.2) 100%); }
.artikel-muro-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 20px 22px; }
.artikel-muro-meta { font-size: 11px; color: rgba(255,255,255,.7); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.artikel-muro-dot-sep { opacity:.5; }
.artikel-muro-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.artikel-muro-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 36px; }
.am-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,119,182,.2); border: none; cursor: pointer; padding: 0; transition: all .3s; }
.am-dot.active { background: var(--ocean); transform: scale(1.35); }
.am-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1.5px solid rgba(0,119,182,.2); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 4px 14px rgba(0,0,0,.1); transition: all .2s; color: var(--ocean); }
.am-nav:hover { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.am-nav svg { width: 18px; height: 18px; }
.am-nav-prev { left: 0; }
.am-nav-next { right: 0; }
.btn-peta-muro { display: inline-flex; align-items: center; gap: 8px; background: var(--sky); color: var(--white); padding: 13px 36px; border-radius: 50px; font-size: 15px; font-weight: 700; font-family: inherit; text-decoration: none; border: none; cursor: pointer; transition: all .25s; box-shadow: 0 6px 20px rgba(0,180,216,.35); }
.btn-peta-muro:hover { background: var(--ocean); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,119,182,.4); }
.artikel-muro-more { text-align: center; }
@media(max-width: 900px) { .artikel-muro-card { flex: 0 0 calc(50% - 12px); } }
@media(max-width: 580px) {
  #artikel-muro { padding: 60px 24px; }
  .artikel-muro-card { flex: 0 0 100%; }
  .am-nav-prev { left: 0; } .am-nav-next { right: 0; }
}

/* ── INFOGRAFIS ─────────────────────────────────────────────── */
.infogr-wrap { max-width:980px; margin:0 auto; border-radius:0; box-shadow:none; border:none; background:transparent; }
#infografis .sec-tag { background:rgba(202,240,248,.15); color:var(--foam); border-color:rgba(202,240,248,.25); }
#infografis .sec-title { color:#ffffff; }
#infografis .sec-sub { color:rgba(202,240,248,.85); }
.infogr-map-container { position: relative; display: inline-block; width: 100%; line-height: 0; }
.infogr-img { width:100%; height:auto; display:block; }

/* ── MAP PINS ── */
.map-pin { position: absolute; transform: translate(-50%, -50%); cursor: pointer; text-decoration: none; z-index: 10; animation: pinFloat 3s ease-in-out infinite; }
.map-pin:nth-child(2) { animation-delay: -.8s; }
.map-pin:nth-child(3) { animation-delay: -1.6s; }
.map-pin:nth-child(4) { animation-delay: -.4s; }
.map-pin:nth-child(5) { animation-delay: -2.1s; }
.map-pin:nth-child(6) { animation-delay: -1.1s; }
@keyframes pinFloat {
  0%,100% { transform: translate(-50%,-50%) translateY(0); }
  50%      { transform: translate(-50%,-50%) translateY(-5px); }
}
.pin-dot { width: 20px; height: 20px; background: #fff; border: 4px solid #fff; border-radius: 50%; position: relative; z-index: 3; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; animation: dotGlow 2.4s ease-in-out infinite; }
@keyframes dotGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.8), 0 2px 12px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0), 0 4px 24px rgba(255,255,255,.6); }
}
.pin-rings { position: absolute; top: 50%; left: 50%; width: 0; height: 0; z-index: 1; pointer-events: none; }
.pin-ring { position: absolute; border-radius: 50%; background: rgba(255,255,255,.18); border: 3px solid rgba(255,255,255,.85); animation: ringExpand 2.4s ease-out infinite; transform: translate(-50%,-50%); }
.pin-ring:nth-child(1) { animation-delay: 0s; }
.pin-ring:nth-child(2) { animation-delay: .8s; }
.pin-ring:nth-child(3) { animation-delay: 1.6s; }
@keyframes ringExpand {
  0%   { width:12px; height:12px; opacity:1; }
  100% { width:70px; height:70px; opacity:0; }
}
.pin-label { position: absolute; bottom: calc(100% + 10px); left: 50%; background: rgba(3,4,94,.9); color: #fff; font-size: 11px; font-weight: 700; white-space: nowrap; padding: 5px 12px; border-radius: 20px; letter-spacing: .5px; pointer-events: none; opacity: 0; box-shadow: 0 4px 16px rgba(0,0,0,.3); transform: translateX(-50%) translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.pin-label::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: rgba(3,4,94,.9); }
.map-pin:hover { animation-play-state: paused; z-index: 20; }
.map-pin:hover .pin-dot { background: #fff; transform: scale(1.5); box-shadow: 0 0 0 5px rgba(255,255,255,.35), 0 6px 24px rgba(255,255,255,.7); animation: none; }
.map-pin:hover .pin-label { opacity: 1; transform: translateX(-50%) translateY(0); }
.map-pin:hover .pin-ring { animation-play-state: paused; }
.infogr-placeholder { aspect-ratio:16/9; background:linear-gradient(135deg,var(--deep) 0%,#023E8A 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; }

/* ── PONDOK ─────────────────────────────────────────────────── */
.pondok-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1100px; margin: 0 auto; align-items: start; }
.pondok-logo-row { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.pondok-ico { width:62px; height:62px; border-radius:16px; background: #ffffff; display:flex; align-items:center; justify-content:center; flex-shrink:0; box-shadow:0 8px 24px rgba(0,119,182,.2); border: 1px solid rgba(0,0,0,.07); padding: 8px; }
.pondok-ico svg { width:28px; height:28px; }
.infogr-ph-icon { width:80px; height:80px; border-radius:20px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; color:rgba(202,240,248,.4); }
.infogr-ph-icon svg { width:40px; height:40px; }
.pondok-info-col h3 { font-family:'Plus Jakarta Sans', sans-serif; font-size:22px; font-weight:700; color:var(--deep); }
.pondok-ig-link { font-family:'Plus Jakarta Sans', sans-serif; color:var(--ocean); text-decoration:none; font-size:13px; font-weight:600; display:inline-flex; align-items:center; gap:5px; margin-top:4px; transition:color .2s; }
.pondok-ig-link:hover { color:var(--sky); }
.pondok-desc { font-family:'Plus Jakarta Sans', sans-serif; font-size:15px; color:#374151; line-height:1.85; margin-bottom:24px; }
.btn-ig { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,#833AB4,#FD1D1D,#F7941E); color:var(--white); text-decoration:none; padding:13px 26px; border-radius:12px; font-family:'Plus Jakarta Sans', sans-serif; font-weight:700; font-size:15px; transition:all .3s; box-shadow:0 6px 20px rgba(131,58,180,.3); }
.btn-ig:hover { transform:translateY(-2px); box-shadow:0 12px 32px rgba(131,58,180,.4); }
.pondok-map-wrap { border-radius:18px; overflow:hidden; box-shadow:0 16px 48px rgba(0,119,182,.12); border:1px solid rgba(0,180,216,.15); height:360px; position:relative; }
.pondok-map-wrap iframe { width:100%; height:100%; border:none; display:block; }
.btn-maps { position:absolute; bottom:12px; right:12px; background:var(--ocean); color:var(--white); text-decoration:none; padding:9px 16px; border-radius:10px; font-size:13px; font-weight:600; display:inline-flex; align-items:center; gap:5px; box-shadow:0 4px 14px rgba(0,0,0,.25); transition:background .2s; }
.btn-maps:hover { background:var(--deep); }

/* ── MITRA DIVIDER ──────────────────────────────────────────── */
.mitra-divider { display: flex; align-items: center; gap: 18px; max-width: 1200px; margin: 0 auto 48px; }
.mitra-divider-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(0,119,182,.2), transparent); }
.mitra-divider-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--sky); white-space: nowrap; padding: 6px 18px; border: 1px solid rgba(0,180,216,.3); border-radius: 50px; background: rgba(0,180,216,.06); }

/* ── ACCESSIBILITY MODES ────────────────────────────────────── */
.mode-butawarna { filter: grayscale(1) contrast(1.1); }
.mode-lansia    { zoom: 1.2; }
.mode-lansia .hero-title { font-size: clamp(40px,7vw,80px); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1024px) {
  .produk-grid { grid-template-columns:repeat(2,1fr); }
  .mitra-grid  { grid-template-columns:repeat(2,1fr); }
  .muro-slider-track .muro-pillar { width: calc((100% - 26px) / 2); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:36px; }
}
@media(max-width:768px) {
  section { padding:60px 24px; }
  .konservasi-grid { grid-template-columns:1fr; }
  .stats-row { grid-template-columns:repeat(2,1fr); }
  .muro-slider-track .muro-pillar { width: 100%; }
  .muro-nav { width: 38px; height: 38px; }
  .muro-nav-prev { margin-right: 10px; }
  .muro-nav-next { margin-left:  10px; }
  .pondok-grid { grid-template-columns:1fr; }
}
@media(max-width:600px) {
  .produk-grid { grid-template-columns:1fr; }
  .mitra-grid  { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  #cta { padding:48px 20px; }
  .cta-box { padding:40px 24px; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE SIDE MENU
   ════════════════════════════════════════════════════════════ */

/* ── Overlay gelap di belakang panel ─────────────────────── */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mob-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── Panel menu utama ────────────────────────────────────── */
.mob-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(82vw, 320px);
  height: 100dvh;
  background: #C2185B; /* magenta/pink seperti referensi */
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.mob-menu.open {
  transform: translateX(0);
}

/* ── Header panel: "Menu" + tombol × ────────────────────── */
.mob-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px 20px;
}
.mob-menu-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.5px;
}
.mob-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.mob-menu-close:hover { background: #fff; transform: rotate(90deg); }
.mob-menu-close svg { width: 18px; height: 18px; color: #C2185B; }

/* ── Nav items ──────────────────────────────────────────── */
.mob-nav {
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 2;
}
.mob-nav-item {
  display: block;
  padding: 16px 20px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  transition: background .2s, color .2s, padding-left .2s;
  position: relative;
}
.mob-nav-item:hover,
.mob-nav-item.active {
  background: rgba(0,0,0,.18);
  color: #fff;
  padding-left: 28px;
}
.mob-nav-item.active {
  background: rgba(0,0,0,.25);
}

/* ── Dekorasi background ─────────────────────────────────── */
.mob-menu-deco {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: .5;
  z-index: 1;
}
.mob-menu-deco svg { width: 100%; height: 100%; }