/* whatsapp.css */
#whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 30px;   
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 25px;
  font-size: 40px;
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

#whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 15px rgba(0,0,0,0.35);
}

#whatsapp-btn.clicked {
  animation: whatsapp-pop 0.3s ease-out;
}

@keyframes whatsapp-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

#whatsapp-popup {
  position: fixed;
  bottom: 115px;
  right: 30px;
  background-color: white;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  width: 300px;
  display: none;
  z-index: 1001;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transform-origin: bottom right;
  overflow: hidden;
}

#whatsapp-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#whatsapp-popup.hide {
  opacity: 0;
  transform: translateY(30px) scale(0.6);
}

.whatsapp-popup-header {
  background-color: #25d366;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.whatsapp-popup-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  padding: 0;
}

.chat-bubble {
  background-color: #e2fcdb;
  border-radius: 18px 18px 18px 0;
  padding: 12px 15px;
  margin: 0 20px 20px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.whatsapp-button {
  display: block;
  background-color: #25d366;
  color: white;
  text-align: center;
  padding: 12px 20px;
  margin: 0 20px 20px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}