:root {
  --hijau-tua: #0D4429;
  --hijau-primer: #1B8442;
  --hijau-muda: #E8F3E8;
  --hijau-soft: #F1F8F0;
  --kuning: #F4B63F;
  --kuning-soft: #FFF4D9;
  --navy: #0A2540;
  --krem: #FAF8F2;
  --abu-garis: #E5E7EB;
  --abu-teks: #4B5563;
  --abu-muted: #6B7280;
  --putih: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(13,68,41,0.06), 0 1px 3px rgba(13,68,41,0.08);
  --shadow-md: 0 4px 12px rgba(13,68,41,0.08), 0 2px 4px rgba(13,68,41,0.06);
  --shadow-lg: 0 12px 28px rgba(13,68,41,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--abu-teks); background: var(--krem); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--hijau-primer); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { color: var(--hijau-tua); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.preview-banner { background: var(--kuning-soft); border-bottom: 2px solid var(--kuning); padding: 10px 20px; text-align: center; font-size: 13px; color: var(--navy); }
.preview-banner b { color: var(--hijau-tua); }

.topbar { background: var(--hijau-tua); color: rgba(255,255,255,0.85); font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar span { display: inline-flex; align-items: center; gap: 6px; }
.topbar i { color: var(--kuning); }

.header { background: var(--putih); border-bottom: 1px solid var(--abu-garis); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 48px; width: auto; }
.brand-text strong { display: block; color: var(--hijau-tua); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }
.brand-text b { display: block; color: var(--hijau-tua); font-size: 18px; font-weight: 800; line-height: 1.1; }
.brand-text small { display: block; color: var(--abu-muted); font-size: 11px; margin-top: 2px; }
nav.main-nav ul { list-style: none; display: flex; gap: 4px; flex-wrap: wrap; }
nav.main-nav li { position: relative; }
nav.main-nav a { display: block; padding: 10px 14px; color: var(--hijau-tua); font-weight: 600; font-size: 14px; border-radius: var(--radius-sm); transition: all 0.2s; }
nav.main-nav a:hover, nav.main-nav a.active { background: var(--hijau-muda); }
nav.main-nav .caret-ico { font-size: 10px; margin-left: 4px; transition: transform 0.2s; }
nav.main-nav .has-children:hover > a .caret-ico { transform: rotate(180deg); }
nav.main-nav .sub-menu { list-style: none; display: none; position: absolute; top: 100%; left: 0; min-width: 240px; background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: 8px; flex-direction: column; gap: 0; z-index: 200; }
nav.main-nav li:hover > .sub-menu { display: flex; }
nav.main-nav .sub-menu a { font-weight: 500; font-size: 13.5px; padding: 9px 12px; color: var(--navy); white-space: normal; }
nav.main-nav .sub-menu a:hover { background: var(--hijau-muda); color: var(--hijau-tua); }
nav.main-nav .sub-menu .sub-menu { top: 0; left: 100%; margin-left: 6px; }
nav.main-nav .sub-menu .has-children > a .caret-ico { transform: rotate(-90deg); }
nav.main-nav .sub-menu .has-children:hover > a .caret-ico { transform: rotate(-90deg); }
.nav-toggle { display: none; background: none; border: 0; font-size: 24px; color: var(--hijau-tua); cursor: pointer; }
@media (max-width: 980px) {
  nav.main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--putih); border-top: 1px solid var(--abu-garis); box-shadow: var(--shadow-md); padding: 12px; max-height: calc(100vh - 120px); overflow-y: auto; }
  nav.main-nav.is-open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 2px; }
  nav.main-nav .sub-menu { position: static; display: none; box-shadow: none; border: 0; padding: 4px 0 4px 16px; background: transparent; min-width: 0; }
  nav.main-nav .sub-menu .sub-menu { margin-left: 0; padding-left: 16px; }
  nav.main-nav li.has-children.is-open > .sub-menu { display: flex; }
  nav.main-nav .has-children > a { display: flex; justify-content: space-between; align-items: center; }
  nav.main-nav li.has-children.is-open > a .caret-ico { transform: rotate(180deg); }
  .nav-toggle { display: block; }
}

