/**
 * BJS Property — Custom Styles
 * Tema premium: putih/abu dominan, hitam untuk CTA utama, merah untuk aksen
 */

 /* setting warna dan font diambil dari includes/header.php, yang ada di style.css dikomen dulu, siapa tahu nanti berguna.
:root {
    --bjs-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bjs-font-size-base: 1.0625rem;
    --bjs-line-height: 1.65;
    --bjs-logo-red: #FF0000;
    --bjs-white: #FFFFFF;
    --bjs-black: #1A1A1A;
    --bjs-primary: #1A1A1A;
    --bjs-primary-hover: #333333;
    --bjs-accent: #FF0000;
    --bjs-accent-hover: #CC0000;
    --bjs-accent-light: #FF4D4D;
    --bjs-accent-soft: #FFE8E8;
    --bjs-gray-dark: #333333;
    --bjs-gray-text: #666666;
    --bjs-gray-light: #ECEFF1;
    --bjs-gray-section: #F5F5F5;
    --bjs-gray-medium: #E8E8E8;
    --bjs-whatsapp: #25D366;
}
*/

html {
    font-size: 16px;
}

html, body {
    height: 100%;
}

body {
    font-family: var(--bjs-font-sans);
    font-size: var(--bjs-font-size-base);
    line-height: var(--bjs-line-height);
    color: var(--bjs-gray-dark);
    background-color: var(--bjs-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.btn,
.form-control,
.form-select {
    font-family: var(--bjs-font-sans);
}

main {
    flex: 1 0 auto;
}

/* Judul & teks brand — gelap premium, bukan merah */
.text-brand {
    color: var(--bjs-primary) !important;
}

.text-accent {
    color: var(--bjs-accent) !important;
}

.text-muted-brand {
    color: var(--bjs-gray-text) !important;
}

/* Tombol utama — hitam elegan */
.btn-brand {
    background-color: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.btn-brand:hover,
.btn-brand:focus {
    background-color: var(--bjs-primary-hover);
    border-color: var(--bjs-primary-hover);
    color: var(--bjs-white);
}

/* Tombol aksen merah (promo/highlight) */
.btn-accent {
    background-color: var(--bjs-accent);
    border-color: var(--bjs-accent);
    color: var(--bjs-white);
}

.btn-accent:hover,
.btn-accent:focus {
    background-color: var(--bjs-accent-hover);
    border-color: var(--bjs-accent-hover);
    color: var(--bjs-white);
}

/* Navbar standar (halaman selain home) */
.site-navbar:not(.site-navbar--overlay) {
    background-color: var(--bjs-white) !important;
    border-bottom: 1px solid var(--bjs-gray-medium);
}

.site-navbar:not(.site-navbar--overlay) .navbar-nav .nav-link {
    color: var(--bjs-gray-dark);
}

.site-navbar:not(.site-navbar--overlay) .navbar-nav .nav-link:hover,
.site-navbar:not(.site-navbar--overlay) .navbar-nav .nav-link:focus {
    color: var(--bjs-accent);
}

.site-navbar:not(.site-navbar--overlay) .navbar-nav .nav-link.active {
    color: var(--bjs-primary);
    font-weight: 600;
    border-bottom: 2px solid var(--bjs-accent);
}

/* Navbar overlay home — transparan di atas hero (ref. sinarmasland.com) */
.site-navbar--overlay {
    background-color: transparent !important;
    border-bottom: 1px solid transparent;
    box-shadow: none !important;
    transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-navbar--overlay .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
    padding-left: .75rem;
    padding-right: .75rem;
}

.site-navbar--overlay .navbar-nav .nav-link:hover,
.site-navbar--overlay .navbar-nav .nav-link:focus {
    color: var(--bjs-white);
}

.site-navbar--overlay .navbar-nav .nav-link.active {
    color: var(--bjs-white);
    font-weight: 600;
    border-bottom: 2px solid var(--bjs-white);
}

.site-navbar--overlay .lang-switcher-link {
    color: rgba(255, 255, 255, .85);
}

.site-navbar--overlay .lang-switcher-link:hover,
.site-navbar--overlay .lang-switcher-link.active {
    color: var(--bjs-white);
}

.site-navbar--overlay .lang-switcher-sep {
    color: rgba(255, 255, 255, .45);
}

.site-navbar--overlay .btn-nav-promo {
    border-color: rgba(255, 255, 255, .75);
    color: var(--bjs-white);
}

.site-navbar--overlay .btn-nav-promo:hover {
    background-color: var(--bjs-white);
    border-color: var(--bjs-white);
    color: var(--bjs-primary);
}

.site-navbar--overlay .navbar-toggler {
    border-color: rgba(255, 255, 255, .5);
}

.site-navbar--overlay .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Setelah scroll — kembali putih */
.site-navbar--overlay.is-scrolled {
    background-color: var(--bjs-white) !important;
    border-bottom: 1px solid var(--bjs-gray-medium);
    box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .08) !important;
}

.site-navbar--overlay.is-scrolled .navbar-nav .nav-link {
    color: var(--bjs-gray-dark);
}

.site-navbar--overlay.is-scrolled .navbar-nav .nav-link:hover,
.site-navbar--overlay.is-scrolled .navbar-nav .nav-link:focus {
    color: var(--bjs-accent);
}

.site-navbar--overlay.is-scrolled .navbar-nav .nav-link.active {
    color: var(--bjs-primary);
    border-bottom-color: var(--bjs-accent);
}

.site-navbar--overlay.is-scrolled .lang-switcher-link {
    color: var(--bjs-gray-text);
}

.site-navbar--overlay.is-scrolled .lang-switcher-link:hover,
.site-navbar--overlay.is-scrolled .lang-switcher-link.active {
    color: var(--bjs-accent);
}

.site-navbar--overlay.is-scrolled .lang-switcher-sep {
    color: var(--bjs-gray-medium);
}

.site-navbar--overlay.is-scrolled .btn-nav-promo {
    border-color: var(--bjs-primary);
    color: var(--bjs-primary);
}

.site-navbar--overlay.is-scrolled .btn-nav-promo:hover {
    background-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.site-navbar--overlay.is-scrolled .navbar-toggler {
    border-color: var(--bjs-gray-medium);
}

.site-navbar--overlay.is-scrolled .navbar-toggler-icon {
    filter: none;
}

.site-navbar .navbar-nav .nav-link {
    font-weight: 500;
    padding-left: .75rem;
    padding-right: .75rem;
}

.site-navbar .navbar-toggler {
    border-color: var(--bjs-gray-medium);
}

.site-logo {
    width: auto;
    max-height: 44px;
}

.site-logo-wrap {
    line-height: 0;
}

.site-logo--light {
    display: none;
}

/* Home overlay: teks logo putih di atas hero, gelap setelah scroll */
.site-navbar--overlay:not(.is-scrolled) .site-logo--dark {
    display: none;
}

.site-navbar--overlay:not(.is-scrolled) .site-logo--light {
    display: inline-block;
}

.site-navbar--overlay.is-scrolled .site-logo--dark {
    display: inline-block;
}

.site-navbar--overlay.is-scrolled .site-logo--light {
    display: none;
}

.dropdown-menu-nav {
    --bs-dropdown-border-width: 0;
    border: 0;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .08);
    max-height: 70vh;
    overflow-y: auto;
}

@media (min-width: 992px) {
    .site-navbar .navbar-nav .dropdown-hover {
        position: relative;
    }

    .site-navbar .navbar-nav .dropdown-hover > .dropdown-toggle:focus,
    .site-navbar .navbar-nav .dropdown-hover > .dropdown-toggle:focus-visible,
    .site-navbar .navbar-nav .dropdown-hover > .dropdown-toggle.show {
        outline: none;
        box-shadow: none;
    }

    .site-navbar .navbar-nav .dropdown-hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity .15s ease, visibility .15s ease;
    }

    .site-navbar .navbar-nav .dropdown-hover:hover > .dropdown-menu,
    .site-navbar .navbar-nav .dropdown-hover:focus-within > .dropdown-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .site-navbar .navbar-nav .dropdown-hover > .dropdown-toggle::after {
        transition: transform .2s ease;
    }

    .site-navbar .navbar-nav .dropdown-hover:hover > .dropdown-toggle::after,
    .site-navbar .navbar-nav .dropdown-hover:focus-within > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

.dropdown-menu-nav .dropdown-item:hover,
.dropdown-menu-nav .dropdown-item:focus {
    background-color: var(--bjs-accent-soft);
    color: var(--bjs-accent-hover);
}

.dropdown-menu-nav .dropdown-item.active {
    background-color: var(--bjs-accent-soft);
    color: var(--bjs-accent-hover);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .site-navbar--overlay:not(.is-scrolled) .navbar-collapse {
        background: rgba(26, 26, 26, .92);
        padding: 1rem;
        border-radius: .5rem;
        margin-top: .75rem;
    }

    .site-navbar--overlay.is-scrolled .navbar-collapse {
        background: var(--bjs-white);
        padding: 1rem;
        border-radius: .5rem;
        margin-top: .75rem;
        border: 1px solid var(--bjs-gray-medium);
    }
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9375rem;
    font-weight: 600;
    color: var(--bjs-gray-text);
    padding: .25rem .5rem;
}

.lang-switcher-link {
    color: var(--bjs-gray-text);
    text-decoration: none;
    padding: .15rem .25rem;
    border-radius: .25rem;
    transition: color .15s ease;
}

.lang-switcher-link:hover {
    color: var(--bjs-accent);
}

.lang-switcher-link.active {
    color: var(--bjs-accent);
    font-weight: 700;
}

.lang-switcher-sep {
    color: var(--bjs-gray-medium);
    user-select: none;
}

/* Hero home — menyatu dengan navbar overlay */
.page-home .home-main {
    flex: 1 0 auto;
}

.page-home .hero-section {
    min-height: 100vh;
    margin-top: 0;
    padding-top: 0;
}

.page-home .hero-section .container {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.hero-section {
    position: relative;
    min-height: 75vh;
    background-color: var(--bjs-black);
    background-size: cover;
    background-position: center;
    color: var(--bjs-white);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .2) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    background-color: var(--bjs-accent-soft);
    color: var(--bjs-accent-hover);
    border: 1px solid var(--bjs-accent-light);
    font-weight: 600;
}

.section-title {
    color: var(--bjs-primary);
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background-color: var(--bjs-accent);
    margin: .75rem auto 0;
}

.section-title.text-start::after {
    margin-left: 0;
}

.min-vh-50 {
    min-height: 50vh;
}

.bg-section-alt {
    background-color: var(--bjs-gray-section);
}

.project-card {
    transition: transform .2s ease, box-shadow .2s ease;
    border: 1px solid var(--bjs-gray-medium) !important;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1) !important;
}

.price-highlight {
    color: var(--bjs-accent);
    font-weight: 600;
}

.site-footer {
    background-color: var(--bjs-black);
    flex-shrink: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, .3);
}

