.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.logo{
    width: 200px;
}

.m-ka-20{
    margin-right: 25px;
}

.nav-link{
    font-size: 17px;
    color: rgb(29, 29, 29);
}

.btn-nav-kontak {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 40px;
    border: none;
    background: linear-gradient(90deg, #008FF0 0%, #0062A4 100%);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;

    gap: 8px;
    transition: 0.2s ease-in-out;
}

/* Efek hover seperti tombol premium */
.btn-nav-kontak:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}


.navbar-nav .nav-link.active{
    background: rgb(252, 252, 252); /* warna putih transparan */
    backdrop-filter: blur(10px);           /* efek blur kaca */
    -webkit-backdrop-filter: blur(10px);   /* buat Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);  /* bayangan lembut */
    border-radius: 15px;
}

.navbar-nav .nav-link:hover {
    background: rgb(255, 255, 255); /* warna putih transparan */
    backdrop-filter: blur(10px);           /* efek blur kaca */
    -webkit-backdrop-filter: blur(10px);   /* buat Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);  /* bayangan lembut */
    border-radius: 15px;
    transition: 0.3s;
}






/* ===================================
   TABLET VERSION (max-width: 991px)
=================================== */
@media (max-width: 991px) {

    body {
        height: auto; /* biar tidak kepanjangan di tablet */
        background-position: top center;
    }

   .con-filter{
    height: 1000px;
   }

    .logo {
        width: 150px;
    }

    .nav-link {
        font-size: 16px;
        text-align: center;
        margin-bottom: 5px;
    }

    .btn-nav-kontak {
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        padding: 14px 24px;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        border-radius: 10px;
    }

}

/* ===================================
   MOBILE VERSION (max-width: 767px)
=================================== */
@media (max-width: 767px) {

    body {
        height: auto;
        background-position: top center;
    }

    .logo {
        width: 150px;
    }

    .nav-link {
        font-size: 15px;
        padding: 10px 0;
    }

    /* Navbar dropdown full width */
    .navbar-nav {
        text-align: center;
    }

    .btn-nav-kontak {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 40px;
        margin-top: 10px;
    }

    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link:hover {
        border-radius: 8px;
    }

    .desktop-only {
        display: none; /* hide desktop label */
    }

    .mobile-only {
        display: flex; /* show mobile header */
        align-items: center;
        justify-content: space-between;
        width: 100%;
        cursor: pointer;
    }

    
}