.hero { position: relative; min-height: 676px; padding: 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero-slide.is-active { opacity: 1; }
.hero-video-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-video-wrap iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh; transform: translate(-50%, -50%); border: 0; pointer-events: none; }
.hero-bg-single { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 30%; background: linear-gradient(to top, rgba(10,37,64,0.45) 0%, rgba(10,37,64,0) 100%); pointer-events: none; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 100px; font-weight: 700; font-size: 15px; cursor: pointer; transition: all 0.25s; border: 0; text-decoration: none; }
.btn-primary { background: var(--kuning); color: var(--navy); }
.btn-primary:hover { background: #FFC957; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white { background: rgba(255,255,255,0.08); color: var(--putih); border: 2px solid rgba(255,255,255,0.7); backdrop-filter: blur(4px); }
.btn-outline-white:hover { background: var(--putih); color: var(--hijau-tua); }
.btn-primary-green { background: var(--hijau-primer); color: var(--putih); }
.btn-primary-green:hover { background: var(--hijau-tua); transform: translateY(-2px); }
.btn-outline-green { background: transparent; color: var(--hijau-primer); border: 2px solid var(--hijau-primer); }
.btn-outline-green:hover { background: var(--hijau-primer); color: var(--putih); }

.welcome { padding: 72px 0; background: var(--krem); }
.welcome-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .welcome-grid { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.welcome-text .eyebrow { display: inline-block; font-family: 'Caveat', cursive; color: var(--hijau-primer); font-size: 1.6rem; margin-bottom: 4px; }
.welcome-text h2 { margin-bottom: 18px; }
.welcome-body { color: var(--abu-teks); font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 15px; font-weight: 400; line-height: 1.75; }
.welcome-body p { margin-bottom: 14px; font-size: 15px; font-weight: 400; }
.welcome-body p:last-child { margin-bottom: 0; }
.welcome-body strong, .welcome-body b { color: var(--hijau-tua); font-weight: 700; }
.welcome-body a { color: var(--hijau-primer); text-decoration: underline; }
.welcome-body ul, .welcome-body ol { margin: 0 0 14px 20px; }
.welcome-body li { margin-bottom: 6px; }
.welcome-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.survey-section { background: var(--hijau-soft); }
.survey-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.survey-card { background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); padding: 28px 24px; display: flex; flex-direction: column; text-align: center; transition: all 0.25s; }
.survey-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--hijau-primer); }
.survey-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--hijau-muda); color: var(--hijau-primer); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; transition: all 0.25s; }
.survey-card:hover .survey-icon { background: var(--hijau-primer); color: var(--putih); transform: scale(1.06); }
.survey-card h3 { color: var(--hijau-tua); font-size: 17px; line-height: 1.35; margin-bottom: 10px; }
.survey-card p { color: var(--abu-teks); font-size: 14px; line-height: 1.6; flex: 1; }
.survey-card .btn { margin-top: 20px; align-self: center; }
.latest-card { background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: all 0.25s; }
.latest-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.latest-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.latest-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.latest-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--abu-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.latest-meta .chip { background: var(--kuning-soft); color: var(--navy); padding: 3px 10px; border-radius: 100px; font-weight: 700; }
.latest-card h3 { font-size: 1.15rem; line-height: 1.35; }
.latest-card h3 a { color: var(--hijau-tua); }
.latest-excerpt { color: var(--abu-teks); font-size: 14px; }
.latest-more { color: var(--hijau-primer); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }

.section { padding: 72px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.12em; color: var(--hijau-primer); font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.section-head p { max-width: 640px; margin: 12px auto 0; color: var(--abu-muted); }

.quick-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.quick-card { background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; cursor: pointer; transition: all 0.25s; }
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--hijau-primer); }
.quick-icon { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; background: var(--hijau-muda); color: var(--hijau-primer); font-size: 24px; transition: all 0.25s; }
.quick-card:hover .quick-icon { background: var(--hijau-primer); color: var(--putih); transform: scale(1.08); }
.quick-card h4 { font-size: 14px; }