.footer-link {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--bjs-accent-light);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--bjs-whatsapp);
    color: var(--bjs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    z-index: 1080;
    text-decoration: none;
}

.whatsapp-float:hover {
    color: var(--bjs-white);
    transform: scale(1.05);
}

/* ==========================================================================
   Home — slideshow hero, lead form, carousel, artikel layout
   ========================================================================== */

.page-home .hero-section--slideshow {
    overflow: hidden;
}

.hero-section--slideshow::before {
    display: none;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow .carousel-inner,
.hero-slideshow .carousel-item,
.hero-slide-bg {
    height: 100%;
}

.hero-slide-bg {
    position: relative;
    background-color: var(--bjs-black);
    background-size: cover;
    background-position: center;
}

.hero-slide-bg__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .35) 60%, rgba(0, 0, 0, .2) 100%);
    pointer-events: none;
}

.hero-slideshow__content {
    position: relative;
    z-index: 2;
}

.hero-slideshow__indicators {
    position: absolute;
    right: 0;
    bottom: 1.5rem;
    left: 0;
    z-index: 4;
    margin: 0;
    pointer-events: auto;
}

.hero-slideshow__indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .75);
    background-color: transparent;
    opacity: 1;
}

.hero-slideshow__indicators .active {
    background-color: var(--bjs-white);
}

.home-lead {
    background-color: var(--bjs-white);
}

.home-key-figures {
    background-color: var(--bjs-gray-section);
}

.home-key-figures__item {
    padding: .5rem .75rem;
}

.home-key-figures__value {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--bjs-primary);
    line-height: 1.2;
}

.home-key-figures__label {
    font-size: .9375rem;
    color: var(--bjs-gray-text);
    margin-top: .35rem;
    line-height: 1.4;
}

@media (min-width: 992px) {
    .home-key-figures__grid > div:not(:last-child) .home-key-figures__item {
        border-right: 1px solid var(--bjs-gray-medium);
    }
}

.home-lead__box {
    max-width: 960px;
}

.home-lead__title {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--bjs-primary);
    letter-spacing: .02em;
}

.home-lead__form .form-control {
    border-color: var(--bjs-gray-medium);
}

.home-lead__form .form-control:focus {
    border-color: var(--bjs-accent);
    box-shadow: 0 0 0 .2rem rgba(255, 0, 0, .12);
}

.home-about-carousel .carousel-inner {
    padding: .25rem;
    background: var(--bjs-white);
}

.home-about-carousel__img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: .375rem;
}

.home-about-carousel__placeholder {
    aspect-ratio: 4 / 3;
    background: var(--bjs-gray-light);
}

