:root {
    --hover-green: #1e7d60;
}

/* ============ Base ============ */
body {
    max-width: 1920px;
    width: 100%;
    padding-top: 100px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.navbar-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.navbar-wrapper-custom {
    width: 100%;
    /* padding: 10px; */
    max-width: 1920px;
    background: #fff;
}
.navbar-wrapper-custom nav {
    position: sticky;
    top: 0;
    z-index: 1000; /* supaya di atas konten lain */
}
.navbar-wrapper-custom .container-custom {
    width: 1434px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ Brand ============ */
.navbar-wrapper-custom .navbar-brand {
    font-size: 36px !important;
    font-weight: 700;
    color: #292929;
    line-height: 1 !important;
}

/* ============ Links ============ */
.navbar-wrapper-custom .navbar-nav .nav-link {
    font-size: 21px !important;
    font-weight: 500;
    color: #27272a !important;
    padding: 10px 16px;
    margin-right: 12px;
    transition: color 0.2s ease;
    text-decoration: none !important;
}
.navbar-wrapper-custom .navbar-nav .nav-link:hover,
.navbar-wrapper-custom .navbar-nav .nav-link:focus,
.navbar-wrapper-custom .navbar-nav .nav-link.active {
    color: var(--hover-green) !important;
    text-decoration: none !important;
}

/* Contact Button  */
.btn-contact {
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    width: 143px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4fb893;
    color: #fff;
    font-weight: 500;
    font-size: 21px;
}
.btn-contact:hover {
    background: #4fb893;
    color: #fff;
}
.navbar-wrapper-custom .btn.btn-outline-secondary.btn-contact {
    background: transparent !important;
    color: #27272a !important;
    border: 1px solid #262626 !important;
    font-size: 21px !important;
    line-height: 1 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.navbar-wrapper-custom .btn.btn-outline-secondary.btn-contact:hover,
.navbar-wrapper-custom .btn.btn-outline-secondary.btn-contact:focus {
    color: var(--hover-green) !important;
    border-color: var(--hover-green) !important;
}

/*  Language Dropdown  */
.dropdown-custom {
    position: relative;
}
.dropdown-custom > a {
    padding: 0;
    border: none;
    background: transparent;
    text-decoration: none !important;
}
.dropdown-custom > a:hover {
    color: var(--hover-green) !important;
}
.dropdown-custom.show > a .lang-caret {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100px;
    display: none;
    flex-direction: column;
    padding: 6px 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 999;
}
.lang-dropdown li {
    list-style: none;
}
.lang-dropdown a {
    display: block;
    width: 100%;
    padding: 8px 14px;
    font-size: 21px;
    font-weight: 500;
    color: #27272a;
    text-decoration: none !important;
}
.lang-dropdown a:hover {
    background: #f5f5f5;
    color: var(--hover-green) !important;
}
.dropdown-custom.show .lang-dropdown {
    display: flex;
}

/*  Burger Overlay  */
.burger-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: slideDown 0.3s ease-in-out;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.burger-overlay.show {
    display: flex;
}

.burger-overlay .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.burger-overlay .brand-text {
    font-size: 30px !important;
    line-height: 1 !important;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.burger-overlay a {
    font-size: 21px !important;
    font-weight: 600;
    color: #27272a !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.burger-overlay a:hover,
.burger-overlay a:focus,
.burger-overlay a:active {
    color: var(--hover-green) !important;
    text-decoration: none !important;
}

/*  Animation  */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*  Responsive  */
@media (max-width: 991.98px) {
    .burger-btn {
        display: inline-flex;
    }
    .navbar-wrapper-custom .navbar-brand {
        font-size: 30px !important;
    }
    .navbar-wrapper-custom nav {
        height: 70px;
    }
    .navbar-wrapper-custom .container-custom {
        height: 100%;
    }
}
@media (min-width: 992px) {
    .burger-btn {
        display: none;
    }
    #why.navbar-wrapper-custom nav {
        height: 80px;
    }
    .burger-overlay {
        display: none !important;
    }
}

/*  Touch Tweak */
.burger-overlay a,
.navbar-wrapper-custom .navbar-nav .nav-link,
.btn-contact {
    -webkit-tap-highlight-color: transparent;
}
