/* WhatsApp Floating Button */
#whatsapp-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  border-radius: 1.2rem;
  background: #25D366;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Inter, Arial, sans-serif;
}

#whatsapp-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  background: #128C7E;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-text {
  display: inline-block;
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  #whatsapp-chat-btn {
    bottom: 16px;
    right: 16px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }
}
