/* ============================================================
   ПЛАВАЮЩАЯ ПАНЕЛЬ КОНТАКТОВ (появляется между секциями "Конструктор" и "Контакты" при скролле) — (.floating-contact-bar, .fcb-*).
   ============================================================ */

.floating-contact-wrap {
  position: relative;
  height: 0;
}

.floating-contact-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(120px);
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 24px);
  max-width: 420px;
  padding: 10px;
  border-radius: 24px;
  *background: rgba(12, 8, 22, 0.85);
  border: 1px solid rgba(255, 184, 48, 0.15);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 184, 48, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 550;
  transition: transform 0.65s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.45s ease;
}

.floating-contact-bar.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.fcb-call {
  flex: 1;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: #08040C;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 8px 24px rgba(255, 184, 48, 0.25);
  transition: transform 0.28s;
  white-space: nowrap;
  overflow: hidden;
}

.fcb-call:hover {
  transform: translateY(-2px);
}

.fcb-social {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 21px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.25s;
  flex-shrink: 0;
}

.fcb-social:hover {
  transform: translateY(-2px);
}

.fcb-social.tg {
  color: #29A9EB;
}

.fcb-social.wa {
  color: #25D366;
}

@media (min-width: 1024px) {
  .floating-contact-bar {
    display: none;
  }
}

.fcb-compact {
  display: none;
}

@media (max-width: 479px) {
  .fcb-full {
    display: none;
  }
  .fcb-compact {
    display: flex;
  }
}

