:root {
  --primary: #1E3A8A;
  --secondary: #10B981;
  --accent: #3B82F6;
  --bg-soft: #F9FAFB;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

/* Mobile Sticky Call Button */
.mobile-sticky-call {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 99;
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-call {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}
