
/* CONTAINER */
.floating-contact {
  position: fixed;
  bottom: 15px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* FIX overlap issue */
}

/* ENABLE CLICK ONLY ON BUTTONS */
.floating-contact a {
  pointer-events: auto;
}

/* CALL BUTTON */
.call-btn {
  width: 55px;
  height: 55px;
  background: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* CALL IMAGE */
.call-btn img {
  width: 26px;
  height: 26px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* IMAGE */
.whatsapp-btn img {
  width: 20px;
  height: 20px;
}

/* HOVER EFFECT */
.call-btn:hover {
  transform: scale(1.1);
  background: #d97706;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

/* PULSE */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {

  .floating-contact {
    bottom: 10px;
    padding: 0 10px;
  }

  .whatsapp-btn {
    font-size: 13px;
    padding: 10px 14px;
  }

  .call-btn {
    width: 50px;
    height: 50px;
  }

}