.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .offcanvas-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .offcanvas-menu .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #ffffff;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: background 0.3s ease;
        z-index: 10000;
    }

        .offcanvas-menu .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu-items li {
        margin-bottom: 20px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

.offcanvas-menu.active .menu-items li {
    opacity: 1;
    transform: translateX(0);
}

.menu-items li:nth-child(1) {
    transition-delay: 0.1s;
}

.menu-items li:nth-child(2) {
    transition-delay: 0.2s;
}

.menu-items li:nth-child(3) {
    transition-delay: 0.3s;
}

.menu-items li:nth-child(4) {
    transition-delay: 0.4s;
}

.menu-items li:nth-child(5) {
    transition-delay: 0.5s;
}

.menu-items li:nth-child(6) {
    transition-delay: 0.6s;
}

.menu-items li:nth-child(7) {
    transition-delay: 0.7s;
}

.menu-items li:nth-child(8) {
    transition-delay: 0.8s;
}

.menu-items li:nth-child(9) {
    transition-delay: 0.9s;
}

.menu-items li:nth-child(10) {
    transition-delay: 1.0s;
}

.menu-items li:nth-child(11) {
    transition-delay: 1.1s;
}

.menu-items a:hover::before {
    width: 30px;
}

.menu-items a:hover {
    color: #808080;
    padding-left: 10px;
}

.menu-items a {
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .menu-items a::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #ffffff;
        transition: width 0.3s ease;
    }

    .menu-items a:hover::before {
        width: 30px;
        left: 10px;
    }

    .menu-items a:hover {
        color: #808080;
        padding-left: 10px;
    }

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Menu Container */
.menu-container {
    width: 100%;
    height: 100%;
    padding: 100px 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Content Layout */
.menu-content {
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    gap: 80px;
}

.menu-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-contact {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding: 150px 0;
}

.contact-section,
.address-section {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.copyright-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

    .copyright-section p {
        color: #808080;
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 4px;
        font-family: 'Raleway', sans-serif;
    }

.contact-section h3,
.address-section h3 {
    color: #808080;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info p,
.address-info p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
}


/* Menu Items Animation */
.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .menu-items li {
        margin-bottom: 20px;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

.offcanvas-menu.active .menu-items li {
    opacity: 1;
    transform: translateX(0);
}

.circle-reveal {
    width: 100vw;
    height: 100vh;
    background: rgb(26 26 26 / 98%);
    clip-path: circle(0px at 100% 0);
    transition: clip-path 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offcanvas-menu.active .circle-reveal {
    clip-path: circle(150% at 100% 0);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .offcanvas-menu {
        width: 100%;
        transform-origin: top right;
    }

    .menu-container {
        padding: 80px 20px 20px;
    }

    .menu-content {
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
    }

    .menu-navigation {
        order: 1;
    }

    .menu-contact {
        order: 2;
        padding: 20px 0;
    }

    .menu-items li {
        margin-bottom: 10px !important;
    }

    .menu-items a {
        font-size: 18px;
        padding: 10px 0;
    }

    .contact-info p,
    .address-info p {
        font-size: 14px;
    }
}
