/* ========================================================
   GLOBAL THEME MASTER CSS (MERGED)
   Warna: Biru (#00AEEF)
   Layout: Grid 2 Kolom Horizontal
   ======================================================== */

body, h1, h2, h3, h4, p, a, div, input, button {
    font-family: 'Poppins', sans-serif !important;
}

/* ========================================================
   RESPONSIVE BASE HELPERS
   - Prevent horizontal overflow in article/page content
   ======================================================== */

.pkp_structure_main img,
.pkp_structure_main iframe,
.pkp_structure_main video {
    max-width: 100%;
}

.pkp_structure_main img {
    height: auto;
}

@media (max-width: 768px) {
    .pkp_structure_main table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }

    .pkp_structure_main pre {
        overflow-x: auto;
    }
}

/* ========================================================
   HEADER & NAV (OJSGLOBALTHEME)
   ======================================================== */

/* Accessibility: hide skip links unless focused */
.cmp_skip_to_content a {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    left: -2000px;
    top: 0;
}

.cmp_skip_to_content a:focus {
    clip: auto !important;
    left: 50%;
    top: 0.5rem;
    transform: translateX(-50%);
    display: block;
    padding: 1em;
    z-index: 100000;
    background: #fff;
    color: #00AEEF !important;
    text-decoration: none;
    border: 1px solid #00AEEF;
    border-radius: 3px;
}

.global-header.pkp_structure_head {
    padding: 0 !important;
}

.global-header__banner {
    width: 100%;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #fff;
    border-bottom: 4px solid #00AEEF;
}

.global-header__bannerLink {
    display: block;
}

.global-header__bannerImg {
    width: 100%;
    height: auto;
    display: block;
}

.global-header__mobileLogo {
    display: none;
}

.global-header__mobileToggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    border: 1px solid rgba(0,174,239,0.35);
    background: rgba(255,255,255,0.92);
    cursor: pointer;
}

.global-header__mobileToggle:focus {
    outline: none;
    border-color: rgba(0,174,239,0.75);
}

.global-header__mobileToggleLine {
    width: 20px;
    height: 2px;
    background: #00AEEF;
    border-radius: 2px;
    display: block;
}

.global-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.global-header__topbar {
    width: 100%;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(180deg, #0b1020 0%, #09152e 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.global-header__topbarInner {
    padding: 12px 0;
}

.global-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    min-width: 0;
}

.global-brand__logo {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
}

.global-brand__name {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.global-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.global-nav__primary {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: flex-end;
    min-width: 0;
}


.global-nav__user {
    display: flex;
    align-items: center;
}

.global-nav__item {
    color: rgba(255,255,255,0.85) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.global-nav__icon {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
}

.global-nav__item:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.06);
}

.global-nav__item.is-active {
    color: #fff !important;
    background: rgba(0,174,239,0.22);
}

.global-nav__btn {
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    background: transparent;
    white-space: nowrap;
}

.global-nav__btn--ghost:hover {
    background: rgba(255,255,255,0.06);
}

.global-nav__btn--outline {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.92) !important;
}

.global-nav__btn--outline:hover {
    border-color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
}

.global-nav__btn--primary {
    background: #00AEEF;
    border-color: #00AEEF;
}

.global-nav__btn--primary:hover {
    background: #008cbf;
    border-color: #008cbf;
}

