/* =========================
   GOOGLE FONT
========================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #071b12;
  color: white;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* =========================
   SCROLLBAR
========================= */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: #20d67b;
  border-radius: 20px;
}

/* =========================
   HEADER
========================= */
header {
  width: 100%;
  padding: 18px 7%;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(4, 20, 12, 0.85);
  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* =========================
   LOGO
========================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.logo-text h2 {
  font-size: 18px;
  font-weight: 700;
}

.logo-text p {
  font-size: 12px;
  color: #b7d7c6;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar a {
  color: white;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar a:hover {
  color: #55ffab;
}

/* HOVER LINE */
.navbar a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 2px;

  background: #55ffab;

  transition: 0.3s;
}

.navbar a:hover::after {
  width: 100%;
}

/* =========================
   MENU TOGGLE
========================= */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  color: white;
  font-size: 34px;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 150px 7% 100px;

  background:
    linear-gradient(rgba(2, 20, 12, 0.75), rgba(2, 20, 12, 0.92)),
    url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?q=80&w=1600&auto=format&fit=crop")
      center/cover;
}

.hero-content {
  text-align: center;
  max-width: 900px;

  animation: fadeUp 1s ease;
}

.hero-content h4 {
  color: #63ffb1;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
  color: #55ffab;
  text-shadow: 0 0 25px rgba(85, 255, 171, 0.5);
}

.hero-content p {
  color: #d3e8db;
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 40px;
}

/* =========================
   BUTTONS
========================= */
.hero-buttons,
.produk-buttons,
.kontak-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 600;

  transition: 0.35s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: linear-gradient(135deg, #20d67b, #13a65c);
  color: white;

  box-shadow: 0 10px 30px rgba(32, 214, 123, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(32, 214, 123, 0.5);
}

/* SECONDARY BUTTON */
.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: white;

  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #20d67b;
  transform: translateY(-4px);
}

/* =========================
   SECTION
========================= */
section {
  padding: 110px 7%;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.line {
  width: 100px;
  height: 4px;

  background: linear-gradient(to right, #20d67b, #5dffb4);

  margin: auto;
  border-radius: 20px;
}

/* =========================
   PRODUK
========================= */
.produk-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
}

.produk-image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

  transition: 0.4s;
}

.produk-image img:hover {
  transform: scale(1.03);
}

.produk-content h3 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #55ffab;
}

.produk-content p {
  line-height: 1.9;
  color: #d6e7de;
  margin-bottom: 30px;
}

/* FITUR */
.fitur {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 35px;
}

.fitur span {
  background: rgba(85, 255, 171, 0.1);
  border: 1px solid rgba(85, 255, 171, 0.2);

  padding: 12px 18px;
  border-radius: 50px;

  color: #baffd8;

  transition: 0.3s;
}

.fitur span:hover {
  transform: translateY(-4px);
  background: rgba(85, 255, 171, 0.18);
}

/* HARGA BOX */
.harga-box {
  background: linear-gradient(135deg, #0d2b1d, #113b28);

  padding: 30px;
  border-radius: 24px;

  margin-bottom: 35px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.harga-box h4 {
  color: #7cffc1;
  margin-bottom: 10px;
}

.harga-box h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* =========================
   SPESIFIKASI
========================= */
.spesifikasi {
  background: #0b2318;
}

.spesifikasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.spec-card {
  background: rgba(255, 255, 255, 0.05);

  padding: 35px 25px;

  border-radius: 24px;

  text-align: center;

  transition: 0.35s;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-card:hover {
  transform: translateY(-8px);
  background: rgba(85, 255, 171, 0.1);
}

.spec-card h3 {
  margin-bottom: 14px;
  color: #55ffab;
}

/* =========================
   KEUNGGULAN
========================= */
.unggul-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.unggul-card {
  background: linear-gradient(145deg, #0d2c1d, #113925);

  padding: 35px;

  border-radius: 28px;

  transition: 0.4s;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.unggul-card:hover {
  transform: translateY(-8px);
}

.unggul-card h3 {
  color: #63ffb1;
  margin-bottom: 15px;
  font-size: 22px;
}

.unggul-card p {
  color: #d7e7df;
  line-height: 1.8;
}

/* =========================
   KONTAK
========================= */
.kontak {
  background: #0a1d14;
}

.kontak-box {
  max-width: 800px;

  margin: auto;
  text-align: center;

  background: linear-gradient(145deg, #0f3221, #14442c);

  padding: 60px;

  border-radius: 35px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kontak-box h3 {
  font-size: 38px;
  margin-bottom: 20px;
}

.kontak-box p {
  color: #d7e7df;
  margin-bottom: 35px;
  line-height: 1.9;
}

/* =========================
   FLOATING WA
========================= */
.floating-wa {
  position: fixed;

  bottom: 25px;
  right: 25px;

  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: linear-gradient(135deg, #1fd06f, #0fa856);

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
  color: white;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);

  z-index: 999;

  transition: 0.3s;
}

.floating-wa:hover {
  transform: scale(1.1);
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 40px 7%;
  text-align: center;

  background: #04110b;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer h3 {
  margin-bottom: 10px;
}

footer p {
  color: #b7d7c6;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;

    top: 100%;
    right: 7%;

    width: 260px;

    background: rgba(6, 28, 18, 0.98);

    backdrop-filter: blur(20px);

    border-radius: 25px;

    padding: 25px;

    flex-direction: column;
    align-items: flex-start;

    gap: 20px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-15px);

    transition: 0.4s ease;
  }

  .navbar.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .logo-text h2 {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .produk-content h3 {
    font-size: 32px;
  }

  .kontak-box {
    padding: 40px 25px;
  }

  .kontak-box h3 {
    font-size: 28px;
  }
}