#wp {
  position: fixed;
  z-index: 100;
  height: 55px;
  width: 55px;
  right: 40px;
  bottom: 90px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

#wp:hover {
  position: fixed;
  z-index: 100;
  height: 55px;
  width: 55px;
  right: 40px;
  bottom: 90px;
  border-radius: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}


#wp::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 25%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#wp:hover::after {
  opacity: 1;
  transform: scale(1.1);
  /* Efek zoom pada hover */
}

#wp svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

#wp:hover svg {
  transform: scale(1.1);
  /* Sedikit membesarkan ikon pada hover */
}



/* Tambahan CSS Khusus Mobile */
@media (max-width: 768px) {
  #wp {
    right: 20px;
    height: 50px;
    width: 50px;
  }

  #wp svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  #wp {
    right: 15px;
    height: 45px;
    width: 45px;
  }

  #wp svg {
    width: 22px;
    height: 22px;
  }
}