/* ── FLOATING CONTACT SIDEBAR ────────────────── */
.floating-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    /* Ensure it's above everything */
    background: var(--blue-primary);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.floating-sidebar a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.floating-sidebar a:last-child {
    border-bottom: none;
}

.floating-sidebar a:hover {
    background: var(--blue-dark);
    width: 60px;
    /* Slight expand on hover */
    margin-left: -12px;
}

/* Hide on mobile if it conflicts with the bottom floating bar */
@media (max-width: 768px) {
    .floating-sidebar {
        display: none;
    }
}