.social-contact {
    position: fixed;
    right: 10px;
    bottom: calc(50% - 100px);
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-contact a img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    transition: transform .2s;
}
.social-contact a img:hover {
    transform: scale(1.1);
}
.sc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.5);
    align-items:center;
    justify-content:center;
    z-index:10000;
}
.sc-modal.active {
    display:flex;
}
.sc-modal-content {
    background:#fff;
    padding:20px;
    border-radius:8px;
    position:relative;
    height:80vh;
    width:auto;
    text-align:center;
}
.sc-modal-content img {
    width:auto;
    height:100%;
}
.sc-modal-close {
    position:absolute;
    top:8px;
    right:12px;
    background:none;
    border:none;
    font-size:24px;
    cursor:pointer;
}
