:root {
    color-scheme: light;
    /* Soft elegant light — satu tema untuk seluruh situs */
    --bg: #e8ebe5;
    --surface: #f4f5f2;
    --surface-soft: #eceee9;
    --surface-muted: #e3e6e0;
    --text: #2a3238;
    --muted: #55616c;
    --green: #6aab3e;
    --green-dark: #528a30;
    --brand: #4a7c35;
    --line: #d2d9d0;
    --shadow: 0 8px 24px rgba(42, 52, 38, 0.08);
    --topbar-bg: rgba(244, 245, 242, 0.94);
    --topbar-solid-bg: rgba(244, 245, 242, 0.98);
    --topbar-border: rgba(168, 178, 162, 0.55);
    --hero-overlay: rgba(42, 52, 46, 0.55);
    --input-bg: #fafbf8;
    --input-border: #c5cdc2;
    --card-border: #d6ddd4;
}

html,
html[data-theme],
html[data-theme="light"],
html[data-theme="dark"],
html[data-theme="system"] {
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

.container {
    width: min(1210px, 92%);
    margin: 0 auto;
}

.header-shell {
    position: fixed;
    top: 14px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-shell .container {
    position: relative;
}

.topbar {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    background: var(--topbar-bg);
    backdrop-filter: blur(10px);
    border-radius: 13px;
    padding: 6px 10px 6px 14px;
    margin-right: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--topbar-border);
    overflow: visible;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    text-decoration: none;
    min-width: 0;
}

.brand-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex: 0 0 52px;
    padding: 5px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f8faf6 0%, #e8efe3 100%);
    box-shadow: 0 2px 8px rgba(42, 52, 38, 0.1);
    image-rendering: -webkit-optimize-contrast;
    filter: saturate(1.2) contrast(1.15) brightness(1);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(1px);
}

.brand-main {
    font-size: 32px;
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--text);
    text-shadow: none;
    font-weight: 700;
}

.brand-sub {
    font-size: 12px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--green-dark);
}

.nav {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    min-width: 0;
    overflow: visible;
    padding-right: 120px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-item.has-children:hover,
.nav-item.has-children.is-open {
    z-index: 5;
}

.nav-item > .nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 11px;
    line-height: 1;
    font-weight: 500;
    position: relative;
    padding: 0 2px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

.nav-item > .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-item > .nav-link:hover::after,
.nav-item > .nav-link.is-active::after {
    transform: scaleX(1);
}

.nav-item > .nav-link.is-active {
    color: var(--green-dark);
    font-weight: 600;
}

.nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.75;
    transform: translateY(1px);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 210px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 120;
}

/* Invisible bridge so cursor can reach submenu without closing */
.nav-submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-item.has-children:hover .nav-submenu,
.nav-item.has-children:focus-within .nav-submenu,
.nav-item.has-children.is-open .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-sublink {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.35;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
}

.nav-sublink:hover {
    background: rgba(106, 171, 62, 0.12);
    color: var(--green-dark);
}

.nav-sublink.is-empty {
    cursor: default;
    opacity: 0.72;
}

.nav-link.is-empty {
    cursor: default;
    opacity: 0.72;
}

.auth-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.topbar-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.mobile-header-controls {
    display: none;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.theme-toggle-btn--desktop {
    display: inline-flex;
}

@media (min-width: 1025px) {
    .mobile-header-controls {
        display: none !important;
    }

    .theme-toggle-btn--mobile {
        display: none !important;
    }
}

.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--text);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
}

.lang-switcher__btn::-webkit-details-marker {
    display: none;
}

.lang-switcher__btn {
    list-style: none;
}

.header-shell.is-solid .lang-switcher__btn {
    background: #ffffff;
    border-color: #dbe8ce;
    color: #2f3b4f;
}

.lang-switcher__caret {
    opacity: 0.9;
    font-size: 12px;
    transform: translateY(1px);
}

