*{
box-sizing:border-box;
font-family:"Segoe UI",sans-serif;
}

body{
margin:0;
background:#f5f6fa;
color:#333;
}

/* HEADER */

.header{
background:white;
padding:24px 40px;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 4px 20px rgba(0,0,0,0.06);
}

.brand{
display:flex;
align-items:center;
gap:16px;
}

.brand img{
width:60px;
}

.brand-text h1{
margin:0;
font-size:20px;
color:#4a4aff;
}

.brand-text p{
margin:4px 0 0;
font-size:13px;
color:#666;
}

.back-home{
text-decoration:none;
color:#6c6cff;
font-size:14px;
}

/* NAVBAR */

.navbar{
background:#4a4aff;
padding:14px 40px;
}

.nav-left{
display:flex;
gap:26px;
}

.nav-left a{
color:white;
text-decoration:none;
font-size:14px;
opacity:0.85;
}

.nav-left a:hover{
opacity:1;
}

.active{
font-weight:600;
border-bottom:2px solid white;
padding-bottom:4px;
}

/* CONTAINER */

.container{
max-width:1000px;
margin:40px auto;
padding:0 20px;
}

.section{
margin-bottom:50px;
}

.section h2{
color:#4a4aff;
margin-bottom:16px;
}

/* TABLE */

table{
width:100%;
border-collapse:collapse;
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 12px 30px rgba(0,0,0,0.05);
}

thead{
background:#6c6cff;
color:white;
}

th,td{
padding:14px 18px;
text-align:left;
font-size:14px;
}

tbody tr{
border-bottom:1px solid #eee;
cursor:pointer;
transition:0.2s;
}

tbody tr:hover{
background:#f5f7ff;
transform:scale(1.01);
}

/* POPUP */

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
align-items:center;
justify-content:center;
z-index:999;
}

.popup-content{
width:800px;
max-width:90%;
background:white;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
display:flex;
gap:20px;
padding:25px;
position:relative;
animation:popupFade 0.3s ease;
}

.popup-foto{
width:180px;
height:220px;
object-fit:cover;
border-radius:10px;
border:4px solid #f2f2f2;
}

.popup-info{
flex:1;
}

#popupNama{
margin:0;
font-size:22px;
}

.popup-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-top:10px;
}

.popup-item span{
font-size:12px;
color:#777;
}

.popup-item p{
margin:2px 0 0;
font-weight:600;
}

.popup-moto{
margin-top:15px;
padding:10px;
background:#f7f7f7;
border-radius:8px;
}

.popup-moto p{
font-style:italic;
}

.close{
position:absolute;
top:10px;
right:15px;
font-size:26px;
cursor:pointer;
color:#888;
}

.close:hover{
color:red;
}

/* ANIMATION */

@keyframes popupFade{

from{
transform:scale(0.9);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

/* FOOTER */

.footer{
background:#4a4aff;
color:white;
padding:50px 40px 20px;
margin-top:60px;
}

.footer-container{
max-width:1000px;
margin:auto;
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.footer-item{
flex:1;
min-width:240px;
}

.footer-item h3{
font-size:16px;
margin-bottom:14px;
}

.footer-item p{
font-size:14px;
line-height:1.6;
opacity:0.9;
}

/* link maps */

.footer-link{
display:inline-block;
margin-top:10px;
color:white;
text-decoration:none;
font-size:14px;
opacity:0.9;
}

.footer-link i{
margin-right:6px;
}

.footer-link:hover{
opacity:1;
}

/* social */

.footer-social{
display:flex;
flex-direction:column;
gap:10px;
}

.social-btn{
display:flex;
align-items:center;
gap:10px;
padding:10px 14px;
border-radius:8px;
text-decoration:none;
color:white;
font-size:14px;
transition:0.25s;
}

/* whatsapp */

.whatsapp{
background:#25D366;
}

.whatsapp:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* instagram */

.instagram{
background:#E4405F;
}

.instagram:hover{
transform:translateY(-2px);
box-shadow:0 5px 12px rgba(0,0,0,0.2);
}

/* footer bottom */

.footer-bottom{
text-align:center;
margin-top:35px;
padding-top:18px;
border-top:1px solid rgba(255,255,255,0.25);
font-size:13px;
opacity:0.8;
}