/* ================= GLOBAL ================= */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  padding-top: 100px;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  padding: 18px 0;
  transition: 0.3s;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* TEXT */
.nav-link {
  color: #222 !important;
  font-weight: 500;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #00c3ff !important;
}

/* BRAND */
.brand-text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  background: url('../img/banner.png') center center no-repeat;
  background-size: cover;
}

.hero-overlay {
  background: rgba(0,0,0,0.5);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
}

/* ================= CARD ================= */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: #ccc;
  padding: 15px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 14px;
}

/* ================= FIX FOOTER ================= */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ================= WHATSAPP ================= */
.wa-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: wa-bounce 2s infinite;
}

@keyframes wa-bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ================= KATEGORI ================= */
.kategori-card {
  border-radius: 12px;
  transition: 0.3s;
}

.kategori-card:hover {
  transform: translateY(-5px);
}

.kategori-img {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kategori-img img {
  max-height: 70px;
  object-fit: contain;
}

/* ================= MOBILE FIX ================= */
@media (max-width: 991px) {

  body {
    padding-top: 80px;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-link {
    padding: 10px 0;
  }

}

/* HERO HP */
@media (max-width: 768px) {

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    min-height: auto;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

}



/* ================= CLIENT LOGO FIX ================= */
.client-logo {
  width: 100%;
  height: 90px; /* tinggi disamakan */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.client-logo img {
  max-height: 65px; /* ukuran seragam */
  max-width: 100%;
  object-fit: contain;
  transition: 0.3s;
}

/* HOVER HALUS TANPA UBAH WARNA */
.client-logo img:hover {
  transform: scale(1.08);
}