/* Sima Putra unified header — clean floating 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: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.spt-site-header.is-inner {
    position: sticky;
    top: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.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: 72px;
    align-items: center;
    gap: 16px;
    padding: 10px 18px 0;
    background: transparent !important;
}

.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: 44px;
    padding: 6px 15px;
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 999px;
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.spt-header__logo {
    display: block;
    width: 146px;
    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: 42px;
    height: 42px;
    flex: 0 0 42px;
    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, .88);
    background: rgba(255, 255, 255, .98);
    box-shadow: none;
}

.spt-header__hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #174f79;
}

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

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

.spt-site-header.is-home .spt-header__hamburger:hover,
.spt-site-header.is-inner .spt-header__hamburger:hover {
    background: #ffffff;
}

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

.spt-search {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    z-index: 110;
    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;
}

.spt-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(2, 12, 20, .58);
    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: 99;
    display: flex;
    width: min(430px, 88vw);
    flex-direction: column;
    overflow-y: auto;
    padding: 22px 22px 24px;
    background: linear-gradient(180deg, #061b2a 0%, #04131f 100%);
    color: #fff;
    box-shadow: none;
    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: 54px;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.spt-drawer__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 6px 15px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 999px;
    background: rgba(255,255,255,.98);
}

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

.spt-drawer__close {
    display: inline-flex;
    width: 42px;
    height: 42px;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font: 300 32px/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: 32px;
    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-header__bar {
        min-height: 66px;
        padding: 8px 16px 0;
    }

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

    .spt-header__logo,
    .spt-drawer__logo {
        width: 132px;
    }

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

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

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

    .spt-header__left {
        gap: 8px;
    }

    .spt-header__logo-link {
        min-height: 38px;
        padding: 5px 10px;
    }

    .spt-header__logo,
    .spt-drawer__logo {
        width: 108px;
    }

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

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

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

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

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


/* =========================================================
   SIMA PUTRA PREMIUM FOOTER
   CSS is loaded from <head> together with the header CSS.
   This avoids unstyled / oversized SVG flashes inside Bagisto.
   ========================================================= */

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

.spt-footer {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #07579A;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
}

.spt-footer-wave {
    width: 100%;
    height: 72px;
    margin: -1px 0 0;
    line-height: 0;
    background: #ffffff;
}

.spt-footer-wave svg {
    display: block;
    width: 100%;
    height: 72px;
}

.spt-footer__shell {
    width: min(1220px, calc(100% - 48px));
    margin: 0 auto;
    padding: 18px 0 30px;
}

.spt-footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
    gap: 34px;
    align-items: stretch;
}

.spt-footer-photo {
    min-height: 500px;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 26% 22%, rgba(255,255,255,.12), transparent 25%),
        linear-gradient(145deg, #2c7eba 0%, #1265a2 46%, #07579A 100%);
}

.spt-footer-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.spt-footer-right {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
}

.spt-footer-kicker {
    margin-bottom: 8px;
    color: rgba(255,255,255,.68);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
}

.spt-footer-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.045em;
}

.spt-footer-address {
    margin: 20px 0 0;
    color: rgba(255,255,255,.94);
    font-size: 15px;
    font-style: normal;
    line-height: 1.7;
}

.spt-footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
}

.spt-footer-social {
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #ffffff;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.spt-footer-social:hover {
    border-color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.17);
    transform: translateY(-2px);
}

.spt-footer-social svg {
    display: block;
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.spt-footer-social .spt-fill {
    fill: currentColor;
    stroke: none;
}

.spt-footer-social .spt-cutout {
    fill: #07579A;
    stroke: none;
}

.spt-footer-contact {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 9px;
    margin-left: 5px;
    padding: 0 17px;
    border-radius: 999px;
    background: #ffffff;
    color: #07579A !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.spt-footer-contact span {
    font-size: 18px;
    line-height: 1;
}

.spt-footer-box {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 22px;
    background: rgba(4, 45, 78, .33);
}

.spt-footer-box__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.spt-footer-box__col ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.spt-footer-box__col a {
    color: rgba(255,255,255,.91) !important;
    font-size: 12px;
    line-height: 1.45;
    text-decoration: none !important;
}

.spt-footer-box__col a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.spt-footer-box__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.spt-footer-box__brand {
    display: grid;
    gap: 3px;
}

.spt-footer-box__brand strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.spt-footer-box__brand span,
.spt-footer-copyright {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 10.5px;
    line-height: 1.55;
}

.spt-footer-copyright {
    max-width: 190px;
    text-align: right;
}

@media (max-width: 900px) {
    .spt-footer__shell {
        width: calc(100% - 30px);
    }

    .spt-footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .spt-footer-photo {
        min-height: 235px;
        border-radius: 22px;
    }

    .spt-footer-photo img {
        min-height: 235px;
    }

    .spt-footer-right {
        padding: 2px 3px 0;
    }

    .spt-footer-title {
        font-size: 50px;
    }
}

@media (max-width: 560px) {
    .spt-footer-wave,
    .spt-footer-wave svg {
        height: 46px;
    }

    .spt-footer__shell {
        width: calc(100% - 22px);
        padding: 12px 0 20px;
    }

    .spt-footer-photo,
    .spt-footer-photo img {
        min-height: 185px;
    }

    .spt-footer-photo {
        border-radius: 18px;
    }

    .spt-footer-kicker {
        font-size: 9px;
    }

    .spt-footer-title {
        font-size: 40px;
    }

    .spt-footer-address {
        margin-top: 14px;
        font-size: 12.5px;
        line-height: 1.6;
    }

    .spt-footer-socials {
        gap: 7px;
        margin-top: 17px;
    }

    .spt-footer-social {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .spt-footer-social svg {
        width: 16px !important;
        height: 16px !important;
        max-width: 16px !important;
        max-height: 16px !important;
    }

    .spt-footer-contact {
        min-height: 36px;
        margin-left: 0;
        padding: 0 13px;
        font-size: 11px;
    }

    .spt-footer-box {
        margin-top: 18px;
        padding: 17px;
        border-radius: 17px;
    }

    .spt-footer-box__links {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .spt-footer-box__bottom {
        flex-direction: column;
        gap: 10px;
    }

    .spt-footer-copyright {
        max-width: none;
        text-align: left;
    }
}
