.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 28px;

  width: 72px;
  height: 72px;

  background-color: #25D366;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 48px;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;

  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 62px;
    height: 62px;
    font-size: 34px;
    bottom: 20px;
    right: 20px;
  }
}

.logo-img {
  height: 75px;
  width: auto;
  margin-right: 8px;
}

/* WhatsApp Floating Widget */
.wa-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  font-family: Poppins, sans-serif;
  z-index: 9999;
}

.wa-header {
  background: #075e54;
  color: #fff;
  padding: 12px;
  border-radius: 12px 12px 0 0;
}

.wa-header span {
  display: block;
  font-size: 12px;
  opacity: .8;
}

.wa-body {
  padding: 15px;
  font-size: 14px;
}

.wa-button {
  display: block;
  margin: 10px;
  padding: 12px;
  background: #25d366;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.wa-button:hover {
  background: #1ebe5d;
}

/* Floating Icon */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