.section-dark { background: var(--hijau-tua); color: var(--putih); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; right: -80px; top: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(244,182,63,0.08); pointer-events: none; }
.section-dark::after { content: ''; position: absolute; left: -100px; bottom: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(244,182,63,0.05); pointer-events: none; }
.section-dark .container { position: relative; z-index: 1; }
.section-dark .section-head .eyebrow { color: var(--kuning); }
.section-dark .section-head h2 { color: var(--putih); }
.section-dark .section-head p { color: rgba(255,255,255,0.78); }
.section-dark .quick-card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.section-dark .quick-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(244,182,63,0.55); }
.section-dark .quick-icon { background: rgba(244,182,63,0.15); color: var(--kuning); }
.section-dark .quick-card:hover .quick-icon { background: var(--kuning); color: var(--navy); }
.section-dark .quick-card h4 { color: var(--putih); }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card { background: var(--putih); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--abu-garis); transition: all 0.25s; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.news-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--abu-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.news-meta .chip { background: var(--hijau-muda); color: var(--hijau-primer); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.news-card h3 { font-size: 1.05rem; line-height: 1.35; margin-top: 4px; }
.news-card .excerpt { color: var(--abu-teks); font-size: 14px; flex: 1; }
.news-card .more { color: var(--hijau-primer); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.news-carousel { overflow: hidden; position: relative; }
.news-track { display: flex; transition: transform 0.6s ease; }
.news-slide { flex: 0 0 100%; min-width: 0; box-sizing: border-box; padding: 4px; }
.news-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.news-dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--abu-garis); cursor: pointer; padding: 0; transition: all 0.25s; }
.news-dots button:hover { background: var(--hijau-muda); }
.news-dots button.active { background: var(--hijau-primer); width: 28px; border-radius: 100px; }

.gallery-preview { background: var(--hijau-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: all 0.25s; position: relative; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(13,68,41,0); transition: background 0.25s; }
.gallery-item:hover::after { background: rgba(13,68,41,0.35); }
.gallery-item:hover { transform: scale(1.02); }

.profile-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .profile-grid { grid-template-columns: 1fr 1fr; } }
.profile-text .script { font-family: 'Caveat', cursive; color: var(--hijau-primer); font-size: 1.4rem; }
.profile-text h2 { margin: 8px 0 20px; }
.profile-text p { margin-bottom: 16px; }
.profile-map { aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden; background: var(--abu-garis); box-shadow: var(--shadow-md); border: 4px solid var(--putih); }
.profile-map iframe { width: 100%; height: 100%; border: 0; }

.social { background: var(--hijau-muda); }
.social-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .social-grid { grid-template-columns: repeat(3, 1fr); } }
.social-card { background: var(--putih); border-radius: var(--radius-md); padding: 28px; text-align: center; border: 1px solid var(--abu-garis); transition: all 0.25s; display: flex; flex-direction: column; align-items: center; }
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.social-icon { width: 64px; height: 64px; border-radius: 50%; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--putih); font-size: 28px; }
.social-card h4 { font-size: 17px; margin-bottom: 4px; }
.social-card p { font-size: 14px; color: var(--abu-muted); margin-bottom: 16px; }

.page-head { background: linear-gradient(135deg, var(--hijau-tua) 0%, var(--hijau-primer) 100%); color: var(--putih); padding: 56px 0 44px; position: relative; overflow: hidden; }
.page-head::before { content: ''; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(244,182,63,0.12); }
.page-head::after { content: ''; position: absolute; left: -80px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: rgba(244,182,63,0.06); }
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { color: var(--putih); font-size: clamp(1.8rem, 4vw, 2.4rem); line-height: 1.25; max-width: 900px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 14px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--kuning); font-weight: 600; }
.breadcrumb a:hover { color: var(--putih); }
.breadcrumb .sep { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }

.album-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .album-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 1000px) { .album-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.album-item { display: block; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: zoom-in; transition: transform 0.25s; background-color: var(--hijau-muda); box-shadow: var(--shadow-sm); }
.album-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.album-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s; }
.album-item:hover .album-img { transform: scale(1.05); }
.album-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,68,41,0.55)); opacity: 0; transition: opacity 0.25s; pointer-events: none; }
.album-item:hover::after { opacity: 1; }
.album-zoom { position: absolute; right: 10px; top: 10px; background: rgba(13,68,41,0.82); color: var(--putih); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; opacity: 0; transform: scale(0.8); transition: all 0.25s; z-index: 2; }
.album-item:hover .album-zoom { opacity: 1; transform: scale(1); }

