    /* ============================================
    UNIVERSAL CSS VARIABLES
    ============================================ */
    :root {
    --main-color: #124d34;
    --main-color-deep: #0b3619;
    --main-color-light: #1b6350;
    --secondary-color: #2fb958;
    --secondary-color-soft: #E4D3A5;
    --secondary-color-dark: #28a064;
    --bg-color: #F7F4EE;
    --bg-card: #FFFFFF;
    --text-color: #1C2430;
    --text-soft: #5B6577;
    --border-color: #E4E0D6;
    --accent-gold: var(--secondary-color);
    --accent-gold-soft: var(--secondary-color-soft);
    --max-width: 1180px;
    --radius: 4px;
    --nav-height: 84px;
    --utility-height: 45px;
    }

    /* --- Reset & Base --- */
    * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }

    html {
    scroll-behavior: smooth;
    }

    body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    h3 {
    font-family: 'Poppins', serif;
    }

    img {
    max-width: 100%;
    display: block;
    }

    a {
    color: inherit;
    text-decoration: none;
    }

    .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    }

    button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    }

    :focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    }

    /* ============================================
    FLOATING WHATSAPP BUTTON
    ============================================ */
    .whatsapp-float {
    position: fixed;
    bottom: 14px;
    right:20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    }

    .whatsapp-float .wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    }

    .whatsapp-float .wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-float .wa-btn .pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: pulse 2s ease-out infinite;
    }

    @keyframes pulse {
    0% {
    transform: scale(1);
    opacity: 0.5;
    }
    100% {
    transform: scale(1.1);
    opacity: 0;
    }
    }

    .whatsapp-float .wa-tooltip {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    }

    .whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(0);
    }

    @media (max-width: 480px) {
    .whatsapp-float {
    bottom: 14px;
    right:20px;
    }
    .whatsapp-float .wa-btn {
    width: 52px;
    height: 52px;
    font-size: 26px;
    }
    }
/* ===== UTILITY BAR RESPONSIVE FIXES ===== */

/* --- Utility Bar Base Fix --- */
.utility {
    height: auto;
    min-height: var(--utility-height);
}

.utility .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
    gap: 8px;
    padding: 4px 16px;
}

/* --- Utility Search Fix --- */
.utility-search {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    background: #fff;
    color: #0B1D36;
    border: 1px solid rgba(185, 146, 47, 0.25);
    border-radius: 6px;
    padding: 6px 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 32px;
}

.utility-search span {
    font-size: 12px;
    white-space: nowrap;
}

.utility-search i {
    font-size: 14px;
}

