:root{
--primary:#FF0000;
--dark:#0f172a;
--light:#f1f5f9;
--white:#fff;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
font-family:'Plus Jakarta Sans',sans-serif;
background:var(--light);
color:var(--dark);
}

/* CONTAINER */
.container{
max-width:1200px;
margin:auto;
padding:0 40px;
}

/* NAVBAR */
.navbar{
position:fixed;
width:100%;
top:0;
background:rgba(255,255,255,0.9);
backdrop-filter:blur(10px);
z-index:999;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
height:80px;
}

.logo{display:flex;gap:10px;text-decoration:none}
.logo img{height:40px}

.brand{font-weight:800;color:var(--primary)}
.sub-brand{font-size:12px}

/* MENU */
.nav-menu{
display:flex;
gap:25px;
list-style:none;
}

.nav-menu a{
text-decoration:none;
font-weight:600;
color:var(--dark);
}

.btn-check{
background:var(--primary);
color:white;
padding:8px 16px;
border-radius:20px;
}

/* HAMBURGER */
#menu-toggle{display:none}

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
height:3px;
width:25px;
background:black;
margin:4px 0;
}

/* HERO */
.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
padding-top:80px;

/* TAMBAHAN PENTING */
padding-bottom:120px; /* kasih ruang ke stats */
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.7), transparent);
z-index:2;
}

.hero-content{
position:relative;
z-index:3;
color:white;
max-width:700px;
}

.hero h1{
font-size:clamp(2.5rem, 4vw, 3.5rem);
margin-bottom:15px;
}

.hero h1 span{color:#FF0000}

/* BUTTON */
.hero-btns{
display:flex;
gap:10px;
margin-top:20px;
}

.btn-primary{
background:#FF0000;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
color:black;
font-weight:700;
}

.btn-secondary{
border:1px solid white;
padding:12px 25px;
border-radius:8px;
text-decoration:none;
color:white;
}

/* ================= */
/* FIX UTAMA DI SINI */
/* ================= */
.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;

/* HAPUS margin negatif */
margin-top:40px;

/* pastikan di atas */
position:relative;
z-index:10;
}

.stat-card{
background:white;
padding:25px;
text-align:center;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* SERVICES */
.services{
padding:100px 0;
text-align:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:12px;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.service-card i{
font-size:30px;
color:var(--primary);
margin-bottom:15px;
}

/* FOOTER */
footer{
background:var(--dark);
color:white;
padding:50px 0;
text-align:center;
}

/* LOGO FOOTER */
.footer-logo .logo-group{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.footer-logo img{
    height:40px; /* ukuran kecil seperti logo */
    width:auto;
}

.footer-content{
display:grid;
grid-template-columns:2fr 1fr;
gap:20px;
text-align:left;
}

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

.container{padding:0 20px}

.hamburger{display:flex}

.nav-menu{
position:absolute;
top:80px;
left:-100%;
flex-direction:column;
background:white;
width:100%;
padding:20px;
transition:0.3s;
}

#menu-toggle:checked ~ .nav-menu{
left:0;
}

.stats{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.hero{
height:auto;
padding:120px 0 60px;
}

}

/* ===================== */
/* HALAMAN PROFIL */
/* ===================== */

.profil-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
border-radius:20px;
overflow:hidden;
background:#f1f5f9;
}

/* KIRI */
.profil-left{
padding:60px 40px;
}

.profil-left h1{
font-size:2.5rem;
margin-bottom:20px;
}

.profil-left p{
color:#555;
line-height:1.7;
}

/* KANAN */
.profil-right{
background:var(--primary);
color:white;
padding:60px 40px;

display:flex;
flex-direction:column;
justify-content:center;
gap:40px;

/* efek lengkung */
border-top-left-radius:150px;
border-bottom-left-radius:150px;
}

.profil-right h2{
font-size:2rem;
margin-bottom:10px;
}

.profil-right p{
font-size:0.95rem;
line-height:1.6;
}

/* GAMBAR */
.profil-image{
margin-top:30px;
}

.profil-image img{
width:100%;
border-radius:20px;
object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:768px){

.profil-wrapper{
grid-template-columns:1fr;
}

.profil-right{
border-radius:0;
}

.profil-left,
.profil-right{
padding:30px 20px;
}

.profil-left h1{
font-size:1.8rem;
}

}

/* ===================== */
/* HALAMAN PROFIL */
/* ===================== */

.profil-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
border-radius:20px;
overflow:hidden;
background:#f1f5f9;
}

/* KIRI */
.profil-left{
padding:60px 40px;
}

.profil-left h1{
font-size:2.5rem;
margin-bottom:20px;
}

.profil-left p{
color:#555;
line-height:1.7;
}

/* KANAN */
.profil-right{
background:var(--primary);
color:white;
padding:60px 40px;

display:flex;
flex-direction:column;
justify-content:center;
gap:40px;

/* efek lengkung */
border-top-left-radius:150px;
border-bottom-left-radius:150px;
}

.profil-right h2{
font-size:2rem;
margin-bottom:10px;
}

.profil-right p{
font-size:0.95rem;
line-height:1.6;
}

/* GAMBAR */
.profil-image{
margin-top:30px;
}

.profil-image img{
width:100%;
border-radius:20px;
object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:768px){

.profil-wrapper{
grid-template-columns:1fr;
}

.profil-right{
border-radius:0;
}

.profil-left,
.profil-right{
padding:30px 20px;
}

.profil-left h1{
font-size:1.8rem;
}

}

/* ===================== */
/* PDF PREVIEW */
/* ===================== */

.pdf-section{
padding:80px 0;
text-align:center;
}

.pdf-title{
font-size:2rem;
margin-bottom:30px;
color:var(--dark);
}

/* WRAPPER */
.pdf-wrapper{
width:100%;
height:600px;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* IFRAME */
.pdf-wrapper iframe{
width:100%;
height:100%;
border:none;
}

/* BUTTON */
.pdf-action{
margin-top:20px;
}

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

.pdf-wrapper{
height:400px;
}

}

/* ===================== */
/* PREVIEW GAMBAR PDF */
/* ===================== */

.preview-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.preview-grid img{
width:100%;
border-radius:12px;
cursor:pointer;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.preview-grid img:hover{
transform:scale(1.05);
}

/* ===================== */
/* HALAMAN BERITA */
/* ===================== */

/* HERO */
.berita-hero{
position:relative;
height:250px;
background:url('bgg.jpg') center/cover;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.berita-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.berita-header{
position:relative;
z-index:2;
}

.berita-header h1{
font-size:2.5rem;
margin-bottom:10px;
}

.berita-header p{
background:rgba(255,255,255,0.2);
display:inline-block;
padding:8px 20px;
border-radius:20px;
font-size:0.9rem;
}

/* GRID BERITA */
.berita-list{
margin-top:60px;
}

.berita-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */
.berita-card{
background:white;
border-radius:15px;
overflow:hidden;
transition:0.3s;
cursor:pointer;
}

.berita-card img{
width:100%;
height:200px;
object-fit:cover;
}

.berita-card h3{
padding:15px;
font-size:1.1rem;
}

.berita-card .meta{
padding:0 15px 15px;
color:#777;
font-size:0.85rem;
}

.berita-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

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

.berita-grid{
grid-template-columns:1fr;
}

.berita-header h1{
font-size:1.5rem;
}

}