* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HERO SECTION */
.hero {
  background-color: #cfcfcf; /* nanti bisa diganti dengan background-image */
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  margin-left: 60px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
}

.hero p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #444;
}

.chat-btn {
  margin-top: 20px;
  background-color: #111;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.chat-btn:hover {
  background-color: #333;
}

/* FEATURED SECTION */
.featured {
  text-align: center;
  padding: 60px 0;
}

.featured h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  color: #777;
  margin-bottom: 40px;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  margin-bottom: 60px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid none;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  max-width: 280px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card p {
  font-weight: 600;
  font-size: 0.9rem;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* ICON SECTION */
.icon-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.icon-box {
  text-align: center;
}

.icon {
  width: 75px;
  height: 75px;
  border: 0 solid #000;
  margin: 0 auto 10px;
  border-radius: 4px;
}

.icon-box p {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
}

/* Page Customer Kami */
.clients-section {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
  overflow: hidden;
}

.clients-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.clients-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.clients-header .line {
  width: 60px;
  height: 3px;
  background-color: #A7BE6B;
  margin: 0 auto 50px;
  border-radius: 2px;
}

/* ====== Logo Slider ====== */
.logo-slider {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.logo-row {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 120px; /* ✅ jarak antar logo */
  padding-right: 120px; /* ✅ jarak antar akhir dan awal saat looping */
  animation: scroll-left 75s linear infinite;
}

.logo-row.right .logo-track {
  animation: scroll-right 75s linear infinite;
}

.logo-track img {
  height: 70px;
  width: auto;
  filter: grayscale(30%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
}
.product-section-list {
  text-align: center;
  padding: 30px 20px;
  background-color: #fff;
  overflow: hidden;
}

.faq-container {
  max-width: 750px;
  width: 100%;
}

.faq-container h2 {
  text-align: center;
  font-size: 28px;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 35px;
  color: #444;
}

.faq-container {
  max-width: 100%;;
  width: 100%;
    }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      margin-bottom: 14px;
      overflow: hidden;
      align-items: center;
      border: 1px solid #252C30;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }

    .faq-question {
      width: 100%;
      background: #fff;
      border: none;
      color: #333;
      padding: 18px 22px;
      text-align: left;
      font-size: 15px;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .faq-question:hover {
      background: #f1f1f0b6;
    }

    .faq-icon {
      font-size: 22px;
      font-weight: 700;
      color: #A7BE6B;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      color: #5f6f2f;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      background: #fcfcfc;
      padding: 0 22px;
      transition: max-height 0.4s ease, padding 0.3s ease;
      opacity: 0;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 16px 22px 22px;
      opacity: 1;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { transform: translateY(-6px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .faq-answer p {
      font-size: 14px;
      color: #555;
      margin-bottom: 14px;
      line-height: 1.6;
    }

    .faq-link {
      display: inline-block;
      background-color: #A7BE6B;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .faq-link:hover {
      background-color: #b2ca76;
      color: #fff;
      transform: translateY(-2px);
    }

    /* CTA bawah */
    .cta-banner {
      background: #A7BE6B;
      border-radius: 14px;
      padding: 45px 25px;
      text-align: center;
      margin-top: 60px;
      max-width: 750px;
      box-shadow: 0 5px 18px rgba(167, 190, 107, 0.35);
    }

    .cta-banner p {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .cta-button {
      display: inline-block;
      background: #fff;
      color: #4b4b4b;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: #f1f1f1;
      transform: translateY(-2px);
    }

    @media (max-width: 600px) {
      body {
        padding: 25px 15px;
      }
      h2 {
        font-size: 22px;
      }
      .faq-question {
        font-size: 14px;
        padding: 14px 18px;
      }
      .faq-answer p {
        font-size: 13px;
      }
      .cta-banner {
        font-size: 16px;
        padding: 30px 18px;
      }
    }

/*==== Card Tentang Kami ====*/
.visi-misi {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 20px;
  flex-wrap: wrap;
}

.card-tk {
  position: relative;
  background-color: #b7db89;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  width: 380px;
  height: 330px;
  padding: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-tk:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Gambar dekor pojok kanan bawah */
.card-bg-tk {
  position: absolute;
  bottom: -55px;
  right: -28px;
  width: 180px;     /* atur ukuran sesuai kebutuhan */
  height: auto;
  opacity: 0.1;     /* transparan agar teks tetap terbaca */
  z-index: 0;
  pointer-events: none;
}

.card-tk *:not(.card-bg-tk) {
  position: relative;
  z-index: 1;
}

.header-tk {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon-tk {
  width: 50px;
  height: 50px;
  margin-right: 6px;
}

.card-tk h2 {
  padding-top: 5px;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #597534;
}

.card-tk p,
.card-tk ul {
  font-size: 14px;
  margin: 0;
  color: #597534;
  line-height: 1.5;
}

.card-tk ul {
  padding-left: 18px;
}

.card-tk li {
  color: #597534;
  margin-bottom: 6px;
  font-size: 14px;
}

/* ====== CSS Google Maps ====== */
.lokasi {
  text-align: center;
  padding: 20px 20px;
  background-color: #f9fafb;
}

.lokasi h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.lokasi p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #555;
  margin-bottom: 25px;
}

.map-container {
  width: 100%;
  height: 450px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

#map {
  width: 100%;
  height: 350px;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Tombol “Lihat di Google Maps” */
.btn-maps {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 28px;
  background-color: #A7BE6B;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(167, 190, 107, 0.4);
}

.btn-maps:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(167, 190, 107, 0.5);
}

/* ====== Animasi yang tidak reset ====== */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* geser separuh track */
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Responsif */
@media (max-width: 768px) {
  .clients-header h2 {
    font-size: 32px;
  }
  .clients-header p {
    font-size: 16px;
  }
  .logo-track {
    gap: 50px;
  }
  .logo-track img {
    height: 50px;
  }
  .hero {
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}