.mlod-menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.mlod-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--mlod-text);
  margin: 6px 0;
  transition: 0.4s;
}
.mlod-side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--mlod-bg);
  box-shadow: -3px 0 10px rgba(0,0,0,0.1);
  transition: right 0.5s ease;
  z-index: 1000;
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Raleway', sans-serif;
}
.mlod-side-menu.active { right: 0; }
.mlod-side-menu a {
  text-decoration: none;
  color: var(--mlod-text);
  font-size: 18px;
  margin: 15px 0;
  transition: color 0.3s;
}
.mlod-side-menu a:hover { color: var(--mlod-btn); }
.mlod-contact-btn {
  margin-top: 25px;
  background-color: var(--mlod-btn);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.mlod-contact-btn:hover {
  background-color: var(--mlod-text);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .mlod-side-menu { width: 100%; }
}