.home-about-carousel .carousel-control-prev,
.home-about-carousel .carousel-control-next {
    width: 12%;
}

.project-carousel-wrap {
    position: relative;
    padding: 0 2.75rem;
}

.project-carousel {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: .5rem 0 1rem;
    scrollbar-width: none;
}

.project-carousel::-webkit-scrollbar {
    display: none;
}

.project-carousel__item {
    flex: 0 0 clamp(260px, 72vw, 340px);
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.project-carousel__media {
    position: relative;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 .5rem 1.25rem rgba(0, 0, 0, .1);
    aspect-ratio: 4 / 5;
    background: var(--bjs-gray-light);
}

.project-carousel__media img,
.project-carousel__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.project-carousel__placeholder {
    background: linear-gradient(135deg, var(--bjs-gray-medium), var(--bjs-gray-light));
}

.project-carousel__item:hover .project-carousel__media img {
    transform: scale(1.08);
}

.project-carousel__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, .72) 100%);
}

.project-carousel__title {
    margin: 0;
    color: var(--bjs-white);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.project-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 50%;
    background: var(--bjs-white);
    color: var(--bjs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    z-index: 2;
}

.project-carousel__nav:hover {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.project-carousel__nav--prev {
    left: 0;
}

.project-carousel__nav--next {
    right: 0;
}

.home-video-embed iframe {
    border: 0;
}

.home-articles__view-all {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--bjs-accent);
    white-space: nowrap;
    transition: color .2s ease, gap .2s ease;
}

.home-articles__view-all:hover {
    color: var(--bjs-accent-hover);
    gap: .5rem;
}

.home-article-category {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--bjs-accent);
    margin-bottom: .35rem;
}

.home-article-featured .home-article-category {
    margin-bottom: .5rem;
}

.home-article-featured {
    display: block;
    color: inherit;
    transition: opacity .2s ease;
}

.home-article-featured:hover {
    opacity: .92;
}

.home-article-featured__media {
    aspect-ratio: 16 / 10;
    background: var(--bjs-gray-light);
}

.home-article-featured__media img,
.home-article-featured__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-article-featured__placeholder {
    background: linear-gradient(135deg, var(--bjs-gray-medium), var(--bjs-gray-light));
}

.home-article-featured:hover .home-article-featured__media img {
    transform: scale(1.03);
}

.home-article-list {
    color: inherit;
    transition: opacity .2s ease;
}

.home-article-list:hover {
    opacity: .9;
}

.home-article-list__thumb {
    width: 120px;
    height: 90px;
    background: var(--bjs-gray-light);
}

.home-article-list__thumb img,
.home-article-list__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-article-list__placeholder {
    background: linear-gradient(135deg, var(--bjs-gray-medium), var(--bjs-gray-light));
}

/* --- Homepage: Keunggulan --- */
.home-advantages {
    overflow: hidden;
}

.home-advantages__slider-wrap {
    position: relative;
    padding: 0 2.75rem;
}

.home-advantages__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: .75rem .25rem 1.25rem;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent, #000 1.5rem, #000 calc(100% - 1.5rem), transparent);
}

.home-advantages__track::-webkit-scrollbar {
    display: none;
}

.home-advantages__track:focus {
    outline: none;
}

.home-advantages__track:focus-visible {
    box-shadow: 0 0 0 2px var(--bjs-accent-soft);
    border-radius: .75rem;
}

.home-advantages__card {
    flex: 0 0 clamp(280px, 78vw, 340px);
    scroll-snap-align: start;
    background: var(--bjs-white);
    border: 1px solid rgba(26, 26, 26, .08);
    border-radius: 1rem;
    padding: 2rem 1.75rem 1.75rem;
    min-height: 100%;
    box-shadow: 0 .35rem 1.25rem rgba(26, 26, 26, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.home-advantages__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bjs-accent), var(--bjs-accent-light));
    opacity: 0;
    transition: opacity .25s ease;
}

.home-advantages__card:hover {
    transform: translateY(-4px);
    border-color: var(--bjs-accent-soft);
    box-shadow: 0 .75rem 2rem rgba(26, 26, 26, .1);
}

.home-advantages__card:hover::before {
    opacity: 1;
}

.home-advantages__icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1.125rem;
    background: linear-gradient(145deg, var(--bjs-accent-soft) 0%, #fff 100%);
    color: var(--bjs-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 0, 0, .08);
}

.home-advantages__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bjs-primary);
    margin-bottom: .65rem;
    line-height: 1.35;
}

.home-advantages__text {
    font-size: .9375rem;
    color: var(--bjs-gray-text);
    line-height: 1.6;
}

.home-advantages__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 50%;
    background: var(--bjs-white);
    color: var(--bjs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.home-advantages__nav:hover {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.home-advantages__nav--prev {
    left: 0;
}

.home-advantages__nav--next {
    right: 0;
}

.home-advantages__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: .25rem;
}

.home-advantages__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bjs-gray-medium);
    opacity: .85;
    transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.home-advantages__dot.is-active {
    background: var(--bjs-primary);
    opacity: 1;
    transform: scale(1.2);
}

/* --- Homepage: Lokasi --- */
.home-location__list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.home-location__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.15rem;
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    border-radius: .75rem;
}

.home-location__icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--bjs-accent-soft);
    color: var(--bjs-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.home-location__body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .75rem;
}

.home-location__name {
    color: var(--bjs-primary);
}

.home-location__distance {
    color: var(--bjs-gray-text);
    font-size: .9375rem;
}

/* --- Homepage: Virtual Tour --- */
.home-virtual-tour__card {
    background: transparent;
    cursor: pointer;
}

.home-virtual-tour__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--bjs-gray-light);
}

.home-virtual-tour__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-virtual-tour__card:hover .home-virtual-tour__media img {
    transform: scale(1.03);
}

.home-virtual-tour__placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    font-size: 3rem;
    color: var(--bjs-gray-text);
    background: var(--bjs-gray-light);
}

.home-virtual-tour__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, .25);
    color: #fff;
    font-size: 3rem;
    transition: background .2s ease;
}

.home-virtual-tour__card:hover .home-virtual-tour__play {
    background: rgba(26, 26, 26, .4);
}

/* --- Homepage: Progress --- */
.home-progress__card {
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    border-radius: .75rem;
    padding: 1.25rem;
}

.home-progress__media {
    aspect-ratio: 16 / 10;
    background: var(--bjs-gray-light);
}

