.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: .25s ease;
}

.floating-contact.open .contact-channels {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.contact-channel {
  min-width: 146px;
  padding: 9px 12px 9px 9px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(19,34,29,.18);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  transition: transform .2s ease;
}

.contact-channel:hover {
  transform: translateX(-4px);
}

.channel-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.contact-channel.whatsapp .channel-icon { background: #24b861; }
.contact-channel.max .channel-icon { background: #735cff; }
.contact-channel.telegram .channel-icon { background: #279bd7; }

.contact-toggle {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #df9149;
  color: #18231f;
  box-shadow: 0 12px 35px rgba(20,35,30,.28);
  display: grid;
  place-items: center;
  transition: transform .25s ease, background .25s ease;
}

.contact-toggle:hover { transform: translateY(-3px); }
.floating-contact.open .contact-toggle { transform: rotate(8deg); background: #fff; }
.contact-toggle svg { width: 25px; height: 25px; }

.communication-field select,
.communication-contact input {
  width: 100%;
}

.modal-field select {
  margin-top: 5px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(24,35,31,.16);
  background: transparent;
  outline: none;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 600px) {
  .floating-contact { right: 15px; bottom: 15px; }
  .contact-toggle { width: 54px; height: 54px; }
  .contact-channel { min-width: 138px; }
}
