.spasi {
  height: 100px;
}

.layanan {
  /* padding: 40px 20px; */
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  font-family: "Segoe UI", sans-serif;
  /* background: #f9f9f9; */
}

.layanan h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 30px;
}

.card {
  background-color: #fff;
  border-left: 6px solid #ffd700;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: black;
}

.card h4 {
  font-size: 1.3rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #555;
}

.card p {
  font-size: 1rem;
  color: #333;
}

.card ul {
  padding-left: 20px;
  color: #444;
}

.card ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.alur-kerja {
  width: 100%;
  /* margin: 60px auto; */
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

.alur-kerja h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #333;
}

/* tim */

.tim {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tim-member {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 2%;
}

.tim-member img {
  width: 50%;
  height: auto;
}

.tim p {
  font-size: 1.2rem;
  width: 50%;
  color: #555;
  text-align: center;
  margin-top: -1%;
}

.member-1,
.member-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 2px solid black; */
}

.member-1 h3,
.member-2 h3 {
  color: black;
  margin-top: 10px;
  width: 60%;
  text-align: center;
}
/* alur kerja */

.alur-kerja {
  margin-top: 4%;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: #fff;
  border-left: 6px solid #ffd700;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: black;
  background-color: #ffd700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #333;
}

.step-content p {
  margin: 8px 0 0;
  color: #555;
  line-height: 1.5;
}

/* wa */

.whatsapp-container {
  position: fixed;
  bottom: 40px; /* Jarak dari bawah layar */
  right: 25px; /* Jarak dari kanan layar */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000; /* Pastikan elemen berada di atas */
  opacity: 1;
  transition: opacity 0.3s ease; /* Animasi muncul/hilang */
}

.whatsapp-container p {
  position: relative;
  background-color: #e0f7ea; /* warna hijau muda seperti chat bubble */
  color: #075e54;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px; /* jarak dari logo */
  padding: 8px 12px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  animation: bounceText 2s infinite;
}

.whatsapp-container p::after {
  content: "";
  position: absolute;
  bottom: -8px; /* posisi panah di bawah balon */
  left: 84%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e0f7ea; /* warna sama dengan background balon */
}

.whatsapp-logo {
  width: 90px; /* Ukuran logo */
  height: 90px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-logo:hover {
  transform: scale(1.1); /* Efek zoom saat hover */
}

@keyframes bounceText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (min-width: 200px) and (max-width: 339px) {
  .layanan h2 {
    font-size: 2rem;
  }

  .card h3 {
    font-size: 1.4rem;
  }

  .tim h2 {
    font-size: 2rem;
  }

  .tim p {
    font-size: 0.9rem;
    width: 90%;
  }

  .tim-member {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .step-content h3 {
    font-size: 1.4rem;
  }

  .alur-kerja {
    margin-top: 10%;
  }

  /* wa */
  .whatsapp-logo {
    width: 60px; /* Ukuran logo */
    height: 60px;
  }

  .whatsapp-container {
    bottom: 20px;
    right: 15px;
    align-items: flex-end;
  }

  .whatsapp-container p::after {
    left: 84%;
  }
}

@media (min-width: 340px) and (max-width: 425px) {
  .tim p {
    font-size: 1rem;
    width: 90%;
  }

  .tim-member {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .alur-kerja {
    margin-top: 10%;
  }

  /* wa */
  .whatsapp-logo {
    width: 60px; /* Ukuran logo */
    height: 60px;
  }

  .whatsapp-container {
    bottom: 20px;
    right: 15px;
    align-items: flex-end;
  }

  .whatsapp-container p::after {
    left: 84%;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .tim p {
    font-size: 1rem;
    width: 90%;
  }

  .tim-member {
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .alur-kerja {
    margin-top: 10%;
  }

  /* wa */

  .whatsapp-logo {
    width: 60px; /* Ukuran logo */
    height: 60px;
  }

  .whatsapp-container {
    bottom: 20px;
    right: 15px;
    align-items: flex-end;
  }

  .whatsapp-container p::after {
    left: 84%;
  }
}