.home-progress__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-progress__percent {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.home-progress__percent .progress {
    flex: 1;
    background-color: var(--bjs-gray-medium);
}

.home-progress__percent .progress-bar {
    background-color: var(--bjs-accent);
}

/* --- Homepage: Testimoni --- */
.home-testimonials__carousel .carousel-control-prev,
.home-testimonials__carousel .carousel-control-next {
    width: 3rem;
    opacity: .85;
}

.home-testimonials__card {
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    border-radius: .75rem;
    padding: 1.75rem;
    margin: 0;
}

.home-testimonials__quote {
    font-size: 2rem;
    line-height: 1;
    color: var(--bjs-accent);
    opacity: .35;
}

.home-testimonials__text {
    color: var(--bjs-gray-text);
    line-height: 1.65;
    font-size: 1rem;
}

.home-testimonials__name {
    font-style: normal;
    font-weight: 700;
    color: var(--bjs-primary);
}

.home-testimonials__avatar {
    object-fit: cover;
    flex-shrink: 0;
}

.home-testimonials__avatar--placeholder {
    width: 56px;
    height: 56px;
    background: var(--bjs-gray-light);
    color: var(--bjs-gray-text);
    font-size: 1.5rem;
}

/* --- Homepage: CTA Promo --- */
.home-cta-promo {
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
}

.home-cta-promo__box {
    max-width: 760px;
    color: #ffffff;
}

.home-cta-promo__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #ffffff;
}

.home-cta-promo__lead {
    color: rgba(255, 255, 255, 0.92);
}

.home-cta-promo__note {
    color: rgba(255, 255, 255, 0.75);
}

.home-cta-promo__form .form-control {
    border: 0;
}

/* --- Homepage: Mitra --- */
.home-partners {
    overflow: hidden;
}

.home-partners__slider-wrap {
    position: relative;
    padding: 0 2.75rem;
}

.home-partners__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: .5rem .25rem 1rem;
    scrollbar-width: none;
}

.home-partners__track::-webkit-scrollbar {
    display: none;
}

.home-partners__track:focus {
    outline: none;
}

.home-partners__track:focus-visible {
    box-shadow: 0 0 0 2px var(--bjs-accent-soft);
    border-radius: .75rem;
}

.home-partners__card {
    flex: 0 0 clamp(220px, 42vw, 280px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}

.home-partners__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 1.5rem;
    border: 1px solid rgba(26, 26, 26, .08);
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    box-shadow: 0 .65rem 1.5rem rgba(26, 26, 26, .07);
    cursor: zoom-in;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-partners__media:hover,
.home-partners__media:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(26, 26, 26, .12);
    border-color: rgba(26, 26, 26, .14);
    outline: none;
}

.home-partners__media--fallback {
    cursor: default;
    color: var(--bjs-gray-text);
    font-size: 2.5rem;
}

.home-partners__media--fallback:hover {
    transform: none;
    box-shadow: 0 .65rem 1.5rem rgba(26, 26, 26, .07);
}

.home-partners__img {
    width: 100%;
    height: 100%;
    /* max-height: 140px; */
    object-fit: contain;
    display: block;
    transition: transform .3s ease;
}

.home-partners__media:hover .home-partners__img {
    transform: scale(1.04);
}

.home-partners__title {
    margin: 1rem 0 0;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--bjs-primary);
}

.home-partners__nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 50%;
    background: var(--bjs-white);
    color: var(--bjs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    z-index: 2;
}

.home-partners__nav:hover {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.home-partners__nav--prev {
    left: 0;
}

.home-partners__nav--next {
    right: 0;
}

.home-partners__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: .25rem;
}

.home-partners__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bjs-gray-medium);
    opacity: .85;
    transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.home-partners__dot.is-active {
    background: var(--bjs-primary);
    opacity: 1;
    transform: scale(1.2);
}

.home-partner-modal__stage {
    position: relative;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.home-partner-modal__frame {
    flex: 1 1 auto;
    min-width: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
    border: 1px solid rgba(26, 26, 26, .08);
    padding: 1rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-partner-modal__nav {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 50%;
    background: var(--bjs-white);
    color: var(--bjs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.home-partner-modal__nav:hover {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.home-partner-modal__counter {
    font-size: .85rem;
    font-weight: 600;
    color: var(--bjs-gray-text);
    letter-spacing: .04em;
}

.home-partner-modal__img {
    max-width: 100%;
    max-height: min(52vh, 420px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-partner-modal__caption {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bjs-primary);
}

/* --- Homepage: Client Logo Slider --- */
.home-client-logos {
    overflow: hidden;
}

.home-client-logos__slider-wrap {
    position: relative;
    padding: 0 2.75rem;
}

.home-client-logos__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: .5rem .25rem 1rem;
    scrollbar-width: none;
}

.home-client-logos__track::-webkit-scrollbar {
    display: none;
}

.home-client-logos__item {
    flex: 0 0 150px;
    scroll-snap-align: start;
}

.home-client-logos__card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    /* min-height: 96px;
    padding: .75rem 1rem; */
    border: 1px solid rgba(26, 26, 26, .08);
    border-radius: .85rem;
    background: var(--bjs-white);
    box-shadow: 0 .5rem 1.25rem rgba(26, 26, 26, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-client-logos__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .85rem 1.5rem rgba(26, 26, 26, .1);
}

.home-client-logos__img {
    display: block;
    width: 100%;
    max-width: 150px;
    max-height: 80px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    /* filter: grayscale(1); */
    opacity: .82;
    transition: filter .25s ease, opacity .25s ease;
}

.home-client-logos__card:hover .home-client-logos__img {
    filter: grayscale(0);
    opacity: 1;
}

.home-client-logos__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 50%;
    background: var(--bjs-white);
    color: var(--bjs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .08);
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
    z-index: 2;
}

.home-client-logos__nav:hover {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
    color: var(--bjs-white);
}

.home-client-logos__nav--prev {
    left: 0;
}

.home-client-logos__nav--next {
    right: 0;
}

.home-client-logos__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: .25rem;
}

.home-client-logos__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--bjs-gray-medium);
    opacity: .85;
    transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.home-client-logos__dot.is-active {
    background: var(--bjs-primary);
    opacity: 1;
    transform: scale(1.2);
}

.site-footer--home {
    background-color: var(--bjs-black);
}

.site-footer__logo-group {
    display: block;
    max-width: 180px;
    height: auto;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    transition: background-color .2s ease, transform .2s ease;
}

.site-footer__social-link:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px);
}

.site-footer__social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.site-footer--home .site-footer__links li {
    line-height: 2.1;
}

.site-footer--home .site-footer__links .footer-link {
    line-height: 2.1;
}

