/* Mobile Menu Styles */
.mobile-nav-wrapper {
  display: none; /* Hidden by default on desktop */
}

@media only screen and (max-width: 767px) {
  /* Only show on mobile screens */
  .mobile-nav-wrapper {
    display: block;
  }
  
  /* Hide regular navigation on mobile */
  .navbar-collapse {
    display: none !important;
  }
  
  /* Mobile navigation toggle button (hamburger) */
  .mobile-nav-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  
  .mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #26272d;
    margin: 2px 0;
    transition: all 0.3s ease;
  }
  
  /* Full-screen overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  
  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobile nav container */
  .mobile-nav-container {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Mobile nav header */
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .mobile-nav-logo {
    height: 30px;
    width: auto;
  }
  
  .mobile-nav-close {
    font-size: 36px;
    background: none;
    border: none;
    color: #26272d;
    cursor: pointer;
  }
  
  /* Mobile nav links */
  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
  }
  
  .mobile-nav-links li {
    margin: 0;
    padding: 0;
  }
  
  .mobile-nav-links li a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #26272d;
    border-bottom: 1px solid rgba(38,41,44,0.1);
    text-decoration: none;
  }
  
  .mobile-nav-links li a:hover {
    color: #6fc754;
  }
  
  /* Mobile dropdown */
  .mobile-dropdown-toggle {
    position: relative;
  }
  
  .mobile-dropdown-toggle:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
  }
  
  .mobile-dropdown.open .mobile-dropdown-toggle:after {
    content: '-';
  }
  
  .mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 0 0 0 20px;
    margin: 0;
  }
  
  .mobile-dropdown.open .mobile-dropdown-menu {
    display: block;
  }
  
  .mobile-dropdown-menu li a {
    font-size: 16px;
    padding: 10px 0;
  }
}