/* Sima Putra unified header — pure CSS interaction version */

.spt-site-header,
.spt-site-header *,
.spt-site-header *::before,
.spt-site-header *::after {
    box-sizing: border-box;
}

.spt-site-header {
    left: 0;
    right: 0;
    z-index: 60;
    width: 100%;
}

.spt-site-header.is-home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    background: rgba(4, 20, 31, .10);
    box-shadow: none;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.spt-site-header.is-inner {
    position: sticky;
    top: 0;
    border: 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 2px 10px rgba(19, 53, 79, .03);
    backdrop-filter: blur(10px);
}

.spt-header {
    position: relative;
    width: 100%;
    font-family: 'Poppins', Arial, sans-serif;
}

.spt-control-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.spt-header__bar {
    display: flex;
    width: 100%;
    min-height: 78px;
    align-items: center;
    gap: 16px;
    padding: 8px 34px;
}

.spt-header__left,
.spt-header__right {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.spt-header__left {
    gap: 10px;
}

.spt-header__spacer {
    min-width: 20px;
    flex: 1 1 auto;
}

.spt-header__right {
    gap: 4px;
}

.spt-header__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 7px 15px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 999px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 5px 16px rgba(4, 20, 31, .13);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.spt-header__logo {
    display: block;
    width: 150px;
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: none !important;
}

.spt-header__hamburger,
.spt-header__icon-button,
.spt-header__account {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.spt-header__hamburger {
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 5px 16px rgba(4, 20, 31, .13);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.spt-header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
}

.spt-header__icon-button {
    padding: 9px;
}

.spt-header__icon-button svg,
.spt-header__account svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero/header colors */
.spt-site-header.is-home .spt-header__hamburger span {
    background: #174f79;
}

.spt-site-header.is-home .spt-header__icon-button,
.spt-site-header.is-home .spt-header__account {
    color: #fff;
}

.spt-site-header.is-home .spt-header__hamburger:hover {
    background: #ffffff;
    box-shadow: 0 7px 20px rgba(4, 20, 31, .18);
}

.spt-site-header.is-home .spt-header__icon-button:hover,
.spt-site-header.is-home .spt-header__account:hover {
    background: rgba(255, 255, 255, .13);
}

.spt-site-header.is-inner .spt-header__hamburger span {
    background: #174f79;
}

.spt-site-header.is-inner .spt-header__icon-button,
.spt-site-header.is-inner .spt-header__account {
    color: #174f79;
}

.spt-site-header.is-inner .spt-header__hamburger {
    background: #ffffff;
    border-color: #e2eaf0;
}

.spt-site-header.is-inner .spt-header__hamburger:hover {
    background: #f7fafc;
}

.spt-site-header.is-inner .spt-header__icon-button:hover,
.spt-site-header.is-inner .spt-header__account:hover {
    background: #f1f6f9;
}

/* Search popover: hidden unless checkbox is checked */
.spt-search {
    position: absolute;
    top: calc(100% + 8px);
    right: 34px;
    z-index: 80;
    width: min(430px, calc(100vw - 32px));
    padding: 10px;
    border: 1px solid #e3eaf0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(10, 34, 52, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

#spt-search-toggle:checked ~ .spt-search {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.spt-search__form {
    position: relative;
    display: flex;
    align-items: center;
}

.spt-search__icon {
    position: absolute;
    left: 14px;
    fill: none;
    stroke: #718492;
    stroke-width: 1.9;
    stroke-linecap: round;
    pointer-events: none;
}

.spt-search__form input {
    width: 100%;
    height: 44px;
    min-width: 0;
    padding: 0 116px 0 42px;
    border: 1px solid #e0e8ee;
    border-radius: 10px;
    outline: 0;
    background: #f7f9fb;
    color: #20394d;
    font: 400 13px/1 'Poppins', Arial, sans-serif;
}

.spt-search__form input:focus {
    border-color: #7aa6c7;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(7, 87, 154, .08);
}

.spt-search__form button {
    position: absolute;
    right: 37px;
    height: 34px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: #07579a;
    color: #fff;
    font: 600 12px/1 'Poppins', Arial, sans-serif;
    cursor: pointer;
}

.spt-search__close {
    position: absolute;
    right: 7px;
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #667a89;
    font: 300 24px/1 Arial, sans-serif;
    cursor: pointer;
}

/* Drawer */
.spt-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(2, 12, 20, .60);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    cursor: default;
    transition: opacity .28s ease, visibility .28s ease;
}

.spt-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    width: min(430px, 88vw);
    flex-direction: column;
    overflow-y: auto;
    padding: 24px 30px 28px;
    background: linear-gradient(180deg, #061b2a 0%, #04131f 100%);
    color: #fff;
    box-shadow: 18px 0 55px rgba(0, 0, 0, .22);
    transform: translateX(-102%);
    visibility: hidden;
    transition: transform .30s ease, visibility .30s ease;
}

#spt-menu-toggle:checked ~ .spt-drawer-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#spt-menu-toggle:checked ~ .spt-drawer {
    transform: translateX(0);
    visibility: visible;
}

.spt-drawer__top {
    display: flex;
    min-height: 58px;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.spt-drawer__logo-link {
    display: flex;
    align-items: center;
}

.spt-drawer__logo {
    display: block;
    width: 170px;
    height: auto;
    object-fit: contain;
}

.spt-drawer__close {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font: 300 34px/1 Arial, sans-serif;
    cursor: pointer;
}

.spt-drawer__close:hover {
    background: rgba(255, 255, 255, .10);
}

.spt-drawer__nav {
    display: grid;
}

.spt-drawer__nav a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    color: #fff !important;
    font: 600 18px/1.3 'Poppins', Arial, sans-serif;
    text-decoration: none !important;
    transition: padding-left .2s ease, border-color .2s ease;
}

.spt-drawer__nav a:hover {
    padding-left: 7px;
    border-color: rgba(255, 255, 255, .30);
}

.spt-drawer__nav a span:last-child {
    color: #91b4ca;
    font: 300 28px/1 Arial, sans-serif;
}

.spt-drawer__footer {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 36px;
    color: rgba(255, 255, 255, .60);
    font: 400 11px/1.6 'Poppins', Arial, sans-serif;
}

.spt-drawer__footer strong {
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .spt-site-header.is-inner {
        backdrop-filter: none;
    }

    .spt-header__bar {
        min-height: 68px;
        padding: 0 18px;
    }

    .spt-header__logo-link {
        min-height: 42px;
        padding: 6px 12px;
        border-radius: 999px;
    }

    .spt-header__logo {
        width: 132px;
    }

    .spt-header__hamburger,
    .spt-header__icon-button,
    .spt-header__account {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .spt-search {
        right: 16px;
    }
}

@media (max-width: 520px) {
    .spt-header__bar {
        gap: 8px;
        padding: 0 10px;
    }

    .spt-header__left {
        gap: 7px;
    }

    .spt-header__logo-link {
        min-height: 40px;
        padding: 5px 10px;
        border-radius: 999px;
    }

    .spt-header__logo {
        width: 108px;
    }

    .spt-header__hamburger,
    .spt-header__icon-button,
    .spt-header__account {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .spt-header__hamburger span {
        width: 20px;
    }

    .spt-header__icon-button svg,
    .spt-header__account svg {
        width: 23px;
        height: 23px;
    }

    .spt-drawer {
        width: 90vw;
        padding: 20px 22px 24px;
    }

    .spt-drawer__logo {
        width: 145px;
    }

    .spt-drawer__nav a {
        min-height: 60px;
        font-size: 16px;
    }
}