.lightbox { position: fixed; inset: 0; background: rgba(8, 12, 18, 0.94); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 60px 20px 20px; }
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 100%; max-height: 100%; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,0.6); object-fit: contain; }
.lightbox-close { position: fixed; top: 16px; right: 16px; background: rgba(255,255,255,0.14); color: var(--putih); border: 0; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: all 0.2s; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 10001; }
.lightbox-close:hover { background: rgba(255,255,255,0.28); transform: scale(1.05); }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.14); color: var(--putih); border: 0; width: 48px; height: 48px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: all 0.2s; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; z-index: 10001; }
.lightbox-nav:hover { background: rgba(255,255,255,0.28); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }
.lightbox-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: var(--putih); font-size: 13px; background: rgba(0,0,0,0.35); padding: 6px 14px; border-radius: 100px; z-index: 10001; }
@media (max-width: 600px) { .lightbox-nav { width: 40px; height: 40px; } .lightbox-nav.prev { left: 10px; } .lightbox-nav.next { right: 10px; } }

.blog-meta-info { color: rgba(255,255,255,0.82); font-size: 14px; margin-top: 10px; }
.blog-loader { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 48px 20px; gap: 16px; color: var(--abu-muted); font-size: 14px; }
.blog-loader .spinner { width: 36px; height: 36px; border: 3px solid var(--hijau-muda); border-top-color: var(--hijau-primer); border-radius: 50%; animation: v2-spin 0.8s linear infinite; }
@keyframes v2-spin { to { transform: rotate(360deg); } }
.blog-end { text-align: center; padding: 40px 20px; color: var(--abu-muted); font-size: 14px; border-top: 1px solid var(--abu-garis); margin-top: 40px; }
.blog-end i { color: var(--hijau-primer); font-size: 24px; display: block; margin-bottom: 8px; }

.article-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 900px) { .article-layout { grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr); gap: 48px; } }
.article-main { min-width: 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 12px; color: var(--abu-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.article-meta .chip { background: var(--hijau-muda); color: var(--hijau-primer); padding: 4px 12px; border-radius: 100px; font-weight: 700; }
.article-meta .dot { width: 4px; height: 4px; background: var(--abu-garis); border-radius: 50%; }
.article-hero { aspect-ratio: 16/9; background-size: cover; background-position: center; border-radius: var(--radius-md); box-shadow: var(--shadow-md); margin-bottom: 32px; }
.article-body { font-size: 16px; line-height: 1.85; color: var(--abu-teks); }
.article-body p { margin-bottom: 18px; }
.article-body h2, .article-body h3, .article-body h4 { color: var(--hijau-tua); margin: 32px 0 14px; line-height: 1.3; }
.article-body h2 { font-size: 1.5rem; }
.article-body h3 { font-size: 1.25rem; }
.article-body h4 { font-size: 1.1rem; }
.article-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 16px 0; box-shadow: var(--shadow-sm); }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--hijau-primer); text-decoration: underline; }
.article-body blockquote { border-left: 4px solid var(--hijau-primer); padding: 12px 20px; margin: 20px 0; background: var(--hijau-soft); color: var(--hijau-tua); font-style: italic; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.article-body iframe { max-width: 100%; border-radius: var(--radius-sm); margin: 16px 0; }
.article-tags { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--abu-garis); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 14px; color: var(--abu-muted); }
.article-tags strong { color: var(--hijau-tua); margin-right: 4px; }
.article-tags a { display: inline-block; padding: 5px 12px; background: var(--hijau-muda); color: var(--hijau-primer); border-radius: 100px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.2s; }
.article-tags a:hover { background: var(--hijau-primer); color: var(--putih); }

