.contact-side-bar {
    position: fixed;
    right: 20px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    align-items: center
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px #0000001a;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease
}

.contact-side-bar:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 4px 12px #00000026
}

.icon {
    width: 30px;
    height: 30px
}

.contact-details {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px #00000026;
    display: none;
    flex-direction: column;
    gap: 15px;
    align-items: center
}

.contact-section {
    text-align: center
}

.title {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin: 0 0 8px
}

.content {
    font-size: 14px;
    color: #555;
    margin: 0
}

.qr-code {
    width: 120px;
    height: 120px;
    display: block
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity .3s ease, transform .3s ease
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
    transform: translateY(-50%) translate(10px)
}