/* ==========================================================================
   NAKSHANA - DIRECT FLOATING WHATSAPP BUTTON (NO POPUP)
   ========================================================================== */

.direct-wa-wrapper {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  direction: ltr;
}

/* Floating Direct WhatsApp Button */
.direct-wa-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  position: relative;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  text-decoration: none !important;
  border: none;
  outline: none;
}

.direct-wa-btn:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.direct-wa-btn svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* Pulsing effect ring */
.direct-wa-btn::before {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: wa-direct-pulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes wa-direct-pulse {
  0% { transform: scale(0.92); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Tooltip on hover */
.direct-wa-tooltip {
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  background: #1e293b;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.direct-wa-tooltip::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #1e293b transparent transparent;
}

.direct-wa-wrapper:hover .direct-wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .direct-wa-wrapper {
    left: 16px;
    bottom: 18px;
  }
  .direct-wa-btn {
    width: 50px;
    height: 50px;
  }
  .direct-wa-btn svg {
    width: 28px;
    height: 28px;
  }
  .direct-wa-tooltip {
    display: none;
  }
}