/* --- Utility Social Fix --- */
.utility-social {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.utility-social a {
    opacity: .8;
    transition: opacity .15s;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
}

/* --- Utility Language Fix --- */
.utility-lang {
    border-left: 1px solid rgb(255, 255, 255);
    padding-left: 14px;
    letter-spacing: .04em;
    font-size: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

.utility-lang i {
    font-size: 12px;
}

/* ===== MOBILE RESPONSIVE ===== */

/* --- Tablet (768px - 1024px) --- */
@media (max-width: 1024px) {
    .utility .wrap {
        padding: 4px 16px;
        gap: 6px;
    }

    .utility-search {
        padding: 5px 10px;
    }

    .utility-search span {
        font-size: 11px;
    }

    .utility-social {
        gap: 10px;
    }

    .utility-lang {
        font-size: 11px;
        padding-left: 10px;
    }
}

/* --- Mobile Large (481px - 767px) --- */
@media (max-width: 767px) {
    .utility {
        min-height: 40px;
        height: auto;
        padding: 4px 0;
    }

    .utility .wrap {
        flex-wrap: nowrap;
        gap: 6px;
        padding: 0 12px;
        justify-content: space-between;
        align-items: center;
        min-height: 40px;
    }

    /* Search button compact */
    .utility-search {
        padding: 4px 8px;
        gap: 4px;
        min-height: 28px;
        border-radius: 4px;
        flex-shrink: 0;
    }

    .utility-search span {
        font-size: 10px;
        display: inline-block;
        max-width: 50px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .utility-search i {
        font-size: 12px;
    }

    /* Social icons compact */
    .utility-social {
        gap: 6px;
        flex-shrink: 0;
    }

    .utility-social a {
        font-size: 12px;
        min-width: 24px;
        min-height: 24px;
        padding: 2px;
    }

    /* Language selector */
    .utility-lang {
        font-size: 10px;
        padding-left: 8px;
        border-left: 1px solid rgba(255, 255, 255, .15);
        flex-shrink: 0;
    }

    .utility-lang i {
        font-size: 10px;
    }
}

/* --- Mobile Small (320px - 480px) --- */
@media (max-width: 480px) {
    .utility {
        min-height: 36px;
        padding: 2px 0;
    }

    .utility .wrap {
        gap: 4px;
        padding: 0 8px;
        min-height: 36px;
    }

    /* Hide search text on very small screens */
    .utility-search span {
        display: none;
    }

    .utility-search {
        padding: 4px 6px;
        min-height: 24px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .utility-search i {
        font-size: 11px;
        color: #fff;
    }

    /* Show only 2 social icons */
    

    .utility-social {
        gap: 4px;
    }

    .utility-social a {
        font-size: 11px;
        min-width: 20px;
        min-height: 20px;
    }

    /* Language simplified */
    .utility-lang {
        font-size: 9px;
        padding-left: 6px;
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .utility-lang i {
        display: none;
    }
}

/* --- Very Small (up to 360px) --- */
@media (max-width: 360px) {
    .utility .wrap {
        gap: 2px;
        padding: 0 4px;
        min-height: 32px;
    }

    .utility-search {
        padding: 2px 4px;
        min-height: 20px;
        border-radius: 3px;
    }

    .utility-search i {
        font-size: 10px;
    }

    .utility-social a:nth-child(n+2) {
        display: none;
    }

    .utility-social {
        gap: 2px;
    }

    .utility-social a {
        font-size: 10px;
        min-width: 18px;
        min-height: 18px;
    }

    .utility-lang {
        font-size: 8px;
        padding-left: 4px;
        border-left: none;
    }
}

/* --- Landscape Mobile Fix --- */
@media (max-height: 500px) and (orientation: landscape) {
    .utility {
        min-height: 30px;
        padding: 0;
    }

    .utility .wrap {
        min-height: 30px;
        padding: 0 12px;
    }

    .utility-search {
        padding: 2px 6px;
        min-height: 20px;
    }

    .utility-search span {
        font-size: 9px;
        display: none;
    }

    .utility-search i {
        font-size: 10px;
    }

    .utility-social a {
        font-size: 10px;
        min-width: 18px;
        min-height: 18px;
    }

    .utility-lang {
        font-size: 9px;
        padding-left: 6px;
    }
}

/* --- Touch Target Size for Mobile --- */
@media (max-width: 768px) {
    .utility-search,
    .utility-social a,
    .utility-lang {
        min-height: 36px;
        min-width: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .utility-search {
        min-height: 32px;
        min-width: 32px;
    }
}

/* --- Dark Mode Support (optional) --- */
@media (prefers-color-scheme: dark) {
    .utility {
        background: #0a1a0f;
    }

    .utility-search {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
        color: #cfd7e3;
    }

    .utility-search i {
        color: #cfd7e3;
    }

    .utility-search:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(185, 146, 47, 0.4);
    }
}

    /* --- Search Modal --- */
    .search-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--main-color-light);
    backdrop-filter: blur(100px);
    opacity: 0.95;
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 24px;
    }

    .search-modal.open {
    display: flex;
    }

    .search-modal .search-box {
    max-width: 640px;
    width: 100%;
    background: #fff;
    border-radius: var(--radius);
    padding: 8px;
    display: flex;
    gap: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    }

    .search-modal .search-box input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    font-family: inherit;
    background: transparent;
    outline: none;
    color: var(--text-color);
    }

    .search-modal .search-box button {
    padding: 16px 28px;
    background: var(--secondary-color);
    color: var(--main-color-deep);
    font-weight: 600;
    border-radius: var(--radius);
    font-size: 14px;
    transition: background .15s;
    }

    .search-modal .search-box button:hover {
    background: var(--secondary-color-soft);
    }

    .search-modal .close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 32px;
    opacity: .6;
    transition: opacity .15s;
    }

    .search-modal .close-search:hover {
    opacity: 1;
    }

    /* --- Header / Nav --- */
    header.main {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--nav-height);
    }

    .nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
    }

    .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    }
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 1;
    min-width: 0;
}

.brand .mark {
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 8px;
    padding: 0 12px;
    border-right: 1px solid rgb(4, 51, 52);
}

.brand .mark img {
    display: block;
    height: auto;
    object-fit: contain;
}

.brand .mark img:first-child {
    width: 50px;
}

.brand .mark img:last-child {
    width: 80px;
    padding-right: 10px;
}

.brand-text {
    line-height: 1.25;
    min-width: 0;
}

.brand-text strong {
    display: block;
    font-size: 24px;
    color: var(--main-color-deep);
    white-space: nowrap;
}

