body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0b1220, #0f1b33, #0b1220);
    color: white;
}


/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 18px 8%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
}

.logo {
    color: #1ea7ff;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu a {
    color: #dbe4f0;
    text-decoration: none;
}

.menu a:hover {
    color: #1ea7ff;
}

.btn-nav {
    background: #1ea7ff;
    padding: 8px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}


/* HEADER */

.paket-header {
    text-align: center;
    padding: 100px 8% 40px;
}

.paket-header h1 {
    font-size: 45px;
}

.paket-header p {
    color: #d8e2f0;
}


/* KATEGORI */

.kategori {
    padding: 40px 8%;
}

.kategori h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(30, 167, 255, .2);
}


/* GRID */

.paket-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}


/* CARD */

.paket-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    backdrop-filter: blur(12px);
}

.paket-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(30, 167, 255, .3);
    border: 1px solid rgba(30, 167, 255, .3);
}


/* ICON */

.paket-card i {
    font-size: 45px;
    color: #1ea7ff;
    margin-bottom: 10px;
}


/* PRICE */

.paket-card span {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    color: #1ea7ff;
    font-weight: bold;
}


/* HIGHLIGHT (JUKEN) */

.highlight {
    border: 1px solid rgba(30, 167, 255, .5);
    box-shadow: 0 0 25px rgba(30, 167, 255, .25);
}


/* FOOTER */

footer {
    text-align: center;
    padding: 40px 8%;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}