.lang-switcher__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 150px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #e4e9f2;
    box-shadow: 0 18px 40px rgba(20, 30, 45, 0.18);
    padding: 8px;
    display: none;
    z-index: 40;
}

.lang-switcher[open] .lang-switcher__menu { display: block; }

.lang-switcher__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #2f3b4f;
    font-weight: 600;
    font-size: 13px;
}

.lang-switcher__item:hover {
    background: #f3f6fb;
}

.flag {
    width: 16px;
    height: 11px;
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
    flex: 0 0 16px;
}

.flag-id {
    background: linear-gradient(#e11d48 0 50%, #ffffff 50% 100%);
}

.flag-en {
    position: relative;
    background: repeating-linear-gradient(
        to bottom,
        #b91c1c 0,
        #b91c1c 10%,
        #ffffff 10%,
        #ffffff 20%
    );
}

.flag-en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 55%;
    background: #1d4ed8;
    border-top-left-radius: 2px;
}

.lang-switcher--outside {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 60;
}

.lang-switcher--outside .lang-switcher__btn {
    background: var(--topbar-bg);
    border-color: var(--topbar-border);
    color: var(--text);
    backdrop-filter: blur(8px);
}

@media (max-width: 760px) {
    .topbar {
        margin-right: 0;
    }

    .lang-switcher--outside {
        right: 10px;
        top: 10px;
        transform: none;
    }
}

.lang-switcher--outside .lang-switcher__btn {
    background: var(--topbar-bg);
    border-color: var(--topbar-border);
    color: var(--text);
    backdrop-filter: blur(8px);
}

.header-shell.is-solid .lang-switcher--outside .lang-switcher__btn {
    background: #ffffff;
    border-color: #e4e9f2;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    min-height: 34px;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-pill {
    background: var(--green);
    color: #fff;
}

.btn-pill:hover {
    background: var(--green-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    background: var(--surface-soft);
    border-color: var(--green);
    color: var(--green-dark);
}

.btn-outline {
    border: 1px solid var(--line);
    color: var(--brand);
    background: var(--surface);
}

.btn-outline:hover {
    border-color: var(--green);
    background: rgba(106, 171, 62, 0.08);
    color: var(--green-dark);
}

.header-shell.is-solid .topbar,
.header-shell .topbar {
    background: var(--topbar-solid-bg);
    box-shadow: var(--shadow);
    border-color: var(--topbar-border);
}

.header-shell.is-solid .brand-main,
.header-shell .brand-main {
    color: var(--text);
    text-shadow: none;
}

.header-shell.is-solid .brand-icon,
.header-shell .brand-icon {
    padding: 5px;
    border-radius: 10px;
    background: linear-gradient(145deg, #f8faf6 0%, #e8efe3 100%);
    box-shadow: 0 2px 8px rgba(42, 52, 38, 0.1);
    filter: saturate(1.2) contrast(1.15) brightness(1);
}

.header-shell.is-solid .nav-item > .nav-link,
.header-shell .nav-item > .nav-link {
    color: var(--text);
}

.header-shell.is-solid .nav-item > .nav-link.is-active,
.header-shell .nav-item > .nav-link.is-active {
    color: var(--green-dark);
    font-weight: 600;
}

.header-shell.is-solid .btn-ghost,
.header-shell .btn-ghost {
    color: var(--text);
    border-color: var(--line);
}

.header-shell.is-solid .wbb-lang-btn.is-active,
.header-shell .wbb-lang-btn.is-active {
    background: rgba(106, 171, 62, 0.14);
    border-color: var(--green);
    color: var(--green-dark);
}

.btn-circle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #eff8e8;
    color: #4d8f34;
    border: 1px solid #d1e4c2;
}

.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: flex-start;
    background-image: url("https://images.unsplash.com/photo-1611284446314-60a58ac0deb9?auto=format&fit=crop&w=2000&q=80");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-top: 165px;
    padding-bottom: 64px;
}

