/* Floating Button */
#wa-floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #128C7E;
  color: #fff;
  padding: 14px 18px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

#wa-floating-btn img {
  width: 26px;
  height: 26px;
}

/* Chat Box */
#wa-chatbox {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 320px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  display: none;
  animation: fadeIn 0.3s ease;
  z-index: 10000;
}

#wa-chatbox.show {
  display: block;
}

/* Header */
.wa-header {
  background: #ffffff;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.wa-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.wa-header p {
  margin: 0;
  font-size: 12px;
  color: #2ecc71;
  font-weight: 600;
}

.wa-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #28d146;
  border-radius: 50%;
  margin-left: 4px;
}

.wa-close {
  position: absolute;
  right: 10px;
  font-size: 18px;
  top: 10px;
  cursor: pointer;
}

/* Chat Body */
.wa-body {
  background-image: url("https://i.ibb.co/BcJZ8qw/whatsapp-bg.png");
  background-size: cover;
  padding: 20px;
  height: 180px;
  position: relative;
}

.wa-message {
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px 12px 12px 0;
  width: 90%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.wa-message p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #333;
}

/* Button */
.wa-button {
  display: block;
  background: #128C7E;
  padding: 12px;
  text-align: center;
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.wa-button:hover {
  background: #0B8F58;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
