/* ============================================
   WHATSAPP FLOAT WIDGET
   ============================================ */

.wa-float-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.wa-contact-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: all 0.3s ease;
  pointer-events: none;
}

.wa-float-widget:hover .wa-contact-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-contact-header {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-contact-body {
  padding: 8px;
}

.wa-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #333 !important;
  transition: all 0.2s ease;
  margin-bottom: 4px;
}

.wa-contact-item:last-child {
  margin-bottom: 0;
}

.wa-contact-item:hover {
  background: #f0f9ff;
  transform: translateX(4px);
}

.wa-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-contact-icon.mail {
  background: #e0f2fe;
  color: #0284c7;
}

.wa-contact-icon.whatsapp {
  background: #dcfce7;
  color: #16a34a;
}

.wa-contact-text small {
  display: block;
  color: #64748b;
  font-size: 12px;
  margin-bottom: 2px;
}

.wa-contact-text strong {
  display: block;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
}

.wa-float-button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  order: 2;
}

.wa-float-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .wa-float-widget {
    right: 16px;
    bottom: 16px;
  }
  
  .wa-float-button {
    width: 52px;
    height: 52px;
  }
  
  .wa-contact-panel {
    width: 280px;
    bottom: 60px;
  }
}
.wa-contact-icon.phone {
  background: #fff4e6;
  color: #ff8000;
}