/* ==========================================================================
   Desparclean — Floating Click-to-Call Button
   Sitewide, bottom-left. Mirrors the WhatsApp button's visual weight.
   ========================================================================== */

.dc-call-btn-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 99998; /* stays below the popup overlay (99999) */
}

.dc-call-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E8B3D 0%, #1F6229 100%);
  box-shadow: 0 6px 18px rgba(31, 98, 41, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dc-call-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(31, 98, 41, 0.55);
}

.dc-call-btn svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 2;
}

/* Pulsing ring behind the button — subtle, draws attention without distracting */
.dc-call-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(46, 139, 61, 0.55);
  animation: dc-call-pulse 2.4s ease-out infinite;
  z-index: 1;
}

@keyframes dc-call-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

/* Mobile — slightly smaller, tighter to edge */
@media (max-width: 480px) {
  .dc-call-btn-wrap {
    left: 14px;
    bottom: 14px;
  }

  .dc-call-btn {
    width: 52px;
    height: 52px;
  }

  .dc-call-btn svg {
    width: 22px;
    height: 22px;
  }
}