@media (max-width: 767.98px) {
    .project-carousel-wrap {
        padding: 0;
    }

    .project-carousel__nav {
        display: none;
    }

    .project-carousel__item {
        flex-basis: 78vw;
    }

    .home-advantages__slider-wrap {
        padding: 0;
    }

    .home-advantages__nav {
        display: none;
    }

    .home-advantages__track {
        mask-image: none;
        padding-left: 0;
        padding-right: 0;
    }

    .home-advantages__card {
        flex-basis: 82vw;
    }

    .home-partners__slider-wrap {
        padding: 0;
    }

    .home-partners__nav {
        display: none;
    }

    .home-partners__card {
        flex-basis: 72vw;
    }

    .home-client-logos__slider-wrap {
        padding: 0;
    }

    .home-client-logos__nav {
        display: none;
    }

    .home-client-logos__item {
        flex: 0 0 150px;
    }

    .home-partner-modal__stage {
        gap: .5rem;
    }

    .home-partner-modal__nav {
        width: 36px;
        height: 36px;
    }

    .home-article-list__thumb {
        width: 100px;
        height: 76px;
    }
}

/* ==========================================================================
   Halaman Proyek — daftar & detail
   ========================================================================== */

.projects-page-hero {
    background: linear-gradient(145deg, #141414 0%, #1f1f1f 45%, #2c2620 100%);
    color: var(--bjs-white);
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.projects-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(184, 150, 62, .18) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(255, 255, 255, .04) 0%, transparent 50%);
    pointer-events: none;
}

.projects-page-hero .container {
    position: relative;
    z-index: 1;
}

.projects-page-hero__eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bjs-accent-light);
}

.projects-page-hero__title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.projects-page-hero__lead {
    color: rgba(255, 255, 255, .72);
    font-size: 1.05rem;
    max-width: 36rem;
    line-height: 1.7;
}

.projects-page-hero__stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.projects-page-hero__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--bjs-accent-light);
}

.projects-page-hero__stat-label {
    margin-top: .35rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
}

.projects-listing {
    padding: 2.5rem 0 4rem;
    background: var(--bjs-gray-section);
}

.projects-toolbar {
    background: var(--bjs-white);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 .25rem 1.25rem rgba(15, 23, 42, .06);
    border: 1px solid rgba(0, 0, 0, .04);
    margin-bottom: 1.5rem;
}

.projects-toolbar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bjs-gray-medium);
}

.projects-toolbar__title {
    color: var(--bjs-black);
    font-weight: 600;
}

.projects-toolbar__reset {
    font-size: .875rem;
    color: var(--bjs-accent);
    text-decoration: none;
    font-weight: 500;
}

.projects-toolbar__reset:hover {
    color: var(--bjs-accent-hover);
}

.projects-filter-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .projects-filter-form {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-filter-form__field--price {
        grid-column: span 2;
    }

    .projects-filter-form__action {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .projects-filter-form {
        grid-template-columns: 1.2fr 1fr 1.5fr auto;
        align-items: end;
    }

    .projects-filter-form__field--price,
    .projects-filter-form__action {
        grid-column: auto;
    }

    .projects-filter-form__action {
        min-width: 140px;
    }
}

.projects-filter-form__label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--bjs-gray-text);
    margin-bottom: .4rem;
}

.projects-filter-form__control {
    position: relative;
}

.projects-filter-form__icon {
    position: absolute;
    left: .85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bjs-gray-text);
    font-size: .95rem;
    pointer-events: none;
    z-index: 1;
}

.projects-filter-form__control .form-select,
.projects-filter-form__control .form-control {
    padding-left: 2.35rem;
    border-color: var(--bjs-gray-medium);
    border-radius: .65rem;
    font-size: .925rem;
}

.projects-filter-form__control .form-select:focus,
.projects-filter-form__control .form-control:focus {
    border-color: var(--bjs-accent);
    box-shadow: 0 0 0 .2rem rgba(184, 150, 62, .15);
}

.projects-filter-form__price-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: .5rem;
    align-items: center;
}

.projects-filter-form__price-row .form-control {
    border-color: var(--bjs-gray-medium);
    border-radius: .65rem;
}

.projects-filter-form__price-sep {
    color: var(--bjs-gray-text);
    font-size: .875rem;
}

.projects-filter-form__action .btn {
    border-radius: .65rem;
    padding: .65rem 1.25rem;
    font-weight: 600;
}

.projects-results-bar {
    margin-bottom: 1.75rem;
}

.projects-results-bar__text {
    font-size: .925rem;
    color: var(--bjs-gray-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

.projects-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--bjs-white);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    box-shadow: 0 .35rem 1.25rem rgba(15, 23, 42, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}

.projects-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2.25rem rgba(15, 23, 42, .12);
    color: inherit;
}

.projects-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bjs-gray-light);
}

.projects-card__img,
.projects-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94);
}

.projects-card__placeholder {
    background: linear-gradient(160deg, #3a3a3a 0%, #5c5348 50%, #2a2a2a 100%);
}

.projects-card:hover .projects-card__img {
    transform: scale(1.07);
}

.projects-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, .15) 0%,
        rgba(0, 0, 0, .05) 35%,
        rgba(0, 0, 0, .55) 70%,
        rgba(0, 0, 0, .82) 100%
    );
    pointer-events: none;
}

.projects-card__badges {
    position: absolute;
    top: .85rem;
    left: .85rem;
    right: .85rem;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    z-index: 2;
}

.projects-card__badge {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .35em .65em;
    border-radius: 2rem;
}

.projects-card__badge--featured {
    background: rgba(184, 150, 62, .92);
    color: var(--bjs-white);
}

.projects-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    z-index: 1;
    color: var(--bjs-white);
}

.projects-card__location {
    font-size: .8rem;
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.projects-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 .35rem;
    color: var(--bjs-white);
}

.projects-card__tagline {
    font-size: .85rem;
    color: rgba(255, 255, 255, .78);
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--bjs-gray-medium);
}

.projects-card__meta {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    min-width: 0;
}

.projects-card__price {
    font-size: .95rem;
    font-weight: 700;
    color: var(--bjs-accent);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.projects-card__types {
    font-size: .8rem;
    color: var(--bjs-gray-text);
}

.projects-card__cta {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bjs-black);
    color: var(--bjs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background .25s ease, transform .25s ease;
}

.projects-card:hover .projects-card__cta {
    background: var(--bjs-accent);
    transform: translateX(2px);
}

.projects-empty {
    text-align: center;
    padding: 4rem 1.5rem;
    background: var(--bjs-white);
    border-radius: 1rem;
    border: 1px dashed var(--bjs-gray-medium);
}

.projects-empty__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--bjs-gray-section);
    color: var(--bjs-gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--bjs-black) 0%, #2a2a2a 100%);
    color: var(--bjs-white);
    padding: 3rem 0;
}

.page-hero--compact {
    padding: 2.5rem 0;
}

.page-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: .5rem;
}

.page-hero__lead {
    color: rgba(255, 255, 255, .75);
    max-width: 40rem;
}

.project-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.project-breadcrumb .breadcrumb-item a:hover {
    color: var(--bjs-accent-light);
}

.project-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, .9);
}

.project-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .45);
}

