/* Mobile Menu Fix */
@media (max-width: 991px) {
  /* Hide desktop menu on mobile */
  .hidden-xs-down {
    display: none !important;
  }
  
  /* Show mobile menu when active */
  #nk-nav-mobile.active {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1000;
  }
  
  /* Mobile menu styling */
  #nk-nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  
  /* Mobile menu items styling */
  #nk-nav-mobile .nk-nav {
    padding: 30px 0;
  }
  
  #nk-nav-mobile .nk-nav li a {
    color: #fff;
    font-size: 18px;
    padding: 10px 20px;
    display: block;
  }
  
  /* Close button styling */
  .nk-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
  }
  
  /* Hamburger icon styling */
  .nk-icon-burger {
    display: inline-block;
    width: 24px;
    height: 18px;
    position: relative;
  }
  
  .nk-icon-burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
  }
  
  .nk-icon-burger .nk-t-1 {
    top: 0;
  }
  
  .nk-icon-burger .nk-t-2 {
    top: 8px;
  }
  
  .nk-icon-burger .nk-t-3 {
    bottom: 0;
  }
  
  /* Body class when menu is open */
  body.nk-navbar-full-opened {
    overflow: hidden;
  }
}