/* Mobile Menu Styles */

.mobile-menu-overlay {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: #2b39d5;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: none;
}

.mobile-menu-logo {
  display: none;
}

.mobile-menu-logo img {
  display: none;
}

.mobile-menu-close {
  display: none;
}

.mobile-menu-close:hover {
  display: none;
}

.mobile-menu-close svg {
  display: none;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px 18px 48px;
  background: #2b39d5;
  border-bottom: 1px solid white;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  min-height: 50px;
  transition: background 0.3s ease;
}

/* .mobile-menu-item:hover {
  background: #1e2a9e;
} */

.mobile-menu-item span {
  flex-grow: 1;
}

.mobile-menu-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Contact Button in Mobile Menu */
.mobile-menu-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6ff25;
  color: #4a4459;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  height: 40px;
  border-radius: 20px;
  margin: 50px auto 0;
  padding: 0 24px;
  width: 217px;
  transition: all 0.3s ease;
}

.mobile-menu-contact:hover {
  background: #d4ed1f;
  transform: scale(1.05);
}

/* Prevent body scroll when menu is open */
html.menu-open,
body.menu-open {
  overflow: hidden;
}

/* Tablet adjustments */
@media (max-width: 1299px) {
  .mobile-menu-overlay {
    display: flex;
    top: 64px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
    top: 64px;
    height: calc(100vh - 64px);
  }
}
