/* Floating contact bar — shared across the site */
.float-sidebar { position: fixed; right: 12px; top: 50%; transform: translateY(-50%) translateX(calc(100% + 20px)); display: flex; flex-direction: column; gap: 0; z-index: 995; border-radius: 12px; overflow: hidden; border: 1.5px solid rgba(232,41,74,.7); background: #0F0E0C; box-shadow: 0 2px 16px rgba(232,41,74,.15); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.float-sidebar.visible { transform: translateY(-50%) translateX(0); }
.float-sidebar.highlight { animation: sidebarPulse 0.9s cubic-bezier(.36,.07,.19,.97); }
.float-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: #0F0E0C; color: rgba(255,255,255,0.85); border-bottom: 0.5px solid rgba(255,255,255,.1); text-decoration: none; transition: background .15s, color .15s; }
.float-icon:hover { background: #1a1917; color: #fff; }
.float-icon:last-child { border-bottom: none; }
.float-icon svg { width: 18px; height: 18px; }
.float-icon:hover { transform: scale(1.1); background: #fff; }
.float-icon svg { width: 20px; height: 20px; }
@keyframes sidebarPulse { 0% { box-shadow: 0 2px 16px rgba(232,41,74,.15); transform: translateY(-50%) translateX(0) scale(1); }
25% { box-shadow: 0 0 0 6px rgba(232,41,74,.25), 0 4px 24px rgba(232,41,74,.4); transform: translateY(-50%) translateX(0) scale(1.08); }
