/* Mobile Navigation Menu Styles */
.vfx-mobile-navigation-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.offcanvas-menu .vfx-mobile-navigation-menu {
    right: 0;
}

.vfx-mobile-navigation-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.vfx-mobile-navigation-menu-close {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.vfx-mobile-navigation-menu-close:hover {
    color: #088178;
}

.vfx-mobile-navigation-menu-body {
    padding: 0;
}

.vfx-mobile-navigation-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vfx-mobile-navigation-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.vfx-mobile-navigation-menu-list li:last-child {
    border-bottom: none;
}

.vfx-mobile-navigation-menu-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vfx-mobile-navigation-menu-list li a:hover {
    background: #f8f9fa;
    color: #088178;
    padding-left: 25px;
}

/* Mobile User Section */
.mobile-user-section {
    background: #f8f9fa;
    border-top: 2px solid #088178;
}

.mobile-user-info {
    padding: 15px 20px;
    background: #088178;
    color: #fff;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.mobile-user-info i {
    margin-right: 10px;
    font-size: 18px;
}

.mobile-user-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-user-menu li {
    border-bottom: 1px solid #e0e0e0;
}

.mobile-user-menu li:last-child {
    border-bottom: none;
}

.mobile-user-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.mobile-user-menu li a:hover {
    background: #088178;
    color: #fff;
    padding-left: 25px;
}

/* Mobile Menu Overlay */
.offcanvas-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
}

/* Mobile Menu Toggle Button */
.mobile-bar {
    display: none;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-bar:hover {
    color: #088178;
}

/* Show mobile menu button on small screens */
@media (max-width: 991px) {
    .mobile-bar {
        display: block !important;
    }
    
    .vfx-lg-none {
        display: block !important;
    }
    
    .vfx-lg-none.sm-right {
        display: block !important;
    }
}

/* Force show mobile menu button on all mobile devices */
@media (max-width: 768px) {
    .mobile-bar {
        display: block !important;
    }
    
    .vfx-lg-none {
        display: block !important;
    }
    
    .vfx-lg-none.sm-right {
        display: block !important;
    }
}

/* Hide desktop navigation on mobile */
@media (max-width: 991px) {
    .site-menu {
        display: none !important;
    }
}

/* Ensure header is visible on mobile */
@media (max-width: 991px) {
    .vfx-site-navbar-area {
        display: block !important;
    }
    
    .vfx-site-navbar-area .navbar-brand {
        display: block !important;
    }
    
    .vfx-site-navbar-area .site-menu {
        display: none !important;
    }
    
    .vfx-site-navbar-area .vfx-lg-none {
        display: block !important;
    }
}

/* Force header visibility on all mobile devices */
@media (max-width: 768px) {
    .vfx-site-navbar-area {
        display: block !important;
    }
    
    .vfx-site-navbar-area .navbar-brand {
        display: block !important;
    }
    
    .vfx-site-navbar-area .site-menu {
        display: none !important;
    }
    
    .vfx-site-navbar-area .vfx-lg-none {
        display: block !important;
    }
}

/* Mobile menu positioning */
@media (max-width: 768px) {
    .vfx-mobile-navigation-menu {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .vfx-mobile-navigation-menu {
        width: 100%;
        right: -100%;
    }
    
    .offcanvas-menu .vfx-mobile-navigation-menu {
        right: 0;
    }
}
