.mobile-menu {
  display: none;
  position: absolute;
  top: 60px; /* adjust based on header */
  right: 0;
  background: white;
  width: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu ul li a {
  color: #4d7462;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}
.mobile-menu.active {
  display: block;
}
/* HAMBURGER ICON (MOBILE) */
.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #4d7462;
  cursor: pointer;
}
