/* ===================================================
   ROSE EVENTS — Floating Contact Button
   =================================================== */

.floating-contact {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
}

.floating-contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(155, 44, 79, 0.35);
  transition: all 300ms;
  position: relative;
  z-index: 2;
}

.floating-contact-btn:hover {
  background: var(--accent-dark);
  transform: scale(1.05);
}

.floating-contact-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 300ms;
}

.floating-contact.open .floating-contact-btn svg {
  transform: rotate(45deg);
}

.floating-contact-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 300ms;
}

.floating-contact.open .floating-contact-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 300ms;
}

.floating-menu-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateX(-4px);
}

.floating-menu-item .menu-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-menu-item .menu-icon svg {
  width: 18px;
  height: 18px;
}

.floating-menu-item.call .menu-icon {
  background: #22c55e;
  color: white;
}
.floating-menu-item.whatsapp .menu-icon {
  background: #25D366;
  color: white;
}
.floating-menu-item.email .menu-icon {
  background: var(--accent);
  color: white;
}
.floating-menu-item.instagram .menu-icon {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: white;
}
