@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(-30%); }
    to { opacity: 1; transform: translateY(-50%); }
}

.hero-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: auto;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent !important;
    padding: 20px 0;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.hero-sidebar:hover {
    width: 55px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-sidebar-left {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.hero-sidebar-right {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.sidebar-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin: 15px 0;
    color: #f4730e !important;
    text-transform: uppercase;
    transition: transform 0.4s ease;
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
}

.hero-sidebar:hover .sidebar-text {
    transform: rotate(180deg) scale(1.05);
}

.sidebar-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.sidebar-icons a {
    color: #f4730e !important;
    font-size: 18px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.sidebar-icons a:hover {
    transform: scale(1.3);
    opacity: 0.8;
    filter: drop-shadow(0 0 8px rgba(244, 115, 14, 0.5));
}

@media (max-width: 991px) {
    .hero-sidebar { display: none; }
}
