/* Reset dasar */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Inter, Arial, sans-serif;
    background:#f8f9fa;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo img {
    max-height: 42px;
}

/* MENU DESKTOP */
.menu a {
    margin-left: 20px;
    font-weight: 500;
    text-decoration: none;
    color: #222;
}
.menu a:hover {
    color: #007bff;
}

/* HAMBURGER */
.hamburger {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #eee;
}

.mobile-menu a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.mobile-menu.aktif { 
    display: flex;
}

/* BOX LAYANAN */
.box {
    border-radius: 10px;
    background: #fafafa;
}

/* HERO */
.hero {
    min-height: 80vh;
    background-image: url(assets/komp.jpg) !important;
    background-size: cover; /* Pastikan gambar menutupi seluruh area */
  background-repeat: no-repeat; /* Cegah gambar berulang jika terlalu kecil */
  background-position: center; /* Posisikan gambar di tengah */
  height: 100vh; /* Atur tinggi menjadi 100% dari tinggi viewport */

    padding: 60px 0;
}

/* PRICE */
.price {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

/* FAQ */
.faq h4 {
    margin-top: 20px;
    font-weight: bold;
}

/* WA BUTTON FLOATING */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    padding: 12px 16px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 99999;
}

.box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.price {
    font-size: 26px;
    font-weight: bold;
}

@media (max-width: 576px) {
    .box img {
        height: 140px;
    }
}

.card-title {
    font-weight: 600;
}

.card-text {
    font-size: 15px;
    line-height: 1.5;
}

