.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background: linear-gradient(190deg, #EE5007 -43%, #1E1E1E 77%);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 19px 24px;
    color: var(--white);
}

.close-menu {
    background: linear-gradient(216deg, #EE5007 -79%, #1E1E1E 77%);
    border: 3px solid var(--black);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: absolute;
    left: -6%;
    top: 8%;
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    background: linear-gradient(216deg, #EE5007 -100%, #1E1E1E 77%);
    width: fit-content;
    padding: 17px 5px;
    border-radius: 50px;
    height: 100px;
    justify-self: center;
    margin-bottom: 24px;
}

.side-menu-logo {
    height: 70px;
}

.side-menu-content {
    padding: 0;
}

.side-menu-light-box {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--white);
    padding: 10px 12px;
    width: 100%;
    text-align: left;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.get-in-touch h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.menu-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 12px;
}
.side-menu-content a {
    text-decoration: none;
}


