section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Header */
#header .row .logo {
  padding-top: 10rem !important;
}

#header .btn-primary {
  background-color: #964b00; /* Warna coklat */
  border-color: #964b00;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Efek bayangan */
  transition: all 0.3s ease-in-out; /* Transisi untuk efek hover */
}

#header .btn-primary:hover {
  background-color: #7a3b00; /* Warna coklat lebih gelap */
  border-color: #7a3b00;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); /* Efek bayangan lebih besar */
  transform: translateY(-2px); /* Efek hover bergerak */
  animation: hover-move 0.5s infinite ease-in-out;
}

@keyframes hover-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Layanan */
#layanan .card {
  border-color: pink;
  border: 3px solid pink;
}

#layanan .icon {
  margin-top: 1rem;
  font-size: 4rem;
  color: pink;
}

.layanan .card {
  transition: transform 0.2s ease-in-out;
}

.layanan .card:hover {
  animation: hover-animation 0.5s ease-in-out forwards;
}

@keyframes hover-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.layanan .card .icon {
  transition: transform 0.2s ease-in-out;
}

.layanan .card:hover .icon {
  animation: icon-animation 0.5s ease-in-out forwards;
}

@keyframes icon-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  100% {
    transform: scale(1.2) rotate(10deg);
  }
}

#singkat {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#singkat .judul {
  font-family: sans-serif;
}

#payment .btn-success {
  background-color: #964b00; /* Warna coklat */
  border-color: #964b00;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Efek bayangan */
  transition: all 0.3s ease-in-out; /* Transisi untuk efek hover */
}

#payment .btn-success:hover {
  background-color: #ffffff; /* Warna putih */
  border-color: #964b00; /* Warna coklat */
  color: #964b00; /* Warna teks coklat */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); /* Efek bayangan lebih besar */
  transform: translateY(-2px); /* Efek hover bergerak */
  animation: hover-move 0.5s infinite ease-in-out;
}

@keyframes hover-move {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .btn-success {
    font-size: 0.8rem !important;
  }
}

@media (min-width: 700px) {
  .btn-success {
    font-size: 1.3rem !important;
  }
}

/* FAQ */
#faq .accordion {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  background-color: #f9f9f9;
}

#faq .accordion-item {
  border-bottom: 1px solid #ccc;
}

#faq .accordion-button {
  background-color: #f9f9f9;
  border: none;
  padding: 10px;
  font-size: 16px;
  /* font-weight: bold; */
  cursor: pointer;
  color: #333;
}

#faq .accordion-button:hover {
  background-color: #ccc;
}

#faq .accordion-collapse {
  padding: 10px;
}

#faq .accordion-body {
  padding: 10px;
  font-size: 14px;
  color: #666;
}

#faq .accordion-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#faq .accordion-body li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

#faq .accordion-body li:last-child {
  border-bottom: none;
}

/* Footer */
.footer {
  background-color: #333;
  padding: 20px;
  text-align: center;
}

.footer p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Tombol WhatsApp Ikon Mengambang di Sudut Kanan Bawah */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Warna hijau khas WhatsApp */
  color: white;
  border-radius: 50% !important; /* Pastikan bulat */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  animation: pulse 2s infinite;
}

/* Animasi pulse untuk ikon WhatsApp */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Efek hover: memperbesar dan menambah bayangan */
.whatsapp-icon:hover {
  transform: scale(1.2); /* Membesar lebih besar saat hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4); /* Menambah bayangan lebih kuat */
  background-color: #128c7e; /* Mengubah warna saat hover */
}