.project-card__media {
    position: relative;
    overflow: hidden;
    background: var(--bjs-gray-light);
}

.project-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.project-card:hover .project-card__img {
    transform: scale(1.04);
}

.project-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bjs-gray-medium), var(--bjs-gray-light));
}

.project-card__badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 1;
}

.project-filter .form-label {
    color: var(--bjs-gray-dark);
}

.project-detail-hero {
    position: relative;
    min-height: 42vh;
    display: flex;
    align-items: flex-end;
    color: var(--bjs-white);
    overflow: hidden;
}

.project-detail-hero__img,
.project-detail-hero__placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail-hero__placeholder {
    background: linear-gradient(135deg, #2a2a2a, #444);
}

.project-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .25) 0%, rgba(0, 0, 0, .72) 100%);
}

.project-detail-hero__content {
    position: relative;
    z-index: 1;
    padding: 2.5rem 0 2rem;
}

.project-breadcrumb--light .breadcrumb-item a {
    color: rgba(255, 255, 255, .8);
}

.project-breadcrumb--light .breadcrumb-item.active {
    color: var(--bjs-white);
}

.project-detail-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: .5rem;
}

.project-detail-hero__tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .85);
}

.project-detail-hero__meta {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: .75rem;
    padding: 1rem 1.25rem;
    font-size: .95rem;
}

.project-detail-hero__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bjs-accent-light);
    margin-top: .5rem;
}

.project-detail-nav {
    top: 72px;
    z-index: 1010;
}

.project-detail-nav__links {
    gap: .25rem;
    padding: .35rem 0;
    scrollbar-width: none;
}

.project-detail-nav__links::-webkit-scrollbar {
    display: none;
}

.project-detail-nav__links .nav-link {
    color: var(--bjs-gray-text);
    white-space: nowrap;
    font-size: .9rem;
    font-weight: 500;
    padding: .65rem .9rem;
    border-radius: .5rem;
}

.project-detail-nav__links .nav-link:hover {
    color: var(--bjs-black);
    background: var(--bjs-gray-section);
}

.project-detail__text {
    line-height: 1.8;
}

.project-gallery__item {
    background: transparent;
    cursor: zoom-in;
    border-radius: .75rem;
    overflow: hidden;
}

.project-gallery__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .25s ease, opacity .25s ease;
}

.project-gallery__item:hover .project-gallery__thumb {
    transform: scale(1.03);
    opacity: .92;
}

/* Lightbox galeri detail proyek */
.project-gallery-lightbox .modal-dialog {
    max-width: 1100px;
}

.project-gallery-lightbox .modal-backdrop {
    --bs-backdrop-opacity: 0.92;
}

.project-gallery-lightbox__content {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1rem;
    overflow: hidden;
    color: var(--bjs-white);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, .45);
}

.project-gallery-lightbox__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.project-gallery-lightbox__eyebrow {
    display: block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--bjs-accent-light);
    margin-bottom: .15rem;
}

.project-gallery-lightbox__title {
    color: var(--bjs-white);
    font-weight: 600;
}

.project-gallery-lightbox__counter {
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .04em;
    white-space: nowrap;
}

.project-gallery-lightbox__close {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    color: var(--bjs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.project-gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .25);
    color: var(--bjs-white);
}

.project-gallery-lightbox__stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: min(62vh, 560px);
    padding: 1rem 3.5rem;
    background: #080808;
}

.project-gallery-lightbox__figure {
    flex: 1 1 auto;
    margin: 0;
    min-width: 0;
    min-height: min(50vh, 480px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gallery-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: min(58vh, 500px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: .5rem;
    box-shadow: 0 .75rem 2rem rgba(0, 0, 0, .35);
    user-select: none;
    -webkit-user-drag: none;
}

.project-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--bjs-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 2;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.project-gallery-lightbox__nav:hover {
    background: var(--bjs-accent);
    border-color: var(--bjs-accent);
    color: var(--bjs-white);
    transform: translateY(-50%) scale(1.05);
}

.project-gallery-lightbox__nav--prev {
    left: 1rem;
}

.project-gallery-lightbox__nav--next {
    right: 1rem;
}

.project-gallery-lightbox__footer {
    padding: 1rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.project-gallery-lightbox__caption {
    font-size: .925rem;
    color: rgba(255, 255, 255, .75);
    text-align: center;
    min-height: 1.25rem;
}

.project-gallery-lightbox__thumbs {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
    padding-bottom: .25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, .25) transparent;
}

.project-gallery-lightbox__thumbs::-webkit-scrollbar {
    height: 4px;
}

.project-gallery-lightbox__thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .25);
    border-radius: 999px;
}

.project-gallery-lightbox__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 54px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: .5rem;
    overflow: hidden;
    background: transparent;
    opacity: .55;
    scroll-snap-align: center;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.project-gallery-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-gallery-lightbox__thumb:hover {
    opacity: .85;
}

.project-gallery-lightbox__thumb.is-active {
    opacity: 1;
    border-color: var(--bjs-accent-light);
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .project-gallery-lightbox__content {
        border-radius: 0;
        min-height: 100vh;
    }

    .project-gallery-lightbox__stage {
        min-height: 55vh;
        padding: 1rem 3rem;
    }

    .project-gallery-lightbox__img {
        max-height: 50vh;
    }

    .project-gallery-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .project-gallery-lightbox__nav--prev {
        left: .5rem;
    }

    .project-gallery-lightbox__nav--next {
        right: .5rem;
    }
}

.project-type-card {
    transition: transform .2s ease, box-shadow .2s ease;
}

.project-type-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08) !important;
}

@media (max-width: 991.98px) {
    .project-detail-nav {
        top: 0;
    }
}

/* --------------------------------------------------------------------------
   Halaman Tipe Rumah
   -------------------------------------------------------------------------- */
.house-type-hero {
    position: relative;
    padding: 3rem 0 3.5rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2a26 45%, #1f1c18 100%);
    color: var(--bjs-white);
    overflow: hidden;
}

.house-type-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 90% 10%, rgba(184, 150, 62, .18) 0%, transparent 55%);
    pointer-events: none;
}

.house-type-hero .container {
    position: relative;
    z-index: 1;
}

.house-type-hero__eyebrow {
    font-size: .85rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--bjs-accent-light);
}

.house-type-hero__eyebrow a {
    color: inherit;
}

.house-type-hero__eyebrow a:hover {
    color: var(--bjs-white);
}

.house-type-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.house-type-hero__lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .78);
    max-width: 38rem;
    margin-bottom: 1.5rem;
}

.house-type-hero__specs {
    font-size: .9rem;
    color: rgba(255, 255, 255, .88);
}

.house-type-hero__specs li {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 2rem;
    padding: .45rem .9rem;
}

.house-type-hero__card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.house-type-hero__price-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, .65);
}