.article-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }
@media (max-width: 899px) { .article-sidebar { position: static; } }
.side-widget { background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.side-widget-title { font-size: 15px; color: var(--hijau-tua); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--hijau-muda); text-transform: uppercase; letter-spacing: 0.06em; }
.cat-list { list-style: none; display: flex; flex-direction: column; }
.cat-list li { border-bottom: 1px solid var(--abu-garis); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list a { display: block; padding: 10px 0; color: var(--abu-teks); font-size: 14px; transition: all 0.2s; }
.cat-list a:hover { color: var(--hijau-primer); padding-left: 6px; }
.cat-list a::before { content: '›'; color: var(--hijau-primer); margin-right: 8px; font-weight: 700; }
.popular-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.popular-item { display: flex; gap: 12px; align-items: flex-start; }
.popular-thumb { flex: 0 0 72px; width: 72px; height: 72px; background-size: cover; background-position: center; border-radius: var(--radius-sm); background-color: var(--hijau-muda); }
.popular-body { flex: 1; min-width: 0; }
.popular-title { font-size: 13.5px; line-height: 1.4; font-weight: 700; margin-bottom: 4px; }
.popular-title a { color: var(--hijau-tua); }
.popular-title a:hover { color: var(--hijau-primer); }
.popular-date { font-size: 11px; color: var(--abu-muted); text-transform: uppercase; letter-spacing: 0.05em; }

footer.site-footer { background: var(--hijau-tua); color: rgba(255,255,255,0.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
footer.site-footer h4 { color: var(--putih); font-size: 15px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
footer.site-footer p, footer.site-footer a, footer.site-footer li { color: rgba(255,255,255,0.75); font-size: 14px; }
footer.site-footer a:hover { color: var(--kuning); }
footer.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--kuning); margin-top: 4px; }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Articles / Custom pages */
.article-section-title { font-size: 1.4rem; color: var(--hijau-tua); margin: 32px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--hijau-muda); }
.article-sep { border: 0; border-top: 1px dashed var(--abu-garis); margin: 36px 0; }
.article-body h2 { font-size: 1.4rem; margin-top: 28px; }
.page-empty { text-align: center; padding: 56px 24px; color: var(--abu-muted); }
.page-empty i { font-size: 56px; color: var(--hijau-muda); margin-bottom: 18px; display: block; }
.page-empty p { margin-bottom: 20px; font-size: 15px; }
.hub-intro { font-size: 15px; color: var(--abu-muted); margin-bottom: 24px; }
.sub-menu-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 600px) { .sub-menu-grid { grid-template-columns: repeat(2, 1fr); } }
.sub-menu-card { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); color: var(--hijau-tua); font-weight: 600; transition: all 0.2s; text-decoration: none; }
.sub-menu-card:hover { border-color: var(--hijau-primer); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sub-menu-icon { flex: 0 0 42px; width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--hijau-muda); color: var(--hijau-primer); display: inline-flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.2s; }
.sub-menu-card:hover .sub-menu-icon { background: var(--hijau-primer); color: var(--putih); }
.sub-menu-card strong { flex: 1; font-size: 14.5px; }
.sub-menu-arrow { color: var(--abu-muted); transition: all 0.2s; }
.sub-menu-card:hover .sub-menu-arrow { color: var(--hijau-primer); transform: translateX(3px); }
.cat-list a.active { color: var(--hijau-primer); font-weight: 700; padding-left: 6px; }
.cat-list a.active::before { color: var(--kuning); }

