/* Mobile Menu - Full Height */

/* Hide mobile menu by default */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 0;
  width: 300px;
  height: calc(100vh - 64px);
  background: white;
  border-left: 1px solid #ddd;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  z-index: 10001;
  padding: 20px;
  overflow-y: auto;
}

/* Show menu when body has menu-open class */
body.menu-open .mobile-menu {
  display: block !important;
}

/* Close button */
.menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 1;
  color: #666;
}

/* Menu items */
.mobile-nav-menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 30px 0 0 0 !important;
}

.mobile-nav-menu li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.mobile-nav-link {
  display: block !important;
  padding: 15px 10px !important;
  color: #333 !important;
  text-decoration: none !important;
  font-size: 18px !important;
  border-bottom: 1px solid #eee !important;
  font-weight: 500 !important;
}

.mobile-nav-link:hover {
  background: #f8f8f8 !important;
  color: #0969da !important;
}

/* Hide dropdown for now */
.mobile-dropdown-menu {
  display: none !important;
}

/* Contact button */
.mobile-nav-actions {
  margin-top: 20px !important;
}

.btn-primary-nav-mobile {
  display: block !important;
  width: 100% !important;
  padding: 15px !important;
  background: #0969da !important;
  color: white !important;
  text-align: center !important;
  text-decoration: none !important;
  border-radius: 5px !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

/* Hamburger button */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px 0;
}

/* Mobile only */
@media (max-width: 768px) {
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}