.house-type-hero__price {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--bjs-accent-light);
    margin: 0;
}

.house-type__text {
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 48rem;
}

.house-type-gallery-trigger {
    cursor: pointer;
    background: transparent;
    border-radius: .75rem;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.house-type-gallery-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .1);
}

.house-type-gallery-trigger .project-gallery__thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.house-type-specs .accordion-button {
    font-weight: 600;
    color: var(--bjs-black);
    background: var(--bjs-white);
}

.house-type-specs .accordion-button:not(.collapsed) {
    color: var(--bjs-black);
    background: var(--bjs-gray-section);
    box-shadow: none;
}

.house-type-specs__table th {
    width: 42%;
    font-weight: 600;
    color: var(--bjs-black);
    vertical-align: top;
    padding: .85rem 1.25rem;
    font-size: .9rem;
}

.house-type-specs__table td {
    color: var(--bjs-gray-text);
    padding: .85rem 1.25rem;
    font-size: .9rem;
}

.house-type-floorplan {
    cursor: pointer;
    background: transparent;
}

.house-type-floorplan__frame {
    transition: transform .25s ease, box-shadow .25s ease;
}

.house-type-floorplan:hover .house-type-floorplan__frame {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .1) !important;
}

.house-type-floorplan__label {
    font-size: .95rem;
}

.house-type-kpr__result {
    background: var(--bjs-gray-section);
    border: 1px solid var(--bjs-gray-medium);
}

.house-type-kpr__result-label {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--bjs-gray-text);
    margin-bottom: .35rem;
}

.house-type-kpr__result-value {
    font-size: 1.1rem;
    color: var(--bjs-black);
}

.house-type-kpr__result-value--accent {
    font-size: 1.35rem;
    color: var(--bjs-accent);
}

@media (max-width: 767.98px) {
    .house-type-hero {
        padding: 2.25rem 0 2.75rem;
    }

    .house-type-hero__card {
        margin-top: .5rem;
    }
}

/* --------------------------------------------------------------------------
   Halaman Virtual Tour
   -------------------------------------------------------------------------- */
.virtual-tour-filter-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.virtual-tour-filter-pills__label {
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--bjs-gray-text);
}

.virtual-tour-filter-pills__group {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.virtual-tour-filter-pills__btn {
    display: inline-flex;
    align-items: center;
    padding: .45rem .95rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--bjs-black);
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.virtual-tour-filter-pills__btn:hover {
    border-color: var(--bjs-accent);
    color: var(--bjs-black);
}

.virtual-tour-filter-pills__btn.is-active {
    background: var(--bjs-black);
    border-color: var(--bjs-black);
    color: var(--bjs-white);
}

.virtual-tour-card {
    display: block;
    color: inherit;
    height: 100%;
}

.virtual-tour-card:hover {
    color: inherit;
}

.virtual-tour-card__media {
    position: relative;
}

.virtual-tour-card:hover .home-virtual-tour__media img {
    transform: scale(1.05);
}

.virtual-tour-card__badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 2;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: .35em .65em;
    border-radius: 2rem;
    background: rgba(26, 26, 26, .78);
    color: var(--bjs-white);
}

.virtual-tour-detail-hero {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2a26 45%, #1f1c18 100%);
    color: var(--bjs-white);
}

.virtual-tour-detail-embed {
    position: relative;
    min-height: 420px;
    aspect-ratio: 16 / 10;
}

.virtual-tour-detail-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.virtual-tour-detail-embed__empty {
    min-height: 420px;
}

.virtual-tour-detail-info__badge {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: .35rem .75rem;
    border-radius: 2rem;
    background: rgba(184, 150, 62, .2);
    color: var(--bjs-accent-light);
    margin-bottom: 1rem;
}

.virtual-tour-detail-info__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.virtual-tour-detail-info__meta {
    margin-bottom: 1.25rem;
}

.virtual-tour-detail-info__meta li {
    margin-bottom: .65rem;
    font-size: .95rem;
}

.virtual-tour-detail-info__meta a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
}

.virtual-tour-detail-info__meta a:hover {
    color: var(--bjs-accent-light);
}

.virtual-tour-detail-info__hint {
    font-size: .9rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .virtual-tour-detail-embed {
        min-height: 280px;
    }
}

/* --------------------------------------------------------------------------
   Halaman Progress Pembangunan
   -------------------------------------------------------------------------- */
.progress-timeline {
    position: relative;
    padding-top: .5rem;
}

.progress-timeline__group + .progress-timeline__group {
    margin-top: 2.5rem;
}

.progress-timeline__month {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--bjs-accent);
    margin-bottom: 1.5rem;
}

.progress-timeline__list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.progress-timeline__item {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1.25rem;
    position: relative;
}

.progress-timeline__item:not(:last-child) .progress-timeline__marker::after {
    content: '';
    position: absolute;
    top: 1.25rem;
    left: 13px;
    bottom: -2rem;
    width: 2px;
    background: var(--bjs-gray-medium);
}

.progress-timeline__marker {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 1.35rem;
}

.progress-timeline__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bjs-accent);
    border: 3px solid var(--bjs-white);
    box-shadow: 0 0 0 2px var(--bjs-accent);
    z-index: 1;
}

.progress-timeline__card {
    transition: box-shadow .25s ease, transform .25s ease;
}

.progress-timeline__card:hover {
    box-shadow: 0 .75rem 1.75rem rgba(15, 23, 42, .08);
}

.progress-timeline__media-link {
    color: inherit;
}

.progress-timeline__project:hover {
    background: var(--bjs-gray-section) !important;
}

.progress-detail-hero {
    padding: 2.5rem 0 3rem;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2a26 45%, #1f1c18 100%);
    color: var(--bjs-white);
}

.progress-detail-hero__media {
    background: var(--bjs-gray-light);
}

.progress-detail-hero__media img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.progress-detail-hero__media--empty {
    min-height: 280px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .35);
    font-size: 3rem;
}

.progress-detail-info__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .75rem;
}

.progress-detail-info__date {
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
}