.hero h1 {
    margin: 0 0 18px;
    max-width: 610px;
    font-size: clamp(44px, 4.5vw, 60px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 600;
}

.hero p {
    margin: 0;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
    margin-top: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.4rem;
}

.section {
    padding: 88px 0;
}

.section-about {
    background: var(--surface-soft);
}

.about-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 38px;
    align-items: center;
}

.about-text h2 {
    margin: 0 0 12px;
    font-size: clamp(36px, 3.5vw, 48px);
    line-height: 1.14;
}

.about-text p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 16px;
}

.about-image {
    min-height: 280px;
    border-radius: 26px 26px 80px 26px;
    background-image: url("https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
}

.section-intro h2,
.section-head h2,
.member-wrap h2,
.cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(36px, 3.8vw, 50px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    font-weight: 500;
}

.section-intro p {
    margin: 0 0 36px;
    max-width: 740px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.program-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
}

.program-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 22px 16px;
}

.program-item {
    background: var(--surface);
    border-top: 2px solid var(--green);
    border-radius: 0 0 10px 10px;
    border-left: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 16px 6px 16px;
}

.program-item h3 {
    margin: 8px 0 10px;
    font-size: clamp(36px, 3vw, 46px);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
}

.program-item p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.program-item__link {
    color: inherit;
    text-decoration: none;
}

.program-item__link:hover h3 {
    color: var(--brand);
}

.program-item__more {
    color: var(--brand);
    font-weight: 600;
    text-decoration: none;
}

.program-item__more:hover {
    text-decoration: underline;
}

.program-image {
    width: 100%;
    min-height: 430px;
    border-radius: 42px;
    background-image: url("https://images.unsplash.com/photo-1634655377960-c8b17ca98f1c?auto=format&fit=crop&w=800&q=80");
    background-size: cover;
    background-position: center;
}

.program-controls {
    margin-top: 30px;
}

.section-soft {
    background: var(--surface-soft);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.highlight-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    color: var(--text);
}

.highlight-card h3,
.highlight-card p {
    margin: 8px 14px 12px;
}

.highlight-card h3 {
    font-size: 34px;
    line-height: 1.24;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text);
}

.highlight-card p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 15px;
}

.highlight-date {
    margin-bottom: 0;
    color: var(--muted) !important;
    font-size: 14px;
}

.highlight-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.highlight-card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card--link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(27, 39, 63, 0.12);
}

