/* Reset */

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

body{
    background:#f5f7fa;
}

/* Navbar */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 8%;

    background:#0b3d91;

    position:sticky;

    top:0;

    z-index:1000;

}

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:80px;

    margin-right:15px;

}

.logo h2{

    color:white;

    font-size:24px;

}

.menu{

    display:flex;

    list-style:none;

}

.menu li{

    margin-left:30px;

}

.menu a{

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.menu a:hover{

    color:#ffd400;

}

.btn-wa{

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:12px 20px;

    border-radius:30px;

    font-weight:bold;

    transition:.3s;

}

.btn-wa:hover{

    background:#1ea952;

}/* HERO */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(11,61,145,.65),
    rgba(11,61,145,.65)),
    url("../images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.hero h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    margin-bottom:35px;

}

.hero-button a{

    margin:10px;

}

.btn-produk{

    background:#ffd400;

    color:#0b3d91;

    padding:15px 30px;

    text-decoration:none;

    border-radius:30px;

    font-weight:bold;

}.hero h3{
    font-size:28px;
    color:#ffd400;
    margin-bottom:20px;
    font-weight:600;
}.produk-singkat{
    max-width: 900px;
    margin: 20px auto 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 500;
}/* =========================
   PRODUK
========================= */

.produk{
    padding:80px 8%;
    background:#ffffff;
}

.judul-produk{
    text-align:center;
    margin-bottom:50px;
}

.judul-produk h2{
    font-size:42px;
    color:#0b3d91;
    margin-bottom:15px;
}

.judul-produk p{
    color:#666;
    font-size:18px;
    max-width:800px;
    margin:auto;
    line-height:1.7;
}

.produk-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
}

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

.card h3{
    padding:20px;
    text-align:center;
    color:#0b3d91;
}html{
    scroll-behavior: smooth;
}/* =========================
   TENTANG
========================= */

.Tentang{
    padding:80px 8%;
    background:#f7f7f7;
}

.Tentang-container{
    max-width:1000px;
    margin:auto;
}

.Tentang h2{
    text-align:center;
    color:#0b3d91;
    font-size:42px;
    margin-bottom:30px;
}

.Tentang p{
    font-size:18px;
    color:#555;
    line-height:1.8;
    text-align:justify;
    margin-bottom:20px;
}

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

.keunggulan div{
    background:#ffffff;
    padding:20px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    font-weight:bold;
    color:#0b3d91;
    text-align:center;
    transition:.3s;
}

.keunggulan div:hover{
    transform:translateY(-5px);
}/* =========================
   LOKASI
========================= */

.lokasi{
    padding:80px 8%;
    background:#f8f9fb;
}

.lokasi h2{
    text-align:center;
    font-size:42px;
    color:#0b3d91;
    margin-bottom:50px;
}

.lokasi-wrapper{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:40px;
    align-items:center;
}

.lokasi-info h3{
    color:#0b3d91;
    font-size:30px;
    margin-bottom:20px;
}

.lokasi-info p{
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.btn-maps,
.btn-wa{
    display:inline-block;
    padding:14px 28px;
    margin-right:15px;
    margin-top:15px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.btn-maps{
    background:#0b3d91;
    color:white;
}

.btn-maps:hover{
    background:#082c69;
}

.btn-wa{
    background:#25D366;
    color:white;
}

.btn-wa:hover{
    background:#1ca851;
}

.maps iframe{
    width:100%;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

@media (max-width:768px){

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

    .btn-maps,
    .btn-wa{
        display:block;
        text-align:center;
        margin-right:0;
    }

}