.progress-detail-info__percent-label {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

.progress-detail-info__percent-value {
    font-size: 1.25rem;
    color: var(--bjs-accent-light);
}

.progress-detail-info__percent .progress {
    background: rgba(255, 255, 255, .15);
}

.progress-detail-info__percent .progress-bar {
    background: var(--bjs-accent-light);
}

.progress-detail-info__text {
    font-size: 1rem;
    line-height: 1.75;
}

@media (max-width: 767.98px) {
    .progress-timeline__item {
        grid-template-columns: 20px 1fr;
        gap: .85rem;
    }

    .progress-timeline__item:not(:last-child) .progress-timeline__marker::after {
        left: 9px;
    }
}

/* --------------------------------------------------------------------------
   Halaman Artikel
   -------------------------------------------------------------------------- */
.articles-card {
    background: var(--bjs-white);
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 .25rem 1rem rgba(15, 23, 42, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.articles-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .75rem 1.75rem rgba(15, 23, 42, .1);
}

.articles-card__link {
    display: block;
    color: inherit;
    height: 100%;
}

.articles-card__media {
    aspect-ratio: 16 / 10;
    background: var(--bjs-gray-light);
}

.articles-card__img,
.articles-card__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.articles-card__placeholder {
    background: linear-gradient(160deg, #e8e4dc 0%, #d4cec3 100%);
}

.articles-card:hover .articles-card__img {
    transform: scale(1.04);
}

.articles-card__title {
    line-height: 1.35;
    margin-bottom: .5rem;
}

.articles-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles-pagination .page-link {
    color: var(--bjs-black);
    border-color: var(--bjs-gray-medium);
    min-width: 42px;
    text-align: center;
}

.articles-pagination .page-item.active .page-link {
    background: var(--bjs-black);
    border-color: var(--bjs-black);
}

.article-detail-hero {
    padding: 2.5rem 0 3.5rem;
    background: var(--bjs-white);
}

.article-detail-hero__media img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.article-detail__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bjs-black);
    margin-bottom: .75rem;
}

.article-detail__category {
    display: inline-block;
    margin-bottom: .75rem;
}

.article-detail__excerpt {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bjs-gray-medium);
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--bjs-gray-text);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--bjs-black);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: .75rem;
    margin: 1.5rem 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--bjs-accent);
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: var(--bjs-black);
    font-style: italic;
}

.article-content a {
    color: var(--bjs-accent);
    text-decoration: underline;
}

.article-content__heading {
    color: var(--bjs-black);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.35;
}

.article-content__list,
.article-content__checklist {
    margin-bottom: 1.25rem;
}

.article-content__checklist {
    list-style: none;
    padding-left: 0;
}

.article-content__checklist-item {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: .65rem;
}

.article-content__checklist-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: .45rem;
    width: 1rem;
    height: 1rem;
    border: 1px solid var(--bjs-gray-medium);
    border-radius: .2rem;
    background: #fff;
}

.article-content__checklist-item.is-checked::before {
    background: var(--bjs-primary);
    border-color: var(--bjs-primary);
}

.article-content__image {
    margin: 1.5rem 0;
}

.article-content__image--background {
    background: var(--bjs-gray-light);
    padding: 1rem;
    border-radius: .75rem;
}

.article-content__image--border img {
    border: 1px solid rgba(26, 26, 26, .1);
}

.article-content__caption {
    margin-top: .65rem;
    font-size: .875rem;
    color: var(--bjs-gray-text);
    text-align: center;
}

.article-content__quote {
    border-left: 4px solid var(--bjs-accent);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: rgba(26, 26, 26, .03);
    border-radius: 0 .75rem .75rem 0;
    font-style: italic;
    color: var(--bjs-black);
}

.article-content__quote--center {
    text-align: center;
    border-left: 0;
    border-top: 4px solid var(--bjs-accent);
    border-radius: .75rem;
}

.article-content__quote cite {
    display: block;
    margin-top: .75rem;
    font-size: .875rem;
    color: var(--bjs-gray-text);
    font-style: normal;
}

.article-content__delimiter {
    margin: 2rem auto;
    border: 0;
    border-top: 2px solid var(--bjs-gray-medium);
    opacity: .65;
    max-width: 8rem;
}

.article-content__embed {
    margin: 1.5rem 0;
}

.article-content__embed-ratio {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: .75rem;
    overflow: hidden;
}

.article-content__embed-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.article-content__table-wrap {
    margin: 1.5rem 0;
}

.article-detail-sidebar__card {
    background: var(--bjs-gray-section);
    border: 1px solid var(--bjs-gray-medium);
}

.article-related-item:hover .h6 {
    color: var(--bjs-accent) !important;
}

.article-related-item__thumb {
    width: 72px;
    height: 54px;
    background: var(--bjs-gray-light);
}

.article-related-item__thumb img,
.article-related-item__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-related-item__placeholder {
    background: linear-gradient(160deg, #e8e4dc 0%, #d4cec3 100%);
}

/* --------------------------------------------------------------------------
   Halaman Promo
   -------------------------------------------------------------------------- */
.promo-page__benefits {
    position: sticky;
    top: 6rem;
}

.promo-page__benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.promo-page__benefit-list li:last-child {
    margin-bottom: 0;
}

.promo-page__benefit-list i {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 62, .12);
    color: var(--bjs-accent);
    font-size: 1.1rem;
}

.promo-page__form-card {
    background: var(--bjs-white);
    border: 1px solid rgba(0, 0, 0, .05);
}

.promo-page__form-card .form-control,
.promo-page__form-card .form-select {
    border-color: var(--bjs-gray-medium);
}

.promo-page__form-card .form-control:focus,
.promo-page__form-card .form-select:focus {
    border-color: var(--bjs-accent);
    box-shadow: 0 0 0 .2rem rgba(184, 150, 62, .15);
}

@media (max-width: 991.98px) {
    .promo-page__benefits {
        position: static;
    }
}

/* --------------------------------------------------------------------------
   Halaman Statis
   -------------------------------------------------------------------------- */
.projects-page-hero--compact {
    padding-bottom: 2.5rem;
}

.static-page__text {
    font-size: 1.05rem;
    line-height: 1.8;
}

.static-page__image {
    aspect-ratio: 4 / 3;
    background: var(--bjs-gray-light);
}

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

.static-page__image-placeholder {
    min-height: 240px;
    background: var(--bjs-gray-section);
    border: 1px dashed var(--bjs-gray-medium);
}

.static-page__card {
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    box-shadow: 0 .25rem 1rem rgba(15, 23, 42, .04);
}

.static-page__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 150, 62, .12);
    color: var(--bjs-accent);
    font-size: 1.25rem;
}

.static-page__legal {
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-info-card {
    background: var(--bjs-gray-section);
    border: 1px solid var(--bjs-gray-medium);
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-list li:last-child {
    margin-bottom: 0;
}

.contact-info-list i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bjs-white);
    color: var(--bjs-accent);
    font-size: 1.1rem;
    border: 1px solid var(--bjs-gray-medium);
}

.contact-info-link {
    color: var(--bjs-black);
    text-decoration: none;
}

.contact-info-link:hover {
    color: var(--bjs-accent);
}

.contact-map .ratio,
.contact-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}

.page-404-section {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, var(--bjs-gray-section) 0%, var(--bjs-white) 100%);
}

.page-404-section__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--bjs-white);
    border: 1px solid var(--bjs-gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--bjs-accent);
}

.page-404-section__code {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--bjs-black);
    letter-spacing: -.04em;
}

.page-404-section__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--bjs-black);
}

.page-404-section__lead {
    max-width: 32rem;
}
