* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #f5f9ff;
}

/* =========================
   NAVBAR
========================= */

nav {
  width: 100%;
  padding: 20px 8%;
  background: #ff0099;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.logo {
  color: white;
  font-size: 32px;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  opacity: 0.8;
}

/* =========================
   HERO
========================= */

.hero {
  width: 100%;
  min-height: 90vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 8%;
  gap: 50px;
  background: white;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 60px;
  color: #ff0099;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 20px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  background: #ff0099;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.3s;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 0, 153, 0.3);
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================
   PRODUK
========================= */

.produk {
  padding: 100px 8%;
}

.title {
  text-align: center;
  margin-bottom: 60px;
}

.title h2 {
  font-size: 50px;
  color: #ff0099;
  margin-bottom: 10px;
}

.title p {
  color: #666;
  font-size: 18px;
}

.produk-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  padding: 20px 20px 10px;
  font-size: 28px;
  color: #222;
}

.card p {
  padding: 0 20px;
  color: #ff0099;
  font-weight: 700;
  font-size: 22px;
}

.card a {
  display: block;
  margin: 25px 20px;
  text-align: center;
  background: #ff0099;
  color: white;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.card a:hover {
  background: #e60087;
}

/* =========================
   KEUNGGULAN
========================= */

.keunggulan {
  padding: 100px 8%;
  background: #ffffff;
}

.sub-title {
  text-align: center;
  color: #ff6600;
  font-size: 15px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.main-title {
  text-align: center;
  font-size: 60px;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 70px;
  font-weight: 700;
}

.keunggulan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.unggul-card {
  background: #f9fafb;
  padding: 45px 40px;
  border-radius: 30px;
  transition: 0.3s;
}

.unggul-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 75px;
  height: 75px;
  background: #ff0099;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  font-size: 35px;
  margin-bottom: 30px;
}

.unggul-card h3 {
  font-size: 38px;
  color: #111827;
  margin-bottom: 20px;
  font-weight: 700;
}

.unggul-card p {
  color: #4b5563;
  line-height: 1.9;
  font-size: 20px;
}

/* =========================
   TENTANG
========================= */

.tentang {
  padding: 100px 8%;
  background: #fff0f7;
}

.tentang-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.tentang h2 {
  font-size: 50px;
  color: #ff0099;
  margin-bottom: 25px;
}

.tentang p {
  margin-bottom: 20px;
  color: #555;
  line-height: 2;
  font-size: 18px;
}

/* =========================
   KONTAK
========================= */

.kontak {
  padding: 100px 8%;
  text-align: center;
  background: white;
}

.kontak h2 {
  font-size: 50px;
  color: #ff0099;
  margin-bottom: 25px;
}

.kontak p {
  margin: 15px 0;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #08122f;
  color: white;
  padding: 70px 8% 25px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Judul */
.footer-box h2 {
  font-size: 24px;
  margin-bottom: 18px;
  color: white;
  font-weight: 700;
}

.footer-box h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: white;
  font-weight: 600;
}

/* Isi */
.footer-box p {
  color: #b8c1d9;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 12px;
}

/* List */
.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #b8c1d9;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff0099;
  padding-left: 5px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
  font-size: 13px;
  margin-bottom: 6px;
}

.developer span {
  color: #ff0099;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 50px 8% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-box h2 {
    font-size: 22px;
  }

  .footer-box h3 {
    font-size: 18px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 20px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .title h2,
  .main-title,
  .tentang h2,
  .kontak h2 {
    font-size: 36px;
  }

  .unggul-card h3 {
    font-size: 28px;
  }

  .unggul-card p {
    font-size: 16px;
  }

  .footer-box h2 {
    font-size: 32px;
  }

  .footer-box h3 {
    font-size: 26px;
  }

  .footer-box p,
  .footer-box ul li a {
    font-size: 16px;
  }
}