.brand-text span {
    display: block;
    font-size: 11.5px;
    color: var(--text-soft);
    letter-spacing: .02em;
    white-space: nowrap;
}


    nav.primary {
    display: flex;
    align-items: center;
    gap: 0;
    }

    nav.primary>a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 14px;
    position: relative;
    white-space: nowrap;
    }

    nav.primary>a.active {
    color: var(--main-color);
    }

    nav.primary>a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -2px;
    height: 2px;
    background: var(--secondary-color);
    }

    nav.primary>a:hover {
    color: var(--main-color);
    }

    .nav-dropdown {
    position: relative;
    }

    .nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 14px;
    white-space: nowrap;
    }

    .nav-dropdown>a i.fa-chevron-down {
    font-size: 10px;
    transition: transform .2s;
    }

    .nav-dropdown:hover>a i.fa-chevron-down {
    transform: rotate(180deg);
    }

    .nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    padding: 6px 0;
    z-index: 100;
    }

    .nav-dropdown:hover .dropdown-menu {
    display: block;
    }

    .nav-dropdown .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-color);
    transition: background .12s;
    position: relative;
    }

    .nav-dropdown .dropdown-menu a:hover {
    background: var(--bg-color);
    color: var(--main-color);
    }

    .nav-dropdown .dropdown-menu .sub-dropdown {
    position: relative;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown>a i {
    font-size: 10px;
    color: var(--text-soft);
    }

    .nav-dropdown .dropdown-menu .sub-dropdown .sub-menu {
    display: none;
    position: absolute;
    left: 100%;
    top: -6px;
    min-width: 200px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    padding: 6px 0;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown:hover .sub-menu {
    display: block;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown .sub-menu a {
    padding: 10px 20px;
    font-size: 13px;
    }

    .menu-toggle {
    display: none;
    font-size: 22px;
    color: var(--main-color);
    padding: 8px;
    }

    /* --- Hero --- */
    .hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    height: calc(100vh - var(--utility-height) - var(--nav-height));
    min-height: 500px;
    display: flex;
    align-items: center;
    background: var(--main-color-deep);
    }

    .heading-hero {
    font-size: 45pt !important;
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(11, 29, 54, 0.5), 0 0 10px rgba(11, 29, 54, 0.5);
    }

    .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    }

    .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(1100px 500px at 82% -10%, rgba(185, 146, 47, .20), transparent 40%),
    linear-gradient(120deg, rgba(13, 56, 28, 0.5) 0%, rgba(39, 120, 81, 0.78) 62%, rgba(13, 56, 33, 0.5) 100%);
    }

    .hero .wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
    align-items: center;
    width: 100%;
    padding: 40px 24px;
    }

    .hero h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
    font-weight: 600;
    margin: 0 0 20px;
    max-width: 16ch;
    }

    .hero p.lead {
    font-size: 16.5px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 52ch;
    margin: 0 0 32px;
    }

    .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
    }

    .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14.5px;
    border: 1px solid transparent;
    transition: transform .15s ease, background .15s ease, color .15s ease;
    }

    .btn-gold {
    background: var(--secondary-color);
    color: var(--main-color-deep);
    }

    .btn-gold:hover {
    background: var(--secondary-color-soft);
    }

    .btn-outline {
    border-color: rgba(255, 255, 255, .35);
    color: #fff;
    }

    .btn-outline:hover {
    background: rgba(255, 255, 255, .1);
    }

    .hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    }

    .hero-links a {
    font-size: 13.5px;
    color: #D6DEEA;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    padding-bottom: 2px;
    }

    .hero-links a:hover {
    color: var(--secondary-color-soft);
    border-color: var(--secondary-color-soft);
    }

    /* --- Accredit Strip --- */
    .accred-strip {
    background: var(--main-color-light);
    border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .accred-strip .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 14px;
    }

    .accred-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #B9C3D6;
    transition: all .3s ease;
    }

    .accred-logo {
    width: 75px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    flex-shrink: 0;
    transition: all .3s ease;
    }

    .accred-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    }

    .accred-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    }

    .accred-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    }

    .accred-content p {
    margin: 0;
    color: #ffffff;
    font-size: 11.5px;
    line-height: 1.4;
    }

    .accred-item:hover {
    transform: translateY(-2px);
    }

    .accred-item:hover .accred-logo {
    border-color: #B9922F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18), 0 0 15px rgba(185, 146, 47, .25);
    }

    .accred-item:hover .accred-content h4 {
    color: #D6B45A;
    }

    /* --- Section Shell --- */
    section {
    padding: 40px 0;
    }

    .section-head {
    max-width: 640px;
    margin: 0 0 40px;
    }

    .section-head .kicker {
    color: var(--secondary-color);
    font-style: italic;
    font-size: 15px;
    margin: 0 0 8px;
    }

    .section-head h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 12px;
    color: var(--main-color-deep);
    font-weight: 600;
    }

    .section-head p {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    }

    .section-foot {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    }

    .link-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--main-color);
    padding-bottom: 2px;
    }

    .link-more:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    }

    /* --- Sambutan --- */
    .sambutan {
    background: var(--bg-card);
    }

    .sambutan .grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
    }

    .sambutan-photo {
    aspect-ratio: 3/4;
    border-radius: 6px;
    background: linear-gradient(160deg, #dfe4ec, #c3cbdb);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    }

    .sambutan-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

    .sambutan-photo .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(0deg, rgba(11, 29, 54, .82), transparent);
    color: #fff;
    }

    .sambutan-photo .cap strong {
    display: block;
    font-size: 14px;
    }

    .sambutan-photo .cap span {
    font-size: 11.5px;
    color: #D6DEEA;
    }

    .sambutan-body .greet {
    font-style: italic;
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0 0 18px;
    }

    .sambutan-body p {
    color: #3B4454;
    line-height: 1.85;
    font-size: 15px;
    margin: 0 0 18px;
    }

    .sambutan-body .sign strong {
    display: block;
    color: var(--main-color-deep);
    font-size: 16px;
    }

    .sambutan-body .sign span {
    font-size: 13px;
    color: var(--text-soft);
    }

    /* --- Informasi --- */
    .informasi {
    background: var(--bg-card);
    }

    .doc-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: start;
    }

    .doc-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background: var(--bg-color);
    }

    .doc-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--primary-color);
    color: var(--main-color);
    font-size: 13px;
    font-weight: 600;
    }

    .doc-head i {
    font-size: 14px;
    color: var(--secondary-color);
    }

    .doc-list {
    display: flex;
    flex-direction: column;
    }

    .doc-item {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    }

    .doc-item:first-child {
    border-top: none;
    }

    .doc-thumb {
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 4px;
    overflow: hidden;
    background: repeating-linear-gradient(0deg, transparent 0 26px, rgba(18, 42, 77, .05) 26px 27px), #fff;
    border: 1px solid var(--border-color);
    position: relative;
    }

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

    .doc-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .doc-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    }

    .doc-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--text-soft);
    margin: 0 0 8px;
    }

    .doc-date i {
    color: var(--secondary-color);
    font-size: 11px;
    }

    .doc-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    }

    .doc-btn i {
    font-size: 11px;
    transition: transform .15s ease;
    }

    .doc-btn:hover i {
    transform: translateX(3px);
    }

    .doc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    }

    .doc-footer i {
    font-size: 12px;
    transition: transform .15s ease;
    }

    .doc-footer:hover i {
    transform: translateX(3px);
    }

    @media (max-width:900px) {
    .doc-row {
    grid-template-columns: repeat(2, 1fr);
    }
    }
    @media (max-width:620px) {
    .doc-row {
    grid-template-columns: 1fr;
    }
    }

    /* --- Lensa --- */
    .lensa {
    background: var(--main-color-deep);
    color: #fff;
    }

    .lensa .section-head .kicker {
    color: var(--secondary-color-soft);
    }

    .lensa .section-head h2 {
    color: #fff;
    }

    .lensa .section-head p {
    color: #B9C3D6;
    }

    .gallery-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    }

    .gallery-track::-webkit-scrollbar {
    height: 6px;
    }

    .gallery-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 6px;
    }

    .gallery-item {
    flex: 0 0 260px;
    aspect-ratio: 4/5;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: linear-gradient(150deg, var(--g1, #274a78), var(--g2, #0d2038));
    }

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

    .gallery-item .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .75), transparent);
    }

    .gallery-item .cap span {
    font-size: 12px;
    color: #D6DEEA;
    }

    .gallery-nav {
    display: flex;
    gap: 10px;
    margin-top: 22px;
    }

    .gallery-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
    }

    .gallery-nav button:hover {
    background: rgba(255, 255, 255, .1);
    }

    /* --- Testimoni --- */
    .testimoni {
    background: var(--bg-color);
    }

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

    .quote-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    }

    .quote-mark {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 10px;
    }

    .quote-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #3B4454;
    flex: 1;
    margin: 0 0 20px;
    }

    .quote-who {
    display: flex;
    align-items: center;
    gap: 12px;
    }

    .quote-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    flex: none;
    }

    .quote-who strong {
    display: block;
    font-size: 13.5px;
    color: var(--main-color-deep);
    }

    .quote-who span {
    font-size: 12px;
    color: var(--text-soft);
    }

    /* --- Data --- */
    .data-sec {
    background: var(--bg-card);
    }

    .stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    }

    .stat-card {
    border-left: 2px solid var(--secondary-color);
    padding: 6px 0 6px 20px;
    }

    .stat-card .num {
    font-size: 36px;
    color: var(--main-color-deep);
    font-weight: 600;
    }

    .stat-card .lbl {
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 4px;
    }

    .dist {
    border-top: 1px solid var(--border-color);
    padding-top: 36px;
    }

    .dist h4 {
    font-weight: 500;
    font-size: 16px;
    color: var(--main-color-deep);
    margin: 0 0 20px;
    }

    .bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    }

    .bar-row .name {
    width: 150px;
    font-size: 13px;
    color: var(--text-soft);
    flex: none;
    }

    .bar-track {
    flex: 1;
    height: 9px;
    background: var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    }

    .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
    border-radius: 6px;
    }

    .bar-row .pct {
    width: 44px;
    text-align: right;
    font-size: 13px;
    color: var(--main-color-deep);
    font-weight: 600;
    flex: none;
    }

    /* --- CTA --- */
    .cta-banner {
    background: linear-gradient(120deg, var(--main-color-deep), var(--main-color) 75%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    }

    .cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 260px at 50% 0%, rgba(185, 146, 47, .25), transparent 65%);
    }

    .cta-banner .wrap {
    position: relative;
    padding: 60px 24px;
    }

    .cta-banner h2 {
    font-size: clamp(24px, 3.4vw, 34px);
    margin: 0 0 22px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    }

    /* --- Footer --- */
    footer {
    background: var(--main-color-deep);
    color: #B9C3D6;
    }

    .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 0 40px;
    }

    .footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 20px;
    }

    .hotline-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    }

    .hotline-item .ic {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(185, 146, 47, .16);
    color: var(--secondary-color-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 14px;
    }

    .hotline-item strong {
    display: block;
    font-size: 13.5px;
    color: #fff;
    }

    .hotline-item span {
    font-size: 12px;
    color: #93A0B8;
    }

    .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }

    .footer-col ul li {
    margin-bottom: 12px;
    font-size: 13.5px;
    }

    .footer-col ul a:hover {
    color: var(--secondary-color-soft);
    }

    .contact-block p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #B9C3D6;
    margin: 0 0 14px;
    }

    .no-data {
    font-size: 13.5px;
    color: #242424;
    text-align: center;
    margin: 24px 0;
    }

    .map-box {
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(150deg, #1E3D63, var(--main-color-deep));
    border: 1px solid rgba(255, 255, 255, .1);
    }

    .map-box i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--secondary-color-soft);
    }

    .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    font-size: 12.5px;
    color: #ffffff;
    text-align: center;
    }

    /* --- Responsive --- */
    .hero {
    height: auto;
    min-height: calc(100vh - var(--utility-height) - var(--nav-height));
    }

    .hero-video {
    object-position: center center;
    }

    .hero-overlay {
    background: linear-gradient(-97deg, rgba(255, 255, 255, 0.1) 0%, rgba(15, 81, 1, 0.8) 100%);
    }

    .hero .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 20px;
    }

    .hero h1 {
    font-size: clamp(30px, 8vw, 40px);
    max-width: 100%;
    }

    @media screen and (max-width: 760px) {
    .heading-hero {
    font-size: 35pt !important;
    line-height: 1.15;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(11, 29, 54, 0.5), 0 0 10px rgba(11, 29, 54, 0.5);
    }
    }



    .hero p.lead {
    font-size: 15px;
    }

    .hero-actions {
    margin-bottom: 28px;
    }

    .btn {
    padding: 13px 20px;
    }

    .hero-links {
    gap: 12px 18px;
    }

    @media (max-width: 760px) {
    .sambutan .grid {
    grid-template-columns: 1fr;
    gap: 32px;
    }

    .sambutan-photo {
    max-width: 240px;
    margin: 0 auto;
    }

    .doc-row {
    grid-template-columns: repeat(2, 1fr);
    }

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

    .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    }

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

    @media (max-width: 760px) {
    .utility .utility-search span {
    display: none;
    }

    nav.primary {
    position: fixed;
    inset: 0 0 0 auto;
    width: 78%;
    max-width: 320px;
    background: var(--bg-card);
    flex-direction: column;
    align-items: stretch;
    padding: 100px 24px 28px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
    overflow-y: auto;
    z-index: 100;
    }

    nav.primary.open {
    transform: translateX(0);
    }

    nav.primary>a,
    .nav-dropdown>a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    width: 100%;
    display: flex;
    }

    .nav-dropdown .dropdown-menu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    background: transparent;
    }

    .nav-dropdown.open .dropdown-menu {
    display: block;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown .sub-menu {
    position: static;
    display: none;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    background: transparent;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown.open .sub-menu {
    display: block;
    }

    .menu-toggle {
    display: block;
    }

    .doc-row {
    grid-template-columns: 1fr;
    }

    .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 0 24px;
    }

    section {
    padding: 56px 0;
    }

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

    .hero {
    height: auto;
    min-height: calc(100vh - var(--utility-height) - var(--nav-height));
    }

    .hero .wrap {
    padding: 32px 24px;
    }
    }

    @media (max-width:480px) {
    .stat-grid {
    grid-template-columns: 1fr;
    }

    .hero h1 {
    font-size: 26px;
    }

    .brand-text span {
    display: none;
    }
    }

    @media (prefers-reduced-motion: reduce) {
    html {
    scroll-behavior: auto;
    }

    * {
    transition: none !important;
    animation: none !important;
    }
    }

    /* Tambahkan di akhir file CSS atau di bagian responsive */

    /* ===== RESPONSIVE FIXES ===== */

    /* --- Utility Bar Mobile --- */
    @media (max-width: 480px) {
    .utility .wrap {
    font-size: 11px;
    padding: 0 12px;
    }

    .utility-search {
    padding: 4px 8px;
    gap: 4px;
    }

    .utility-search i {
    font-size: 12px;
    }

    .utility-social {
    gap: 5px;
    }

    .utility-social a {
    font-size: 14px;
    }

    .utility-lang {
    padding-left: 10px;
    font-size: 11px;
    }
    }

    @media (max-width: 380px) {
    .utility .utility-social a:not(:first-child) {
    display: none;
    }

    .utility-lang {
    border-left: none;
    padding-left: 8px;
    }
    }

    /* --- Hero Mobile --- */
    @media (max-width: 480px) {
    .hero .wrap {
    padding: 24px 16px;
    min-height: calc(100vh - var(--utility-height) - var(--nav-height));
    display: flex;
    align-items: center;
    }

    .heading-hero {
    font-size: 24pt !important;
    line-height: 1.2;
    margin-bottom: 12px !important;
    }

    .hero p.lead {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 100%;
    }

    .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    }

    .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 13px;
    }

    .hero-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    }

    .hero-links a {
    font-size: 12px;
    }

    .hero-overlay {
    background: linear-gradient(180deg, rgba(13, 56, 28, 0.4) 0%, rgba(13, 56, 33, 0.85) 100%);
    }
    }

    @media (max-width: 380px) {
    .heading-hero {
    font-size: 20pt !important;
    }
    }

    /* --- Accred Strip Mobile --- */
    @media (max-width: 600px) {
    .accred-strip .wrap {
    flex-direction: column;
    gap: 16px;
    padding: 16px 16px;
    }

    .accred-item {
    width: 100%;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    }

    .accred-logo {
    width: 50px;
    height: 36px;
    padding: 4px;
    }

    .accred-content h3 {
    font-size: 14px;
    }

    .accred-content p {
    font-size: 10px;
    }
    }

    @media (max-width: 400px) {
    .accred-item {
    flex-direction: row;
    align-items: center;
    }

    .accred-logo {
    width: 44px;
    height: 32px;
    }
    }

    /* --- Sambutan Mobile --- */
    @media (max-width: 600px) {
    .sambutan .grid {
    grid-template-columns: 1fr;
    gap: 20px;
    }

    .sambutan-photo {
    max-width: 180px;
    margin: 0 auto;
    aspect-ratio: 3/4;
    }

    .sambutan-photo .cap strong {
    font-size: 12px;
    }

    .sambutan-photo .cap span {
    font-size: 10px;
    }

    .sambutan-body .greet {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
    }

    .sambutan-body p {
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 14px;
    }

    .sambutan-body .sign strong {
    font-size: 14px;
    }

    .sambutan-body .sign span {
    font-size: 12px;
    }
    }

    /* --- Informasi Cards Mobile --- */
    @media (max-width: 480px) {
    .informasi {
    padding: 32px 0;
    }

    .section-head {
    margin-bottom: 24px;
    }

    .section-head h2 {
    font-size: 20px;
    }

    .section-head p {
    font-size: 13px;
    }

    .doc-card {
    border-radius: 8px;
    }

    .doc-head {
    padding: 10px 14px;
    font-size: 12px;
    }

    .doc-item {
    padding: 10px 12px;
    gap: 10px;
    flex-wrap: wrap;
    }

    .doc-thumb {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    }

    .doc-body {
    flex: 1;
    min-width: calc(100% - 74px);
    }

    .doc-title {
    font-size: 12.5px;
    -webkit-line-clamp: 2;
    }

    .doc-date {
    font-size: 10.5px;
    margin-bottom: 4px;
    }

    .doc-btn {
    font-size: 11px;
    }

    .doc-footer {
    padding: 10px 14px;
    font-size: 12px;
    }
    }

    @media (max-width: 380px) {
    .doc-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    }

    .doc-thumb {
    flex: 0 0 auto;
    width: 100%;
    height: 120px;
    }

    .doc-body {
    min-width: 100%;
    }
    }

    /* --- Gallery Mobile --- */
    @media (max-width: 480px) {
    .lensa {
    padding: 32px 0;
    }

    .gallery-item {
    flex: 0 0 180px;
    aspect-ratio: 3/4;
    border-radius: 8px;
    }

    .gallery-item .cap {
    padding: 10px;
    }

    .gallery-item .cap span {
    font-size: 10px;
    line-height: 1.3;
    }

    .gallery-item .cap span strong {
    font-size: 11px;
    }

    .gallery-nav button {
    width: 32px;
    height: 32px;
    font-size: 12px;
    }

    .gallery-track {
    gap: 12px;
    padding-bottom: 6px;
    }
    }

    @media (max-width: 380px) {
    .gallery-item {
    flex: 0 0 140px;
    aspect-ratio: 3/4;
    }
    }

    /* --- Testimoni Mobile --- */
    @media (max-width: 480px) {
    .testimoni {
    padding: 32px 0;
    }

    .quote-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    .quote-card {
    padding: 20px;
    border-radius: 8px;
    }

    .quote-mark {
    font-size: 28px;
    margin-bottom: 6px;
    }

    .quote-card p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
    }

    .quote-avatar {
    width: 36px;
    height: 36px;
    }

    .quote-who strong {
    font-size: 12.5px;
    }

    .quote-who span {
    font-size: 11px;
    }

    .section-foot {
    margin-top: 16px;
    }

    .link-more {
    font-size: 12px;
    }
    }

    /* --- CTA Mobile --- */
    @media (max-width: 480px) {
    .cta-banner .wrap {
    padding: 40px 20px;
    }

    .cta-banner h2 {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 16px;
    }

    .cta-banner .btn {
    width: 100%;
    justify-content: center;
    }
    }

    /* --- Footer Mobile --- */
    @media (max-width: 480px) {
    .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 24px;
    }

    .footer-col h5 {
    font-size: 14px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hotline-item {
    margin-bottom: 12px;
    }

    .hotline-item .ic {
    width: 30px;
    height: 30px;
    font-size: 12px;
    }

    .hotline-item strong {
    font-size: 12.5px;
    }

    .hotline-item span {
    font-size: 11px;
    }

    .footer-col ul li {
    font-size: 12.5px;
    margin-bottom: 10px;
    }

    .contact-block p {
    font-size: 12.5px;
    line-height: 1.6;
    }

    /* Map iframe mobile fix */
    .mapouter,
    .gmap_canvas,
    .gmap_iframe {
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    aspect-ratio: 16/9;
    }

    .gmap_iframe {
    height: 100% !important;
    min-height: 150px;
    }

    .footer-bottom {
    font-size: 11px;
    padding: 16px 0;
    line-height: 1.5;
    }
    }

    @media (max-width: 380px) {
    .footer-grid {
    gap: 20px;
    padding: 24px 0 16px;
    }

    .hotline-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    }

    .hotline-item .ic {
    width: 26px;
    height: 26px;
    font-size: 10px;
    }
    }

    /* --- Section padding mobile --- */
    @media (max-width: 480px) {
    section {
    padding: 32px 0;
    }

    .wrap {
    padding: 0 16px;
    }
    }

    /* --- Brand logo mobile --- */
    
