/* ---------- Floating action icons ---------- */
.kspl-float-icons{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.kspl-float-icon{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, visibility .22s ease;
  border: none;
  cursor: pointer;
}
.kspl-float-icon:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  color: #fff;
}

.kspl-float-icon--whatsapp{
  background: #25d366;
}
.kspl-float-icon--call{
  background: linear-gradient(135deg, var(--kspl-flame-1), var(--kspl-flame-2));
}
.kspl-float-icon--mail{
  background: linear-gradient(135deg, var(--kspl-gold-light), var(--kspl-gold));
  color: var(--kspl-black);
}
.kspl-float-icon--mail:hover{
  color: var(--kspl-black);
}

.kspl-float-icon--top{
  width: 44px;
  height: 44px;
  background: var(--kspl-black-2);
  border: 1.5px solid rgba(201,150,62,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.kspl-float-icon--top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Gentle pulse ring on the WhatsApp icon to draw the eye */
.kspl-float-icon--whatsapp{
  position: relative;
}
.kspl-float-icon--whatsapp::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: kspl-pulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes kspl-pulse{
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.7); opacity: 0;  }
}

@media (max-width: 600px){
  .kspl-float-icons{ right: 14px; bottom: 14px; gap: 12px; }
  .kspl-float-icon{ width: 46px; height: 46px; }
  .kspl-float-icon--top{ width: 38px; height: 38px; }
}