body{
margin:0;
font-family:Poppins;
background:#f8fafc;
}

/* NAVBAR */

.navbar{
position:sticky;
top:0;
background: linear-gradient(90deg,#020617,#1e3a8a,#0ea5e9);
padding:15px 8%;
z-index:1000;
backdrop-filter: blur(8px);
box-shadow:0 4px 20px rgba(0,0,0,0.2);
}

.nav-inner{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
}

/* LOGO */

.logo img{
height:40px;
width:auto;
display:block;
filter: drop-shadow(0 0 6px rgba(56,189,248,0.6));
}

/* MENU */

.nav-menu{
display:flex;
align-items:center;
gap:20px;
}

.nav-menu a{
color:white;
text-decoration:none;
font-weight:500;
}

.nav-menu a:hover{
opacity:0.8;
}

/* CART */

.cart-icon{
position:relative;
color:white;
font-size:22px;
cursor:pointer;
}

.cart-count{
position:absolute;
top:-8px;
right:-10px;
background:red;
color:white;
font-size:11px;
padding:2px 6px;
border-radius:50%;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.dropdown-menu{
position:absolute;
top:42px;
left:0;
background:white;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
display:none;
flex-direction:column;
min-width:240px;
padding:8px 0;
z-index:2000;
}

.dropdown-menu.show{
display:flex;
}

.dropdown-menu a{
color:#1e293b;
padding:12px 18px;
text-decoration:none;
font-size:14px;
display:block;
white-space:nowrap;
}

.dropdown-menu a:hover{
background:#f1f5f9;
}

/* HERO */

.hero{
padding:45px 8%;
background:linear-gradient(90deg,#0f172a,#1e293b);
color:white;
text-align:center;
}

/* VALUE */

.value{
padding:40px 8%;
background:white;
}

.value-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

/* SERVICES */

.services{
padding:40px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:rgba(255,255,255,0.9);
border-radius:16px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
transition:all .35s ease;
border:1px solid rgba(255,255,255,0.5);
backdrop-filter: blur(6px);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
transition:transform .4s ease;
}

.card:hover img{
transform:scale(1.05);
}

.card-content{
padding:20px;
}

.price{
color:#2563eb;
font-weight:700;
margin:10px 0;
font-size:16px;
}

button{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
border:none;
color:white;
padding:8px 16px;
border-radius:8px;
cursor:pointer;
margin-right:6px;
font-weight:500;
transition:all .25s ease;
}

button:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(37,99,235,0.35);
}

/* CART */

.cart{
position:fixed;
right:-350px;
top:0;
height:100%;
width:330px;
background:white;
box-shadow:-4px 0 20px rgba(0,0,0,0.15);
padding:20px;
transition:.3s;
overflow:auto;
z-index:1500;
}

.cart.open{
right:0;
}

.cart-item{
border-bottom:1px solid #eee;
padding:10px 0;
display:flex;
justify-content:space-between;
align-items:center;
}

.remove-btn{
background:#ef4444;
}

.checkout-btn{
background:#16a34a;
width:100%;
margin-top:10px;
}

.clear-btn{
background:#64748b;
width:100%;
margin-top:5px;
}

/* MODAL DETAIL */

.modal{
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
display:none;
justify-content:center;
align-items:center;
z-index:2000;
}

.modal-box{
background:white;
padding:25px;
border-radius:12px;
max-width:450px;
width:90%;
}

.modal pre{
white-space:pre-line;
}

/* TOAST */

.toast{
position:fixed;
bottom:30px;
right:30px;
background:#16a34a;
color:white;
padding:12px 18px;
border-radius:6px;
opacity:0;
transition:.4s;
}

.toast.show{
opacity:1;
}

/* FOOTER */

footer{
background:#020617;
color:white;
padding:30px 8%;
text-align:center;
font-size:14px;
}

/* TRUST STRIP */

.trust-strip{
background:white;
border-bottom:1px solid #e5e7eb;
padding:18px 8%;
}

.trust-wrap{
display:flex;
justify-content:center;
gap:50px;
max-width:1100px;
margin:auto;
flex-wrap:wrap;
}

.trust-item{
display:flex;
align-items:center;
gap:12px;
}

.trust-item span{
font-size:20px;
}

.trust-item h4{
margin:0;
font-size:14px;
font-weight:600;
color:#1e3a8a;
}

.trust-item p{
margin:0;
font-size:12px;
color:#64748b;
}

/* ABOUT */

.about{
padding:50px 8%;
background:#ffffff;
text-align:center;
border-top:1px solid #e5e7eb;
}

.about h2{
margin-bottom:15px;
font-size:24px;
color:#1e3a8a;
}

.about p{
max-width:800px;
margin:auto;
line-height:1.7;
color:#475569;
font-size:15px;
}

/* CONTACT */

.contact{
padding:70px 8%;
background:#f8fafc;
color:#1e293b;
border-top:1px solid #e5e7eb;
}

.contact h2{
text-align:center;
margin-bottom:40px;
}

.contact-wrapper{
display:flex;
gap:50px;
max-width:1100px;
margin:auto;
flex-wrap:wrap;
}

.contact-form{
flex:1;
}

.form-row{
display:flex;
gap:20px;
margin-bottom:20px;
flex-wrap:wrap;
}

.contact input,
.contact textarea{
flex:1;
padding:15px;
border-radius:12px;
border:1px solid #e5e7eb;
background:white;
color:#1e293b;
font-family:Poppins;
}

.contact textarea{
height:140px;
resize:none;
margin-bottom:20px;
}

.send-btn{
background:#facc15;
color:black;
padding:12px 22px;
border:none;
border-radius:14px;
cursor:pointer;
font-weight:600;
}

/* CONTACT INFO */

.contact-info{
flex:1;
background:white;
padding:25px;
border-radius:14px;
border:1px solid #e5e7eb;
}

.contact-info h3{
margin-bottom:15px;
}

.contact-info p{
margin:10px 0;
color:#475569;
}

.contact-info a{
color:#0284c7;
text-decoration:none;
}

.contact-info a:hover{
text-decoration:underline;
}

/* WA CHAT */

.wa-widget{
position:fixed;
bottom:25px;
right:25px;
z-index:1600;
font-family:Poppins;
}

.wa-box{
width:260px;
background:white;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
padding:18px;
margin-bottom:12px;
display:none;
animation:fadeIn .3s ease;
}

.wa-header{
font-weight:600;
margin-bottom:10px;
}

.wa-btn{
display:block;
margin-top:10px;
background:#22c55e;
color:white;
text-align:center;
padding:10px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}

.wa-toggle{
background:#22c55e;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
box-shadow:0 6px 20px rgba(0,0,0,0.3);
}

.wa-toggle img{
width:28px;
}

@keyframes fadeIn{
from{opacity:0;transform:translateY(10px);}
to{opacity:1;transform:translateY(0);}
}

/* ===== SERVICE CARD V2 ===== */

.service-card{
background:rgba(255,255,255,0.92);
border-radius:18px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
border:1px solid rgba(255,255,255,0.4);
backdrop-filter:blur(8px);
transition:all .35s ease;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 22px 55px rgba(0,0,0,0.15);
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
transition:transform .4s ease;
}

.service-card:hover img{
transform:scale(1.06);
}

.service-card-content{
padding:22px;
}

.service-card-content h3{
margin:0 0 10px;
font-size:18px;
}

.service-card-content p{
color:#475569;
}

.service-price{
color:#2563eb;
font-weight:700;
margin:12px 0;
font-size:16px;
}

.service-btn{
background:linear-gradient(135deg,#2563eb,#1d4ed8);
border:none;
color:white;
padding:8px 16px;
border-radius:8px;
cursor:pointer;
margin-right:6px;
font-weight:500;
transition:.25s;
}

.service-btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 18px rgba(37,99,235,0.35);
}

/* =====================================
   LEGAL PAGE (Privacy / Terms / Disclaimer)
===================================== */

body{
background:#f1f5f9;
}

/* Container utama */

.legal-page{
max-width:900px;
margin:90px auto;
padding:40px;
background:#ffffff;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
line-height:1.8;
font-size:16px;
}

/* Title */

.legal-page h1{
font-size:32px;
margin-bottom:25px;
}

/* Subtitle */

.legal-page h2{
margin-top:35px;
margin-bottom:12px;
font-size:20px;
color:#1e3a8a;
}

/* Paragraph */

.legal-page p{
color:#334155;
margin-bottom:10px;
}

/* List */

.legal-page ul{
padding-left:22px;
margin-top:10px;
}

.legal-page li{
margin-bottom:8px;
color:#334155;
}

/* Footer links */

.footer-links{
margin-top:15px;
}

.footer-links a{
color:#a78bfa;
margin:0 8px;
text-decoration:none;
font-size:14px;
}

.footer-links a:hover{
text-decoration:underline;
}

/* Responsive */

@media (max-width:768px){

.legal-page{
margin:60px 15px;
padding:30px;
}

.legal-page h1{
font-size:26px;
}

}

/* FIX FOOTER LEGAL PAGE */

.services{
min-height:calc(100vh - 160px);
}