@media (max-width: 768px) {

    .brand {
        gap: 8px;
    }

    .brand .mark {
        height: 48px;
        gap: 5px;
        padding: 0 8px;
    }

    .brand .mark img:first-child {
        width: 38px;
    }

    .brand .mark img:last-child {
        width: 58px;
        padding-right: 5px;
    }

    .brand-text strong {
        font-size: 19px;
    }

    .brand-text span {
        font-size: 9.5px;
    }
}

@media (max-width: 480px) {

    .brand {
        gap: 7px;
        max-width: 100%;
    }

    .brand .mark {
        height: 40px;
        gap: 4px;
        padding: 0 6px;
    }

    .brand .mark img:first-child {
        width: 30px;
    }

    .brand .mark img:last-child {
        width: 45px;
        padding-right: 3px;
    }

    .brand-text strong {
        font-size: 16px;
    }

    .brand-text span {
        font-size: 8px;
    }
}


/* =========================
   HP KECIL
   ========================= */

@media (max-width: 380px) {

    .brand {
        gap: 5px;
    }

    .brand .mark {
        height: 36px;
        gap: 3px;
        padding: 0 5px;
    }

    .brand .mark img:first-child {
        width: 27px;
    }

    .brand .mark img:last-child {
        width: 40px;
        padding-right: 2px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text span {
        display: none !important;
    }
}

    @media (max-width: 380px) {
    .brand-text span {
    display: none !important;
    }

    .brand .mark {
    width: 34px;
    height: 34px;
    }

    .brand .mark img {
    width: 28px;
    }

    .brand-text strong {
    font-size: 15px;
    }
    }

    /* --- Nav mobile improvements --- */
    @media (max-width: 760px) {
    header.main {
    height: 50px;
    min-height: 5vh;
    }

    .nav-row {
    padding: 8px 0;
    flex-wrap: nowrap;
    }

    .brand {
    gap: 8px;
    }

    nav.primary {
    padding: 80px 20px 24px;
    width: 85%;
    max-width: 300px;
    top: 0;
    }

    nav.primary>a,
    .nav-dropdown>a {
    padding: 10px 0;
    font-size: 14px;
    }

    .nav-dropdown .dropdown-menu {
    padding-left: 16px;
    }

    .nav-dropdown .dropdown-menu a {
    padding: 8px 0;
    font-size: 13px;
    }

    .nav-dropdown .dropdown-menu .sub-dropdown .sub-menu a {
    padding: 6px 0;
    font-size: 12.5px;
    }

    .menu-toggle {
    font-size: 20px;
    padding: 6px 8px;
    }
    }

    /* --- Additional fixes for very small screens --- */
    @media (max-width: 320px) {
    .wrap {
    padding: 0 10px;
    }

    .heading-hero {
    font-size: 18pt !important;
    }

    .hero p.lead {
    font-size: 12px;
    }

    .brand-text strong {
    font-size: 14px;
    }

    .brand .mark {
    width: 30px;
    height: 30px;
    }

    .brand .mark img {
    width: 24px;
    }

    .utility-social a:not(:first-child) {
    display: none;
    }

    .utility-lang {
    padding-left: 6px;
    font-size: 10px;
    }

    .doc-thumb {
    height: 100px !important;
    }

    .gallery-item {
    flex: 0 0 120px;
    }
    }

    /* --- Fix for landscape mobile --- */
    @media (max-height: 500px) and (orientation: landscape) {
    .hero {
    min-height: 100vh;
    }

    .hero .wrap {
    padding: 16px 20px;
    }

    .heading-hero {
    font-size: 20pt !important;
    }

    .hero p.lead {
    font-size: 12px;
    margin-bottom: 12px;
    }

    .hero-actions {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 12px;
    }

    .hero-actions .btn {
    padding: 8px 14px;
    font-size: 12px;
    width: auto;
    }

    .hero-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
    }

    .hero-links a {
    font-size: 11px;
    }
    }

    /* --- Fix for tablet small --- */
    @media (min-width: 481px) and (max-width: 768px) {
    .hero .wrap {
    padding: 40px 24px;
    }

    .heading-hero {
    font-size: 30pt !important;
    }

    .hero p.lead {
    font-size: 14px;
    }

    .doc-row {
    grid-template-columns: 1fr 1fr;
    }

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

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

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

    .mapouter,
    .gmap_canvas,
    .gmap_iframe {
    width: 100% !important;
    max-width: 100%;
    }

    .gmap_iframe {
    height: 180px !important;
    }
    }

    /* --- Better touch targets --- */
    @media (max-width: 768px) {
    .btn,
    .doc-btn,
    .doc-footer,
    .link-more,
    .gallery-nav button,
    .menu-toggle,
    .utility-search,
    .utility-social a,
    .nav-dropdown>a,
    nav.primary>a {
    min-height: 44px;
    min-width: 44px;
    }

    .doc-btn,
    .doc-footer,
    .link-more {
    min-height: 36px;
    }

    .gallery-nav button {
    min-height: 38px;
    min-width: 38px;
    }
    }

    /* --- Smooth loading for mobile --- */
    @media (max-width: 480px) {
    .hero-video {
    object-fit: cover;
    }

    img {
    height: auto;
    }

    .accred-logo img {
    max-width: 100%;
    height: auto;
    }
    }

    .map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 6px;
    overflow: hidden;
    background: var(--main-color-deep);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 480px) {
    .map-wrapper {
        aspect-ratio: 16/10;
    }
}