/* Kontak */
.page-head-sub { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 10px; max-width: 700px; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(320px, 1fr) minmax(0, 1.4fr); gap: 40px; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px 22px; background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: all 0.2s; }
.contact-card:hover { border-color: var(--hijau-primer); box-shadow: var(--shadow-md); }
.contact-card-icon { flex: 0 0 48px; width: 48px; height: 48px; border-radius: var(--radius-sm); background: var(--hijau-muda); color: var(--hijau-primer); display: inline-flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-card h4 { color: var(--hijau-tua); font-size: 15px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.contact-card p { font-size: 14.5px; line-height: 1.6; margin-bottom: 3px; }
.contact-card p a { color: var(--hijau-primer); font-weight: 600; }
.contact-card .muted { color: var(--abu-muted); font-size: 13px; }
.contact-wa-btn { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: #25D366; color: var(--putih); border-radius: var(--radius-md); box-shadow: var(--shadow-md); transition: all 0.2s; text-decoration: none; }
.contact-wa-btn:hover { background: #1ea955; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.contact-wa-btn > i:first-child { font-size: 28px; }
.contact-wa-btn span { flex: 1; display: flex; flex-direction: column; }
.contact-wa-btn strong { font-size: 14.5px; }
.contact-wa-btn small { font-size: 12px; opacity: 0.85; }
.contact-wa-arrow { transition: transform 0.2s; }
.contact-wa-btn:hover .contact-wa-arrow { transform: translateX(4px); }
.contact-map { background: var(--putih); border: 1px solid var(--abu-garis); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 420px; }
.contact-map iframe { width: 100%; min-height: 420px; border: 0; display: block; }

/* Popup homepage */
.popup-overlay { position: fixed; inset: 0; background: rgba(10, 37, 64, 0.82); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; transition: opacity 0.25s ease; overflow-y: auto; }
.popup-overlay.is-visible { opacity: 1; }
.popup-overlay[hidden] { display: none; }
.popup-box { position: relative; background: var(--putih); border-radius: var(--radius-lg); max-width: 720px; width: 100%; overflow: hidden; transform: translateY(20px) scale(0.96); transition: transform 0.3s ease; animation: popupGlow 2.8s ease-in-out infinite; }
.popup-overlay.is-visible .popup-box { transform: translateY(0) scale(1); }
@keyframes popupGlow {
  0%, 100% {
    box-shadow:
      0 30px 60px rgba(0,0,0,0.4),
      0 0 0 2px rgba(244, 182, 63, 0.6),
      0 0 24px 4px rgba(244, 182, 63, 0.45);
  }
  50% {
    box-shadow:
      0 30px 60px rgba(0,0,0,0.4),
      0 0 0 6px rgba(244, 182, 63, 0.9),
      0 0 50px 12px rgba(244, 182, 63, 0.75);
  }
}
@media (prefers-reduced-motion: reduce) {
  .popup-box { animation: none; box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 4px rgba(244, 182, 63, 0.85); }
}
.popup-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--hijau-tua); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow-md); transition: all 0.2s; z-index: 3; }
.popup-close:hover { background: var(--kuning); color: var(--navy); transform: rotate(90deg); }
.popup-slides { position: relative; }
.popup-slide { display: none; animation: popupFade 0.3s ease; }
.popup-slide.is-active { display: block; }
@keyframes popupFade { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.popup-image { background: var(--hijau-muda); }
.popup-image img { width: 100%; height: auto; max-height: 58vh; object-fit: cover; display: block; }
.popup-body { padding: 32px 36px 36px; text-align: center; }
.popup-body h3 { color: var(--hijau-tua); font-size: 1.7rem; margin-bottom: 14px; line-height: 1.25; }
.popup-desc { color: var(--abu-teks); line-height: 1.7; font-size: 16px; margin-bottom: 24px; }
.popup-desc a { color: var(--hijau-primer); text-decoration: underline; }
.popup-cta { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; background: var(--hijau-primer); color: var(--putih); border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; box-shadow: var(--shadow-md); transition: all 0.2s; }
.popup-cta:hover { background: var(--hijau-tua); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--putih); }
.popup-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--hijau-tua); border: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--shadow-md); transition: all 0.2s; z-index: 2; }
.popup-prev { left: 12px; }
.popup-next { right: 12px; }
.popup-nav:hover { background: var(--hijau-primer); color: var(--putih); box-shadow: var(--shadow-lg); }
.popup-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; padding: 6px 12px; background: rgba(255,255,255,0.6); backdrop-filter: blur(6px); border-radius: 100px; }
.popup-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(13,68,41,0.25); border: 0; cursor: pointer; padding: 0; transition: all 0.2s; }
.popup-dot:hover { background: rgba(13,68,41,0.5); }
.popup-dot.is-active { background: var(--hijau-primer); transform: scale(1.3); }
@media (max-width: 600px) {
  .popup-box { max-width: 460px; animation-duration: 3.2s; }
  .popup-body { padding: 22px 22px 30px; }
  .popup-body h3 { font-size: 1.3rem; }
  .popup-desc { font-size: 14.5px; }
  .popup-nav { width: 38px; height: 38px; font-size: 15px; }
  .popup-prev { left: 8px; }
  .popup-next { right: 8px; }
  .popup-image img { max-height: 50vh; }
}

.back-to-top { position: fixed; right: 20px; bottom: 90px; width: 46px; height: 46px; border-radius: 50%; background: var(--hijau-primer); color: var(--putih); border: 0; cursor: pointer; font-size: 18px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s, transform 0.25s, background 0.2s; z-index: 9998; display: flex; align-items: center; justify-content: center; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--hijau-tua); transform: translateY(-3px); }
@media (max-width: 600px) { .back-to-top { right: 16px; bottom: 86px; width: 42px; height: 42px; } }
