/* WhatsApp Floating Icon */
.whatsapp-float {
  position: fixed;
  bottom: 32px; /* Changed from top to bottom */
  right: 32px;
  z-index: 9999;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.whatsapp-float:hover {
  background: #128C7E;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
}
@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