.utility-lang {
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255,255,255,.3);
    padding-left: 14px;
}
.utility-lang .lang-btn {
    font-size: 12px;
    opacity: .65;
    padding: 4px 6px;
    border-radius: 4px;
    transition: all .15s;
}
.utility-lang .lang-btn:hover {
    opacity: 1;
}
.utility-lang .lang-btn.active {
    opacity: 1;
    font-weight: 700;
    color: var(--secondary-color);
}
.utility-lang .lang-sep {
    opacity: .4;
    font-size: 11px;
}


@media (max-width: 480px) {
    .asw-container {
        display: none;
    }
}

  /* ============================================
            SIDEBAR MOBILE STYLES
            ============================================ */

        /* Overlay */
        .sidebar-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Sidebar */
        .sidebar-mobile {
            position: fixed;
            top: 0;
            right: 0;
            /* Ubah dari left: 0 */
            bottom: 0;
            width: 85%;
            max-width: 320px;
            background: #ffffff;
            z-index: 999;
            transform: translateX(100%);
            /* Ubah dari -100% menjadi 100% */
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -2px 0 30px rgba(0, 0, 0, 0.15);
            /* Ubah arah shadow */
            display: flex;
            flex-direction: column;
        }

        .sidebar-mobile.open {
            transform: translateX(0);
        }

        /* Sidebar Header */
        .sidebar-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 20px 16px;
            border-bottom: 1px solid #e8e8e8;
            background: #124d34;
            flex-shrink: 0;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .sidebar-header h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .sidebar-header h3 i {
            font-size: 16px;
            color: #2fb958;
        }

        .sidebar-close {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #ffffff;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease;
        }

        .sidebar-close:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        /* Sidebar Navigation */
        .sidebar-nav {
            flex: 1;
            padding: 8px 0 24px;
            overflow-y: auto;
        }

        .sidebar-nav>a {
            display: block;
            padding: 12px 20px;
            font-size: 14.5px;
            font-weight: 500;
            color: #1C2430;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .sidebar-nav>a:hover {
            background: #f7f4ee;
            color: #124d34;
        }

        .sidebar-nav>a.active {
            color: #124d34;
            font-weight: 600;
            background: #f0f5f2;
        }

        /* Sidebar Dropdown */
        .sidebar-dropdown {
            border-bottom: 1px solid #f0f0f0;
        }

        .sidebar-dropdown>a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 20px;
            font-size: 14.5px;
            font-weight: 500;
            color: #1C2430;
            cursor: pointer;
            transition: background 0.15s ease;
        }

        .sidebar-dropdown>a:hover {
            background: #f7f4ee;
        }

        .sidebar-dropdown>a i {
            font-size: 11px;
            transition: transform 0.25s ease;
            color: #999;
        }

        .sidebar-dropdown.open>a i {
            transform: rotate(180deg);
        }

        .sidebar-dropdown-menu {
            display: none;
            background: #fafaf8;
            padding: 4px 0;
        }

        .sidebar-dropdown.open .sidebar-dropdown-menu {
            display: block;
        }

        .sidebar-dropdown-menu>a {
            display: block;
            padding: 10px 20px 10px 36px;
            font-size: 13.5px;
            color: #5B6577;
            border-bottom: 1px solid #f0f0f0;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .sidebar-dropdown-menu>a:hover {
            background: #f0f5f2;
            color: #124d34;
        }

        /* Sidebar Sub Dropdown */
        .sidebar-sub-dropdown {
            border-bottom: 1px solid #f0f0f0;
        }

        .sidebar-sub-dropdown:last-child {
            border-bottom: none;
        }

        .sidebar-sub-dropdown>a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px 10px 36px;
            font-size: 13.5px;
            color: #5B6577;
            cursor: pointer;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .sidebar-sub-dropdown>a:hover {
            background: #f0f5f2;
            color: #124d34;
        }

        .sidebar-sub-dropdown>a i {
            font-size: 10px;
            transition: transform 0.25s ease;
            color: #bbb;
        }

        .sidebar-sub-dropdown.open>a i {
            transform: rotate(90deg);
        }

        .sidebar-sub-dropdown.open>a {
            color: #124d34;
            font-weight: 500;
        }

        .sidebar-sub-menu {
            display: none;
            background: #f5f5f2;
            padding: 4px 0;
        }

        .sidebar-sub-dropdown.open .sidebar-sub-menu {
            display: block;
        }

        .sidebar-sub-menu a {
            display: block;
            padding: 8px 20px 8px 52px;
            font-size: 12.5px;
            color: #6B7A8F;
            border-bottom: 1px solid #ededed;
            transition: background 0.15s ease, color 0.15s ease;
        }

        .sidebar-sub-menu a:hover {
            background: #eaf0ec;
            color: #124d34;
        }

        .sidebar-sub-menu a:last-child {
            border-bottom: none;
        }

        /* Toggle untuk menu di desktop */
        .menu-toggle {
            display: none;
        }

        @media (max-width: 760px) {
            .menu-toggle {
                display: block;
                font-size: 22px;
                color: #124d34;
                padding: 8px;
                background: transparent;
                border: none;
                cursor: pointer;
            }

            /* Sembunyikan nav desktop */
            .primary {
                display: none !important;
            }
        }

        @media (min-width: 761px) {

            .sidebar-overlay,
            .sidebar-mobile {
                display: none !important;
            }
        }

        /* Scrollbar styling */
        .sidebar-mobile::-webkit-scrollbar {
            width: 4px;
        }

        .sidebar-mobile::-webkit-scrollbar-track {
            background: #f0f0f0;
        }

        .sidebar-mobile::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 4px;
        }

        .sidebar-mobile::-webkit-scrollbar-thumb:hover {
            background: #aaa;
        }