/* User nav (login/register + dropdown) */
.user-nav-menu {
    list-style: none !important;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-toggle {
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
}

.user-toggle .user-name {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-toggle:hover {
    text-decoration: underline;
    opacity: 0.95;
}

.user-toggle .caret {
    color: #fff !important;
    font-size: 12px;
    line-height: 1;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 8px 0;
    z-index: 99999;
    border-top: 3px solid #00AEEF;
}

.user-menu.is-open .dropdown-menu {
    display: block !important;
}

@media (hover: hover) {
    .user-menu:hover .dropdown-menu {
        display: block !important;
    }
}

/* ================================
   Responsive header
   - Desktop: single-row brand + nav
   - Tablet: brand row, nav row
   - Mobile: centered brand, nav scroll + buttons wrap
   ================================ */

@media (max-width: 1024px) {
    .global-container {
        padding: 0 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .global-header__topbarInner {
        padding: 10px 0;
    }

    .global-nav {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .global-nav__primary {
        flex: 1 1 auto;
        justify-content: flex-start;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .global-nav__user {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    /* Compact mobile header: use small logo + hamburger */
    .global-header__banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 16px;
        background: linear-gradient(180deg, #0b1020 0%, #09152e 100%);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .global-header__bannerImg {
        display: none !important;
    }

    .global-header__bannerLink {
        display: inline-flex;
        align-items: center;
    }

    .global-header__mobileLogo {
        display: block;
        width: auto;
        height: 28px;
        filter: brightness(0) invert(1);
    }

    .global-container {
        padding: 0 16px;
        justify-content: center;
        gap: 10px;
    }

    .global-brand {
        width: 100%;
        justify-content: center;
    }

    .global-brand__name {
        max-width: 100%;
        text-align: center;
    }

    .global-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .global-nav__primary {
        width: 100%;
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
    }

    .global-nav__user {
        width: 100%;
        justify-content: center;
    }

    .user-nav-menu {
        justify-content: center;
        flex-wrap: wrap;
    }

    .global-nav__item,
    .global-nav__btn,
    .user-toggle {
        padding: 9px 12px;
        font-size: 13px;
    }

    .user-toggle .user-name {
        max-width: 180px;
    }

    .dropdown-menu {
        max-width: calc(100vw - 32px);
    }
}

/* ================================
   Mobile header: logo + hamburger
   - Only enabled when JS is available (html.js)
   ================================ */

@media (max-width: 768px) {
    .js .global-header__banner {
        position: relative;
    }

    .js .global-header__bannerLink {
        padding-right: 0;
    }

    .js .global-header__mobileToggle {
        display: inline-flex;
        position: static;
        transform: none;
        z-index: 2;
        background: transparent;
        border-color: rgba(255,255,255,0.35);
    }

    .js .global-header__mobileToggleLine {
        background: #fff;
    }

    /* Turn hamburger into X when open */
    .js .global-header__mobileToggleLine {
        transform-origin: 50% 50%;
    }

    .js .global-header.is-mobile-nav-open .global-header__mobileToggleLine:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .js .global-header.is-mobile-nav-open .global-header__mobileToggleLine:nth-child(2) {
        opacity: 0;
    }

    .js .global-header.is-mobile-nav-open .global-header__mobileToggleLine:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .js .global-header__topbar {
        display: none;
    }

    .js .global-header.is-mobile-nav-open .global-header__topbar {
        display: block;
    }

    .js .global-header__topbarInner {
        display: block;
        padding: 14px 0 18px;
    }

    .js .global-header__topbarInner .global-brand {
        display: none;
    }

    .js .global-header__topbarInner .global-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .js .global-header__topbarInner .global-nav__primary {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.10);
        background: rgba(255,255,255,0.04);
    }

    .js .global-header__topbarInner .global-nav__item,
    .js .global-header__topbarInner .global-nav__btn,
    .js .global-header__topbarInner .user-toggle {
        min-height: 44px;
        border-radius: 12px;
        padding: 11px 14px;
    }

    .js .global-header__topbarInner .global-nav__item {
        background: transparent;
        border: 0;
        gap: 10px;
    }

    .js .global-header__topbarInner .global-nav__item:hover {
        background: rgba(255,255,255,0.06);
    }

    .js .global-header__topbarInner .global-nav__item.is-active {
        background: rgba(0,174,239,0.16);
        color: #fff !important;
    }

    .js .global-header__topbarInner .global-nav__item {
        width: 100%;
        justify-content: flex-start;
    }

    .js .global-header__topbarInner .global-nav__user {
        width: 100%;
        justify-content: stretch;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .js .global-header__topbarInner .user-nav-menu {
        width: 100%;
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 12px;
    }

    .js .global-header__topbarInner .global-nav__btn {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .js .global-header__topbarInner .user-toggle {
        justify-content: space-between;
    }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.dropdown-menu li a:hover {
    background-color: #f0f8ff;
    color: #00AEEF !important;
}

/* ========================================================
   FOOTER (OJSGLOBALTHEME) - PROFESSIONAL
   ======================================================== */

.footer-pro {
    margin-top: 30px;
    color: rgba(255,255,255,0.85);
    background: linear-gradient(180deg, #0b1020 0%, #09152e 100%);
}

.footer-pro__top {
    border-top: 3px solid #00AEEF;
    padding: 60px 0 40px;
}

.footer-pro__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-pro__inner.footer-pro__bottomInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-pro__inner > .footer-pro__col,
.footer-pro__top .footer-pro__inner {
    display: block;
}

.footer-pro__top .footer-pro__inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.footer-pro__col { min-width: 0; }

.footer-pro__logo {
    max-width: 90px;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.footer-pro__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

.footer-pro__title {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    padding-bottom: 14px;
}

.footer-pro__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #00AEEF;
    border-radius: 2px;
}

.footer-pro__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-pro__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-pro__item--contact {
    gap: 12px;
}

.footer-pro__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #00AEEF;
    margin-top: 2px;
    flex: 0 0 auto;
}

.footer-pro__textLink {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer-pro__item--contact:hover .footer-pro__textLink {
    color: #fff;
    text-decoration: underline;
}

.footer-pro__bullet {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #00AEEF;
    margin-top: 6px;
    flex: 0 0 auto;
}

.footer-pro__link {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.footer-pro__link:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-pro__nav li a {
    position: relative;
    padding-left: 16px;
}

.footer-pro__nav li a::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    color: #00AEEF;
    font-weight: 700;
}

.footer-pro__map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
}

.footer-pro__mapFrame {
    width: 100%;
    height: 210px;
    border: 0;
    display: block;
}

.footer-pro__mapLink {
    display: inline-block;
    margin-top: 12px;
    color: #00AEEF;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer-pro__mapLink:hover {
    text-decoration: underline;
    color: #00AEEF;
}

.footer-pro__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    background: rgba(0,0,0,0.15);
}

.footer-pro__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-pro__socialLink {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    text-decoration: none;
}

.footer-pro__socialLink:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.18);
}

.footer-pro__socialLink img {
    display: block;
    filter: brightness(0) invert(1);
}

.footer-pro__copyright {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-align: right;
}

@media (max-width: 992px) {
    .footer-pro__top .footer-pro__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-pro__top {
        padding: 40px 0 30px;
    }

    .footer-pro__top .footer-pro__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-pro__inner.footer-pro__bottomInner {
        flex-direction: column;
        align-items: center;
    }

    .footer-pro__copyright {
        text-align: center;
    }
}

/* ========================================================
   ABOUT US PAGE (OJSGLOBALTHEME)
   ======================================================== */

.aboutus {
    background: #f4f4f4;
    padding-bottom: 50px;
}

.aboutus__hero {
    background: linear-gradient(180deg, #0b1020 0%, #09152e 100%);
    border-bottom: 3px solid #00AEEF;
    padding: 56px 0;
}

.aboutus__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.aboutus__title {
    margin: 0 0 12px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.aboutus__subtitle {
    margin: 0;
    max-width: 860px;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.8;
}

.aboutus__content {
    padding-top: 34px;
}

.aboutus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.aboutus__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.aboutus__card--wide {
    padding: 26px;
}

.aboutus__cardTitle {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 800;
    color: #0b1020;
    position: relative;
    padding-bottom: 12px;
}

.aboutus__cardTitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 2px;
    background: #00AEEF;
}

.aboutus__text {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

.aboutus__list {
    margin: 0;
    padding-left: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.9;
}

.aboutus__twoCol {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: start;
}

.aboutus__cta {
    margin-top: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-left: 4px solid #00AEEF;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.aboutus__ctaTitle {
    margin: 0 0 8px;
    color: #0b1020;
    font-size: 16px;
    font-weight: 800;
}

.aboutus__ctaBtn {
    background: #00AEEF;
    border: 1px solid #00AEEF;
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 10px;
    white-space: nowrap;
}

.aboutus__ctaBtn:hover {
    background: #008cbf;
    border-color: #008cbf;
}

@media (max-width: 992px) {
    .aboutus__grid {
        grid-template-columns: 1fr;
    }

    .aboutus__twoCol {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .aboutus__hero {
        padding: 42px 0;
    }

    .aboutus__title {
        font-size: 28px;
    }

    .aboutus__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================================
   1. HALAMAN LOGIN, REGISTER & LOST PASSWORD (DARI STYLE.CSS ANDA)
   ======================================================== */
.page_login, .page_register, .page_lost_password {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 15px 60px;
    min-height: 75vh;
    background-color: #f4f4f4;
}

.page_login .cmp_breadcrumbs,
.page_register .cmp_breadcrumbs,
.page_lost_password .cmp_breadcrumbs {
    display: none !important;
}

.page_login > h1,
.page_register > h1,
.page_lost_password > h1 {
    text-align: center;
    font-size: 28px;
    color: #0b1020;
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.page_login > p,
.page_register > p,
.page_lost_password > p {
    text-align: center;
    margin: 0 0 18px;
    color: rgba(11,16,32,0.65);
    font-size: 14px;
    line-height: 1.6;
}

.auth-page__subtitle {
    max-width: 560px;
}

.auth-page__meta {
    margin: 0 0 14px !important;
    font-size: 13px;
}

.auth-page__note {
    max-width: 560px;
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.25);
    border-left: 4px solid #00AEEF;
    padding: 10px 12px;
    border-radius: 12px;
    margin: 0 0 16px;
    color: #0b1020;
    font-size: 14px;
    line-height: 1.6;
}

.auth-page__links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.auth-page__link {
    color: #00AEEF;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
}

.auth-page__link:hover {
    text-decoration: underline;
}

.auth-page__hint {
    margin: 8px 0 0;
    color: rgba(11,16,32,0.65);
    font-size: 13px;
    line-height: 1.6;
}

.page_login .cmp_form,
.page_register .cmp_form,
.page_lost_password .cmp_form,
#lostPasswordForm {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 26px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.page_login .cmp_form::before,
.page_register .cmp_form::before,
.page_lost_password .cmp_form::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #00AEEF;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.page_register .cmp_form {
    max-width: 860px;
}

/* Input Field */
.page_login input[type="text"],
.page_login input[type="password"],
.page_login input[type="email"],
.page_register input,
.page_register select,
.page_register textarea,
.page_lost_password input[type="email"],
#lostPasswordForm input {
    width: 100%;
    padding: 11px 12px;
    margin-top: 6px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.page_login input:focus,
.page_register input:focus,
.page_register select:focus,
.page_register textarea:focus,
.page_lost_password input:focus {
    border-color: #00AEEF; /* Fokus Biru */
    outline: none;
}

.page_login .label,
.page_register .label,
.page_lost_password .label {
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    color: #0b1020;
}

.page_login .required,
.page_register .required,
.page_lost_password .required {
    color: #00AEEF;
    font-weight: 900;
}

.page_login .pkp_form_error,
.page_lost_password .pkp_form_error {
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.25);
    border-left: 4px solid #00AEEF;
    color: #0b1020;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.page_register .cmp_notification,
.page_register .pkp_form_error,
.page_register .pkp_form_error_list,
.page_register .cmp_form_error {
    background: rgba(0,174,239,0.08);
    border: 1px solid rgba(0,174,239,0.25);
    border-left: 4px solid #00AEEF;
    color: #0b1020;
    padding: 12px 14px;
    border-radius: 12px;
    margin: 0 0 14px;
}

.page_login .fields,
.page_register .fields,
.page_lost_password .fields {
    display: block;
}

.page_login fieldset.fields,
.page_lost_password .fields {
    border: 0;
    margin: 0;
    padding: 0;
}

.page_login .fields > div,
.page_lost_password .fields > div {
    margin-bottom: 14px;
}

.page_login .fields > div:last-child,
.page_lost_password .fields > div:last-child {
    margin-bottom: 0;
}

.page_login input[type="text"],
.page_login input[type="password"],
.page_login input[type="email"],
.page_lost_password input[type="email"] {
    margin-bottom: 0;
}

.page_login .remember {
    margin-top: 2px;
}

.page_login .remember label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.page_login .remember .label {
    margin: 0;
    font-weight: 700;
    font-size: 13px;
    color: rgba(11,16,32,0.72);
}

.page_register fieldset {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    margin: 0 0 16px;
}

.page_register fieldset legend {
    padding: 0 10px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #0b1020;
}

.page_register fieldset .fields > div {
    margin-bottom: 6px;
}

@media (min-width: 992px) {
    .page_register fieldset.identity .fields,
    .page_register fieldset.login .fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
    }

    .page_register fieldset.identity .fields .country {
        grid-column: 1 / -1;
    }
}

.page_login .password a,
.page_lost_password a {
    display: inline-block;
    margin-top: 8px;
    color: #00AEEF;
    text-decoration: none;
    font-weight: 700;
}

.page_login .password a:hover,
.page_lost_password a:hover {
    text-decoration: underline;
}

.page_login .remember,
.page_register .consent,
.page_register .reviewer,
.page_register .fields,
.page_lost_password .fields {
    font-size: 14px;
    color: #555;
}

.page_login .remember input[type="checkbox"],
.page_register input[type="checkbox"],
.page_lost_password input[type="checkbox"] {
    transform: translateY(1px);
}

.page_login .buttons,
.page_register .buttons,
.page_lost_password .buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.page_login .buttons,
.page_lost_password .buttons {
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Tombol Login/Register/Reset */
.page_login button.submit,
.page_register button.submit,
.page_lost_password button.submit,
#lostPasswordForm button {
    background-color: #00AEEF; /* UBAH KE BIRU */
    color: #fff;
    border: 1px solid #00AEEF;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    width: 100%;
    transition: background 0.2s;
}

.page_login button.submit:hover,
.page_register button.submit:hover,
.page_lost_password button.submit:hover,
#lostPasswordForm button:hover {
    background-color: #008cbf;
    border-color: #008cbf;
}

.page_login .buttons a.register,
.page_register .buttons a.login,
.page_lost_password .buttons a.register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(0,174,239,0.32);
    background: transparent;
    color: #00AEEF;
    text-decoration: none;
    font-weight: 800;
    box-sizing: border-box;
    box-shadow: none;
}

.page_login .buttons a.register:hover,
.page_register .buttons a.login:hover,
.page_lost_password .buttons a.register:hover {
    background: rgba(0,174,239,0.08);
    border-color: rgba(0,174,239,0.55);
}

@media (max-width: 576px) {
    .page_login, .page_register, .page_lost_password {
        padding: 34px 15px 48px;
        min-height: auto;
    }

    .page_login > h1,
    .page_register > h1,
    .page_lost_password > h1 {
        font-size: 24px;
    }

    .page_login .cmp_form,
    .page_register .cmp_form,
    .page_lost_password .cmp_form {
        padding: 20px;
    }
}

/* ========================================================
   2. HEADER & NAVIGATION
   ======================================================== */
.site-header {
    width: 100%;
    padding: 0;
    border-bottom: 4px solid #00AEEF; /* Garis Biru */
    background: #fff;
}

.header-banner {
    display: block;
    width: 100%; /* Banner Full Width */
    height: auto;
}

/* Navbar Biru */
.site-nav-wrapper {
    background-color: #00AEEF;
    margin-top: 0;
}

.site-nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav .nav-link {
    color: white !important; /* Teks Putih */
    text-decoration: none;
    font-weight: 500;
    padding: 15px 0;
}

/* ========================================================
   3. GRID JURNAL (LAYOUT BARU - 2 KOLOM HORIZONTAL)
   ======================================================== */
.page_index_site h1 {
    font-weight: 900;
    text-transform: uppercase;
    color: #00AEEF;
    text-align: center;
    font-size: 2.5rem;
}

.page_index_site p {
    color: #0099CC;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.issues_archive {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* 2 Kolom */
    gap: 30px !important;
    padding: 10px;
    margin-bottom: 60px;
}

/* Kartu Horizontal */
.obj_issue_summary {
    display: flex !important;
    flex-direction: row !important; /* Gambar Kiri, Teks Kanan */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    height: auto;
    transition: transform 0.2s;
    align-items: stretch;
}

.obj_issue_summary:hover {
    transform: translateY(-5px);
    border-color: #00AEEF;
}

/* Bagian Gambar (35%) */
.journal_thumbnail {
    width: clamp(240px, 40%, 420px);
    aspect-ratio: 1128 / 919;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.journal_thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
}

.journal_thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
}

/* Bagian Info (65%) */
.journal_info {
    flex: 1 1 auto;
    min-width: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.journal_info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}
.journal_info h3 a {
    color: #333;
    text-decoration: none;
}
.journal_info h3 a:hover { color: #00AEEF; }

.btn-group-custom {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: stretch;
}

.btn-group-custom .btn-custom {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    line-height: 1.15;
    box-sizing: border-box;
}

/* Deskripsi jurnal (hindari inline-style agar konsisten) */
.journal_desc {
    font-size: 0.92rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.65;
    text-align: justify;
}

/* Placeholder ketika thumbnail belum di-set */
.journal_thumbnail--empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
    color: #888;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.btn-blue {
    background-color: #00AEEF;
    color: white !important;
    border: 1px solid transparent;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.btn-blue-outline {
    background-color: transparent;
    border: 1px solid #00AEEF;
    color: #00AEEF !important;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}
/* ========================================================
   FIX NAVIGASI (HILANGKAN TITIK & RAPIKAN)
   ======================================================== */

/* Hilangkan titik bullet pada menu */
.site-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ========================================================
   FIX TAMPILAN DESKTOP (HEADER FULL & NAV RAPI)
   ======================================================== */

/* 1. RESET MARGIN BODY (Hapus celah putih di pinggir layar) */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; /* Mencegah scroll samping */
}

/* 2. HEADER BANNER FULL WIDTH (TEMBUS KIRI-KANAN) */
/* Trik ini memaksa header keluar dari kotak container OJS */
.site-header {
    width: 100vw !important; /* Lebar selebar layar perangkat */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important; /* Tarik ke kiri mentok */
    margin-right: -50vw !important; /* Tarik ke kanan mentok */
    padding: 0 !important;
    background: #fff;
    border-bottom: 4px solid #00AEEF; /* Garis biru di bawah gambar */
}

/* Pastikan gambar mengisi penuh area */
.header-banner {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    height: auto !important;
}

/* 3. NAVIGASI (AGAR TIDAK MEPET KIRI) */
/* Kita batasi lebarnya dan taruh di tengah (Center) */
.site-nav-wrapper {
    width: 100% !important;
    background-color: #00AEEF;
}

.site-nav-wrapper .container {
    max-width: 1400px !important; /* Batas lebar konten menu */
    margin: 0 auto !important;    /* Rata tengah */
    padding: 0 40px !important;   /* Beri jarak napas kiri-kanan */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Menu mulai dari kiri (tapi setelah padding) */
}

/* Rapikan link menu */
.site-nav .nav-link {
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important; /* Huruf besar semua biar gagah */
    letter-spacing: 0.5px;
    padding: 15px 20px !important; /* Jarak antar menu */
}
/* ========================================================
   FIX SPASI JUDUL & SUB-JUDUL
   ======================================================== */

/* 1. Atur Judul "JOURNAL" */
.page_index_site h1, 
.global-main-title {
    margin-bottom: 0 !important; /* Hilangkan jarak bawah */
    padding-bottom: 0 !important;
    line-height: 1.2 !important; /* Kurangi tinggi baris */
}

/* 2. Atur Sub-judul "Journal Collection..." */
.page_index_site p, 
.global-sub-title {
    margin-top: 5px !important; /* Jarak tipis saja (5px) dari judul */
    padding-top: 0 !important;
    margin-bottom: 40px !important; /* Jarak ke Grid Jurnal tetap ada */
}

/* Opsional: Jika ingin mengurangi jarak dari Navbar ke Judul */
.page_index_site {
    margin-top: 20px !important; /* Atur sesuai selera */
}

.btn-blue:hover { background-color: #008cbf; }
.btn-blue-outline:hover { background-color: #00AEEF; color: white !important; }

/* ========================================================
   4. RESPONSIVE
   ======================================================== */
@media (max-width: 991px) {
    .issues_archive { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    .obj_issue_summary { flex-direction: column !important; height: auto; }
    .journal_thumbnail { width: 100%; height: auto; border-right: none; }
    .journal_info { width: 100%; }
}
/* ========================================================
   FIX TAMPILAN MOBILE (HP) - VERSI FINAL
   ======================================================== */

@media (max-width: 768px) {
    
    /* --- 1. NAVBAR LEBIH RAMPING --- */
    .site-nav-wrapper {
        padding: 5px 0 !important; /* Kurangi jarak wrapper */
    }
    
    .site-nav .nav-link {
        padding: 8px 10px !important; /* Perkecil tombol menu */
        font-size: 14px !important; /* Font sedikit lebih kecil */
    }

    .site-nav-wrapper .container {
        justify-content: center !important; /* Menu rata tengah */
        gap: 15px;
    }

    /* --- 2. LAYOUT GRID 1 KOLOM --- */
    .issues_archive {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 20px !important;
    }

    /* --- 3. KARTU JURNAL LEBIH TINGGI --- */
    .obj_issue_summary {
        flex-direction: column !important; /* Susun ke bawah */
        height: auto !important; /* Tinggi kartu mengikuti isi */
        border-radius: 10px !important;
    }

    /* --- 4. GAMBAR TIDAK KEPOTONG (LEBIH TINGGI) --- */
    .journal_thumbnail {
        width: 100% !important;
        /* KITA NAIKKAN JADI 300PX AGAR GAMBAR MUAT SEMUA */
        height: auto !important;
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 !important;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .journal_thumbnail img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* --- 5. INFO & JUDUL --- */
    .journal_info {
        width: 100% !important;
        padding: 25px !important;
    }
    
    .journal_info h3 {
        font-size: 1.3rem !important;
        text-align: center; /* Judul rata tengah di HP */
        margin-bottom: 15px;
    }

    /* Deskripsi di HP */
    .journal_info div {
        text-align: justify !important;
        font-size: 0.95rem !important;
    }
    
    /* Tombol Full Width */
    .btn-group-custom {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .btn-blue, .btn-blue-outline {
        width: 100%;
        text-align: center;
        padding: 10px 12px; /* Tetap nyaman dipencet, tidak kebesaran */
    }
}

/* ================================================================
   HEADER PRO (HERO + NAVBAR-PRO)
   - Struktur mengikuti contoh ojsqriset
   ================================================================ */

.global-header-pro.pkp_structure_head {
    padding: 0 !important;
    margin: 0 !important;
}

/* ================================================================
   HEADER BANNER (HERO)
   ================================================================ */
.global-header-pro .site-header-pro {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;

    /* Full-bleed inside centered OJS containers (safe calc trick) */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.global-header-pro .banner-link-pro {
    display: block;
}

.global-header-pro .header-banner-pro {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .global-header-pro .header-banner-pro {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .global-header-pro .header-banner-pro {
        height: 110px;
    }
}

/* ================================================================
   NAVBAR PROFESIONAL
   ================================================================ */
.navbar-pro {
    background: linear-gradient(135deg, #0b1020 0%, #09152e 100%);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, padding 0.3s ease;

    /* Full-bleed inside centered OJS containers (safe calc trick) */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/*
   Sticky fallback/penegasan saat scroll (meniru pengalaman ojsqriset)
   - Pada sebagian layout OJS, `position: sticky` bisa tidak konsisten.
   - JS akan toggle class `.is-fixed` dan mengatur spacer agar konten tidak lompat.
*/
.navbar-pro.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;

    /* reset full-bleed calc margins ketika fixed */
    margin-left: 0;
    margin-right: 0;
}

.navbar-pro-spacer {
    height: 0;
}

.navbar-pro.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-pro-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

/* === BRAND (logo + text) === */
.navbar-pro-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.navbar-pro-brand:hover {
    text-decoration: none;
}

.navbar-pro-logo {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity 0.2s;
}

.navbar-pro-brand:hover .navbar-pro-logo {
    opacity: 1;
}

.navbar-pro-brand-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 0.9;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.navbar-pro-brand:hover .navbar-pro-brand-text {
    opacity: 1;
}

/* === MENU AREA === */
.navbar-pro-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    min-width: 0;
}

/* === NAV LINKS === */
.navbar-pro-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 24px;
    min-width: 0;
}

.navbar-pro-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    white-space: nowrap;
}

.navbar-pro-link .navbar-pro-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex: 0 0 auto;
}

.navbar-pro-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.navbar-pro-link:hover .navbar-pro-icon {
    opacity: 1;
}

.navbar-pro-link.active {
    color: #00AEEF;
    background: rgba(0, 174, 239, 0.12);
}

.navbar-pro-link.active .navbar-pro-icon {
    opacity: 1;
}

/* === AUTH BUTTONS === */
.navbar-pro-auth {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-pro-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.navbar-pro-btn .navbar-pro-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

/* Login button (outline) */
.navbar-pro-btn-outline {
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.navbar-pro-btn-outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Register button (primary) */
.navbar-pro-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #00AEEF, #008cbf);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
}

.navbar-pro-btn-primary:hover {
    box-shadow: 0 4px 14px rgba(0, 174, 239, 0.45);
    text-decoration: none;
    transform: translateY(-1px);
}

/* === USER DROPDOWN (LOGGED IN) === */
.navbar-pro-user {
    position: relative;
}

.navbar-pro-user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 6px 14px 6px 8px;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
    font-family: inherit;
    font-size: 13px;
}

.navbar-pro-user-btn:hover,
.navbar-pro-user-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.navbar-pro-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00AEEF, #008cbf);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #fff;
    flex-shrink: 0;
}

.navbar-pro-username {
    font-weight: 500;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-pro-caret {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.2s;
}

.navbar-pro-user-btn.active .navbar-pro-caret {
    transform: rotate(180deg);
}

/* Dropdown menu */
.navbar-pro-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 210px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 9999;
}

.navbar-pro-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-pro-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #333;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.dropdown-pro-item:hover {
    background: #f8f8fa;
    color: #00AEEF;
    text-decoration: none;
}

.dropdown-pro-divider {
    height: 1px;
    background: #eee;
    margin: 4px 12px;
}

.dropdown-pro-logout {
    color: #e74c3c;
}

.dropdown-pro-logout:hover {
    background: #fef2f2;
    color: #c0392b;
}

/* === HAMBURGER (MOBILE) === */
.navbar-pro-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.navbar-pro-toggler:focus {
    outline: none;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-pro-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-pro-toggler.active .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-pro-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================
   NAVBAR RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .navbar-pro-toggler {
        display: flex;
    }

    .navbar-pro-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #09152e 0%, #0b1020 100%);
        flex-direction: column;
        padding: 16px 24px 24px;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-pro-menu.open {
        display: flex;
    }

    .navbar-pro-links {
        flex-direction: column;
        gap: 4px;
        margin-right: 0;
        width: 100%;
    }

    .navbar-pro-link {
        width: 100%;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .navbar-pro-auth {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-pro-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }

    .navbar-pro-brand-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar-pro {
        padding: 0 16px;
    }

    .navbar-pro-logo {
        height: 28px;
    }
}

/* ================================================================
   FOOTER PRO (ojsqriset-style)
   - Struktur: footer-pro-main + footer-pro-bottom (full-bleed)
   ================================================================ */

/* Override parent theme (default) footer constraints */
footer.pkp_structure_footer,
.pkp_structure_footer {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    background: none !important;
}

.pkp_structure_footer::before,
.pkp_structure_footer::after {
    display: none !important;
}

.pkp_structure_footer_wrapper {
    background: none !important;
    border: none !important;
}

.footer-pro {
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
    background: none;
    color: inherit;
}

/* Full-bleed section without 100vw overflow */
.footer-pro-main,
.footer-pro-bottom {
    width: 100%;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* === BARIS UTAMA (DARK SECTION) === */
.footer-pro-main {
    background: linear-gradient(135deg, #0b1020 0%, #09152e 100%);
    color: #ccc;
    padding: 50px 0 40px;
}

.footer-pro-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-pro-main .footer-pro-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.7fr 1.2fr;
    gap: 36px;
}

@media (max-width: 991px) {
    .footer-pro-main .footer-pro-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 576px) {
    .footer-pro-main .footer-pro-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* === COLUMN TITLES === */
.footer-col-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF, #008cbf);
    border-radius: 2px;
}

/* === KOLOM 1: ABOUT === */
.footer-pro-logo {
    max-width: 160px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-pro-desc {
    font-size: 13.5px;
    color: #aab;
    line-height: 1.75;
    margin: 0;
}

/* === KOLOM 2: KONTAK === */
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.6;
    color: #aab;
}

.footer-contact-list li i {
    color: #00AEEF;
    font-size: 14px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-contact-list a {
    color: #aab;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list a:hover {
    color: #00AEEF;
    text-decoration: none;
}

/* === KOLOM 3: NAVIGASI === */
.footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #aab;
    font-size: 13.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, padding-left 0.2s;
    padding-left: 0;
}

.footer-nav-list a i {
    font-size: 9px;
    color: #00AEEF;
    transition: transform 0.2s;
}

.footer-nav-list a:hover {
    color: #00AEEF;
    padding-left: 4px;
    text-decoration: none;
}

.footer-nav-list a:hover i {
    transform: translateX(2px);
}

/* === KOLOM 4: PETA === */
.footer-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-map-wrap iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: 0;
}

/* === BARIS BAWAH (COPYRIGHT) === */
.footer-pro-bottom {
    background: #0f0f23;
    padding: 20px 0;
}

.footer-pro-bottom .footer-pro-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* === SOCIAL BUTTONS === */
.footer-pro-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.2s;
}

.footer-social-btn:hover {
    background: #00AEEF;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* === COPYRIGHT TEXT === */
.footer-pro-copyright {
    font-size: 13px;
    color: #778;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 576px) {
    .footer-pro-main {
        padding: 36px 0 28px;
    }

    .footer-pro-bottom .footer-pro-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-pro-social {
        justify-content: center;
    }

    .footer-map-wrap iframe {
        height: 180px;
    }
}

/* ================================================================
   FIXED HEADER
   - Navbar tetap terlihat saat scroll
   ================================================================ */

/* NOTE:
   Disengaja tidak memakai header fixed.
   Mengikuti contoh `ojsqriset`: navbar menggunakan `position: sticky` (lihat definisi .navbar-pro di atas)
   sehingga banner hero tetap menempel di atas dan navbar baru menempel saat scroll.
*/