/* Modern Mobile Menu Redesign */

.vl-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(40, 30, 80, 0.97);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    box-shadow: -2px 0 24px 0 rgba(0, 0, 0, 0.18);
    overflow-y: auto;
}

.vl-offcanvas.vl-offcanvas-open {
    transform: translateX(0);
}

.vl-offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20, 20, 40, 0.55);
    z-index: 9998;
    opacity: 1;
    transition: opacity 0.3s;
    display: none;
}

.vl-offcanvas.vl-offcanvas-open ~ .vl-offcanvas-overlay {
    display: block;
    opacity: 1;
}

.vl-offcanvas-wrapper {
    padding: 32px 20px 32px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vl-offcanvas-header {
    margin-bottom: 32px;
}

.vl-offcanvas-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vl-logo-text {
    color: #fff !important;
    font-size: 1.1rem !important;
    font-family: "Figtree", sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.vl-offcanvas-close button {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0 8px;
    transition: color 0.2s;
}
.vl-offcanvas-close button:hover {
    color: #ffb347;
}

.vl-offcanvas-menu nav {
    width: 100%;
}

.vl-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vl-mobile-nav li {
    width: 100%;
}

.vl-mobile-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0 14px 8px;
    font-size: 1.1rem;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
    transition:
        background 0.18s,
        color 0.18s;
    background: none;
}

.vl-mobile-nav a:hover,
.vl-mobile-nav a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffb347;
    text-decoration: none;
}

.vl-mobile-nav .get-started-btn {
    background: linear-gradient(90deg, #ffb347 0%, #ff6a00 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 0;
    transition: background 0.2s;
}
.vl-mobile-nav .get-started-btn:hover {
    background: linear-gradient(90deg, #ff6a00 0%, #ffb347 100%);
    color: #fff;
}

.vl-offcanvas-info {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vl-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vl-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: "Figtree", sans-serif;
}

.vl-contact-item a,
.vl-contact-item span {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.18s;
    word-break: break-all;
}

.vl-contact-item a:hover {
    color: #ffb347;
    text-decoration: underline;
}

.vl-contact-item i {
    font-size: 1.2rem;
    color: #fff;
    min-width: 22px;
    text-align: center;
}

@media (min-width: 992px) {
    .vl-offcanvas,
    .vl-offcanvas-overlay {
        display: none !important;
    }
}

::-webkit-scrollbar {
    width: 8px;
    background: rgba(0, 0, 0, 0.08);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}