.media-card--image .media-image-wrap {
    background: var(--surface-soft, #f8fafc);
    padding: 8px;
}

.media-image-full {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    cursor: zoom-in;
}

.media-image-wrap {
    cursor: zoom-in;
}

.wbb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(8, 12, 20, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.wbb-lightbox.is-open {
    display: flex;
}

.wbb-lightbox img {
    max-width: min(96vw, 1200px);
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.wbb-lightbox__close {
    position: absolute;
    top: 18px;
    right: 22px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    font-size: 22px;
    cursor: pointer;
}

.subpage-attach-media img[data-zoom] {
    cursor: zoom-in;
}

.media-card-body {
    padding: 12px 14px 14px;
}

.media-download-btn {
    font-size: 13px;
}

.media-embed-wrap {
    position: relative;
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.media-embed-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.image-one {
    background-image: url("https://images.unsplash.com/photo-1593113598332-cd288d649433?auto=format&fit=crop&w=1000&q=80");
}

.image-two {
    background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1000&q=80");
}

.image-three {
    background-image: url("https://images.unsplash.com/photo-1629462804802-f5f31f8f0f7a?auto=format&fit=crop&w=1000&q=80");
}

.section-member {
    background: var(--surface-soft);
}

.member-wrap {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: stretch;
}

.member-content {
    background: var(--surface);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 24px 26px;
    color: var(--text);
}

.member-wrap h2,
.member-content h2 {
    color: var(--text);
    margin: 0 0 12px;
}

.member-card {
    min-height: 260px;
    border-radius: 14px;
    border: 1px solid var(--card-border);
    background-image: url("https://images.unsplash.com/photo-1604187351574-c75ca79f5807?auto=format&fit=crop&w=800&q=80");
    background-size: cover;
    background-position: center;
}

.member-wrap p,
.member-content p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.member-wrap h3 {
    margin: 0 0 14px;
    font-size: 1.35rem;
}

.member-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.member-item {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    background: var(--surface-soft);
}

.member-item__link {
    display: grid;
    gap: 4px;
    text-decoration: none;
    color: inherit;
}

.member-item strong {
    color: var(--text);
    font-size: 1rem;
}

.member-item span {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.member-item__link:hover strong {
    color: var(--brand);
}

.member-item__more {
    font-size: .88rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.member-item__more:hover {
    text-decoration: underline;
}

.cta-copy {
    flex: 1 1 320px;
}

.newsletter-form {
    display: grid;
    gap: 10px;
    flex: 0 1 360px;
    min-width: min(100%, 280px);
}

.newsletter-form__field input {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    padding: 0 14px;
    font: inherit;
}

.newsletter-form__consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .84rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
}

.newsletter-form__consent input {
    margin-top: 3px;
}

.newsletter-form__btn {
    justify-self: start;
    background: #fff !important;
    color: #2a6b18 !important;
}

.newsletter-alert {
    border-radius: 8px;
    padding: 8px 10px;
    font-size: .86rem;
    line-height: 1.45;
}

.newsletter-alert--ok {
    background: rgba(255, 255, 255, .92);
    color: #166534;
}

.newsletter-alert--err {
    background: rgba(255, 255, 255, .92);
    color: #991b1b;
}

.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;
}

.partner-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.section-head h2 {
    color: var(--text);
}

.partner-list span {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text);
}

.section-cta {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cta-box {
    border-radius: 16px 16px 70px 16px;
    padding: 40px 42px;
    background-image: linear-gradient(110deg, rgba(97, 195, 71, 0.91), rgba(18, 59, 130, 0.9)), url("https://images.unsplash.com/photo-1527549993586-dff825b37782?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-box p {
    margin: 0;
    max-width: 710px;
    line-height: 1.55;
    font-size: 15px;
}

.section-contact {
    padding-top: 44px;
    padding-bottom: 26px;
}

.section-visit {
    padding-top: 56px;
    padding-bottom: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
}

.footer-grid h3 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}

.footer-grid p {
    margin: 0;
    color: #4f5b6c;
    line-height: 1.65;
    font-size: 15px;
}

.footer-map-block {
    margin: 28px 0 0;
}

.footer-col-about .footer-map-block h3 {
    margin-top: 0;
}

.footer-map-block h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
}

.footer-map-address {
    margin: 0 0 12px;
    color: #4f5b6c;
    line-height: 1.65;
    font-size: 15px;
    max-width: 52ch;
}

.footer-map-link {
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    color: #3d6eb5;
    text-decoration: none;
}

.footer-map-link:hover {
    color: #2a5088;
    text-decoration: underline;
}

.footer-map {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #d5dbe4;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.footer-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-list a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: #7cc154;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-list a.social-link--instagram {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.social-list a .social-icon-img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    border: 0;
}

.social-list a.social-link--whatsapp {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-whatsapp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #f0faf4;
    border: 1px solid #cdebd6;
}

.contact-whatsapp__copy h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-whatsapp__copy p {
    margin: 0;
    color: #4f5b6c;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-whatsapp__number {
    margin-top: 8px !important;
    font-weight: 600;
    color: #1f7a43 !important;
}

.contact-whatsapp__btn {
    background: #25d366;
    min-height: 42px;
    padding: 0 22px;
    flex-shrink: 0;
}

.contact-whatsapp__btn:hover {
    background: #1fb75a;
}

.wbb-whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 70;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wbb-whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.42);
    color: #fff;
}

@media (max-width: 760px) {
    .wbb-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .contact-whatsapp {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-form {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--input-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    background: var(--input-bg);
    color: var(--text);
}

.contact-form textarea {
    grid-column: span 3;
}

.contact-form .btn {
    justify-self: start;
}

.muted {
    color: var(--muted);
    margin: 0;
}

.footer {
    border-top: 1px solid var(--line);
    background: var(--surface-soft);
    color: var(--muted);
    text-align: center;
    padding: 16px 0 22px;
}

.footer p {
    margin: 0;
    font-size: 13px;
    line-height: 19px;
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .topbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
        padding: 8px 14px 8px 12px;
    }

    .brand {
        flex: 0 1 auto;
        min-width: 0;
        max-width: none;
        margin-right: auto;
    }

    .topbar-end {
        flex: 0 0 auto;
        margin-left: 0;
        justify-content: flex-end;
    }

    .auth-actions {
        display: none !important;
    }

    .mobile-header-controls {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-left: 0;
        flex-shrink: 0;
    }

    .mobile-header-controls .theme-toggle-btn--mobile {
        flex-shrink: 0;
    }

    .mobile-header-controls .wbb-hamburger {
        flex-shrink: 0;
    }

    .theme-toggle-btn--desktop {
        display: none !important;
    }

    .theme-toggle-btn--mobile {
        display: inline-flex !important;
    }

    .about-wrap {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .member-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero p,
    .section-intro p {
        font-size: 16px;
    }

    .hero-content {
        padding-top: 170px;
    }
}

@media (max-width: 760px) {
    .hero {
        min-height: 78vh;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .section {
        padding: 74px 0;
    }

    .header-shell {
        top: 10px;
    }

    .topbar {
        padding: 10px 12px 10px 10px;
        gap: 12px;
    }

    .mobile-header-controls {
        gap: 6px;
    }

    .brand-icon {
        width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .brand-main {
        font-size: 22px !important;
        line-height: 1.2 !important;
    }

    .brand-sub {
        font-size: 11px !important;
    }

    .section-intro p {
        font-size: 18px;
        line-height: 1.6;
    }

    .program-list,
    .highlight-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .highlight-card h3,
    .program-item h3 {
        font-size: 30px;
    }

    .contact-form textarea {
        grid-column: auto;
    }

    .cta-box {
        padding: 28px;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

}

/* ── Submenu content pages ─────────────────────────── */
.subpage-hero__content {
    padding-top: 130px;
    padding-bottom: 72px;
    text-align: left;
    max-width: 900px;
}

.subpage-hero.hero {
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.subpage-breadcrumb {
    margin: 0 0 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.82);
}

.subpage-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.subpage-breadcrumb a:hover {
    text-decoration: underline;
}

.subpage-hero__title {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 600;
}

.subpage-hero__desc {
    margin: 0;
    max-width: 760px;
    font-size: clamp(15px, 1.6vw, 18px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.subpage-layout {
    max-width: 920px;
    margin: 0 auto;
}

.subpage-prose {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text, #2e3b4a);
    margin-bottom: 36px;
}

.subpage-prose p {
    margin: 0 0 1em;
}

.subpage-media-gallery {
    margin-top: 8px;
}

.subpage-attachments {
    margin-bottom: 32px;
}

.subpage-attach-grid {
    display: grid;
    gap: 18px;
    margin-top: 16px;
}

.subpage-attach-doc {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line, #e5eae0);
    border-radius: 14px;
    background: var(--surface, #fff);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.subpage-attach-doc:hover {
    border-color: var(--green, #4a9c2f);
    box-shadow: 0 8px 24px rgba(74, 156, 47, 0.12);
}

.subpage-attach-doc__icon {
    font-size: 1.6rem;
}

.subpage-attach-doc__text strong {
    display: block;
    margin-bottom: 2px;
}

.subpage-attach-doc__text small {
    color: var(--muted, #6b7280);
}

.subpage-attach-media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line, #e5eae0);
    background: var(--surface, #fff);
}

.subpage-attach-media img,
.subpage-attach-media video {
    display: block;
    width: 100%;
    height: auto;
}

.subpage-attach-media figcaption {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

.subpage-attach-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 14px;
    overflow: hidden;
    background: #111;
}

.subpage-attach-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.subpage-attach-embed-title {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.subpage-attach-link {
    display: inline-flex;
}

.subpage-back {
    margin: 8px 0 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.team-card {
    background: var(--surface, #fff);
    border: 1px solid #e6ebf2;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(27, 39, 63, .06);
    text-align: center;
}

.team-card__photo {
    display: flex;
    justify-content: center;
    padding: 24px 18px 0;
}

.team-card__avatar {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e6ebf2;
    background: #f3f6fa;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(27, 39, 63, .08);
}

.team-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #ecfdf5, #e8eef5);
    color: #94a3b8;
}

.team-card__avatar-icon {
    width: 52px;
    height: 52px;
}

.team-card__body {
    padding: 16px 18px 20px;
}

.team-card__name {
    margin: 0 0 6px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.team-card__position {
    margin: 0 0 12px;
    color: #5c6778;
    font-size: .92rem;
}

.team-card__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
}

.team-card__contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #334155;
    text-decoration: none;
    word-break: break-word;
    transition: color .15s ease;
}

.team-card__contact-link:hover {
    color: var(--brand);
}

.team-card__contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.team-card__contact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.team-card__contact-text {
    text-align: left;
}

.team-card__contact-link--linkedin .team-card__contact-icon { color: #0a66c2; }
.team-card__contact-link--instagram .team-card__contact-icon { color: #e4405f; }
.team-card__contact-link--facebook .team-card__contact-icon { color: #1877f2; }
.team-card__contact-link--twitter .team-card__contact-icon { color: #000; }
.team-card__contact-link--youtube .team-card__contact-icon { color: #ff0000; }
.team-card__contact-link--tiktok .team-card__contact-icon { color: #000; }
.team-card__contact-link--whatsapp .team-card__contact-icon { color: #25d366; }
.team-card__contact-link--social .team-card__contact-icon { color: #64748b; }
.team-card__contact-link--email .team-card__contact-icon { color: #ea580c; }
.team-card__contact-link--phone .team-card__contact-icon { color: #0b7a5a; }

/* ── Footer links list ─────────────────────────────── */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
    opacity: .82;
    transition: opacity .15s;
    font-size: .93rem;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ── Social list icon sizing fix ───────────────────── */
.social-list a svg {
    display: block;
    width: 16px;
    height: 16px;
}

/* ── Language controls (tema tunggal: light) ───────── */
.theme-toggle-btn,
[data-theme-toggle],
.admin-theme-btn {
    display: none !important;
}

.wbb-lang-btn.is-active {
    background: rgba(106, 171, 62, 0.14);
    border-color: var(--green);
    color: var(--green-dark);
}

/* Form inputs — kontras konsisten */
input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea,
select {
    background: var(--input-bg);
    border-color: var(--input-border);
    color: var(--text);
}

input::placeholder,
textarea::placeholder {
    color: var(--muted);
    opacity: 0.85;
}

/* Halaman auth (login / signup) */
.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--bg);
}

.auth-card {
    background: var(--surface);
    border: 1px solid var(--card-border);
    color: var(--text);
}

/* ── Concern Form (How To Apply) ─────────────────────────────────────────── */
.concern-form-wrap {
    margin-top: 32px;
}

.concern-intro {
    margin-bottom: 24px;
}

.concern-intro__text {
    color: var(--muted);
    line-height: 1.65;
}

.concern-intro__text a {
    color: var(--brand);
    font-weight: 600;
}

.concern-form {
    border: 2px solid #a8c8e8;
    border-radius: 14px;
    padding: 24px;
    background: var(--surface-soft);
}

.concern-form__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.concern-form__title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    color: #1a3a6c;
}

.concern-form__subtitle {
    margin: 4px 0 0;
    font-style: italic;
    color: #2d5a9e;
}

.concern-form__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.concern-form__logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.concern-form__logo span {
    font-size: .72rem;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1.2;
}

.concern-form__divider {
    border: none;
    border-top: 2px solid #2d5a9e;
    margin: 18px 0;
    position: relative;
    text-align: center;
}

.concern-form__divider span {
    position: relative;
    top: -12px;
    background: var(--surface-soft);
    padding: 0 10px;
}

.concern-section {
    border: 2px solid #a8c8e8;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
}

.concern-section__head {
    margin: 0;
    padding: 10px 14px;
    text-align: center;
    font-size: .95rem;
    font-weight: 700;
}

.concern-section__head--blue {
    background: #dce9f8;
    color: #1a3a6c;
}

.concern-section__head--green {
    background: #d4edda;
    color: #1a3a6c;
}

.concern-table {
    width: 100%;
    border-collapse: collapse;
}

.concern-table th,
.concern-table td {
    border: 1px solid #b8cfe8;
    padding: 10px 12px;
    vertical-align: middle;
    font-size: .9rem;
}

.concern-table thead th {
    background: #eef4fb;
    text-align: left;
}

.concern-table tbody th {
    width: 38%;
    font-weight: 600;
    text-align: left;
    background: #f8fbff;
}

.concern-table input,
.concern-table select,
.concern-table textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #c5d9f0;
    border-radius: 8px;
    font: inherit;
    background: #fff;
}

.concern-consent-intro {
    padding: 14px 16px 0;
    margin: 0;
    font-weight: 600;
}

.concern-checklist {
    list-style: none;
    margin: 0;
    padding: 12px 16px;
}

.concern-checklist li {
    margin-bottom: 12px;
}

.concern-checklist label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.55;
    font-size: .9rem;
    cursor: pointer;
}

.concern-checklist input[type="checkbox"] {
    margin-top: 4px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.concern-meta-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 16px 16px;
}

.concern-meta-fields label {
    display: grid;
    gap: 6px;
    font-weight: 600;
    font-size: .9rem;
}

.concern-meta-fields input {
    padding: 8px 10px;
    border: 1px solid #c5d9f0;
    border-radius: 8px;
    font: inherit;
    min-width: 180px;
}

.concern-signatures {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid #c5d9f0;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.concern-sig-block {
    padding: 14px;
    text-align: center;
}

.concern-sig-block + .concern-sig-block {
    border-left: 1px solid #c5d9f0;
}

.concern-sig-block p {
    margin: 0 0 8px;
    font-size: .88rem;
    font-weight: 600;
}

.concern-sig-pad {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border: 1px dashed #7a9bc4;
    border-radius: 8px;
    background: #fafcff;
    touch-action: none;
    cursor: crosshair;
}

.concern-sig-clear {
    margin-top: 8px;
    font-size: .82rem !important;
}

.concern-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.concern-form-msg {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: .92rem;
}

.concern-form-msg--err {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.concern-success {
    margin-top: 24px;
    padding: 24px;
    border-radius: 14px;
    background: #effdf3;
    border: 1px solid #b7e7c3;
}

.concern-success h3 {
    margin: 0 0 10px;
    color: #166534;
}

.concern-success p {
    margin: 0 0 14px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .concern-signatures {
        grid-template-columns: 1fr;
    }

    .concern-sig-block + .concern-sig-block {
        border-left: none;
        border-top: 1px solid #c5d9f0;
    }
}
