:root{
    --primary:#2f6fed;
    --text:#ddd;
    --bg-dark:#121212;
    --border:#333;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

/* BACKGROUND */
body{
    background: linear-gradient(135deg, #000 0%, #3a3a3a 50%, #000 100%);
    color:var(--text);
    line-height:1.6;
}

/* HEADER */
header{
    background: linear-gradient(
        to bottom,
        #4a4747 0%,
        #424040 50%,
        #353333 100%
    );
    color:white;
    text-align:center;
    padding:35px 15px;
    border-bottom:1px solid #333;
}

header img{
    width:140px;
    height:140px;
    object-fit:contain;
    border-radius:18px;   /* sudut membulat */
}


header h1{
    font-size:26px;
    margin-bottom:5px;
}

header p{
    opacity:0.8;
}

/* NAVBAR */
nav{
    background:var(--bg-dark);
    padding:12px;
    text-align:center;
    border-bottom:1px solid var(--border);
}

nav a{
    margin:0 12px;
    text-decoration:none;
    color:#ccc;
    font-weight:600;
}

nav a:hover{
    color:#fff;
}

/* DROPDOWN */
.dropdown{
    display:inline-block;
    position:relative;
}

.dropdown-btn{
    cursor:pointer;
}

.dropdown-content{
    display:none;
    position:absolute;
    background:#111;
    min-width:180px;
    border:1px solid var(--border);
    border-radius:6px;
    box-shadow:0 8px 18px rgba(0,0,0,0.4);
    z-index:10;
}

.dropdown-content a{
    display:block;
    padding:10px 14px;
    color:#ddd;
}

.dropdown-content a:hover{
    background:#1a1a1a;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* CONTAINER */
.container{
    max-width:900px;
    margin:30px auto;
    padding:0 15px;
}

/* CARD */
.card{
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(8px);
    padding:22px 28px;
    border-radius:12px;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}



.card h2{
    margin-bottom:12px;
    color:#fff;
}

/* PRICE BOX */
.price-box{
    border:1px solid var(--border);
    padding:16px;
    border-radius:8px;
    margin-bottom:12px;
    transition:0.2s;
    background:#111;
}

.price-box:hover{
    border-color:#666;
    background:#181818;
}

.price-box strong{
    font-size:17px;
}

.price-box p{
    font-weight:bold;
    margin:6px 0;
    color:#fff;
}

/* PAYMENT */
.payment-box{
    border:1px solid var(--border);
    border-radius:8px;
    padding:12px;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:12px;
    background:#111;
}

.payment-box img{
    width:38px;
}

/* CONTACT */
#kontak a{
    color:#9ec5ff;
    text-decoration:none;
    font-weight:600;
}

#kontak a:hover{
    text-decoration:underline;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#0f0f0f;
    border-top:1px solid var(--border);
    margin-top:40px;
    font-size:14px;
    color:#aaa;
}

/* MODAL */
.modal{
    display:none;
    position:fixed;
    z-index:100;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.65);
}

.modal-content{
    background:#111;
    margin:5% auto;
    padding:30px;
    width:90%;
    max-width:650px;
    border-radius:10px;
    position:relative;
    max-height:75vh;
    overflow-y:auto;
    border:1px solid var(--border);
    animation:fadeIn 0.25s ease;
}

.modal-content h1,
.modal-content h2,
.modal-content h3{
    color:#fff;
    margin-bottom:10px;
}

.modal-content p{
    color:#ccc;
    margin-bottom:10px;
}

.close{
    position:absolute;
    right:15px;
    top:10px;
    font-size:20px;
    cursor:pointer;
    color:#ccc;
}

/* ANIMATION */
@keyframes fadeIn{
    from{opacity:0; transform:translateY(-20px);}
    to{opacity:1; transform:translateY(0);}
}

/* MOBILE */
@media(max-width:600px){

    header img{
        width:80px;
        height:80px;
    }

    header h1{
        font-size:20px;
    }

    nav a{
        display:inline-block;
        margin:6px;
    }

    .container{
        margin:20px auto;
    }

    .card{
        padding:16px;
    }
}

/* TEXT DALAM CARD */
.card p{
    margin-bottom:10px;
    line-height:1.7;
    color:#ccc;
}

.card ul{
    margin:15px 0 10px 20px;
}

.card li{
    margin-bottom:6px;
}

.card h2{
    margin-bottom:14px;
}

.card strong{
    display:block;
    margin-bottom:6px;
}
