/* HEADER */
.header {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LOGO */
.logo {
  font-weight: bold;
  color: #ff9900;
  font-size: 20px;
}

/* MENU DESKTOP */
.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav a {
  color: #333;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.nav a:hover {
  color: #ff9900;
}

/* UNDERLINE EFFECT */
.nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff9900;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* BURGER */
.burger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  padding: 25px 20px;
  transition: 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
  right: 0;
}

/* HEADER MOBILE */
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-header span:first-child {
  font-size: 18px;
  font-weight: 600;
}

.close {
  font-size: 22px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #ff9900;
  transform: rotate(90deg);
}

/* LIST */
.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin-bottom: 18px;
  border-bottom: 1px solid #f1f1f1;
  padding-bottom: 10px;
  transition: 0.2s;
}

.mobile-menu ul li:hover {
  padding-left: 5px;
}

.mobile-menu a {
  color: #222;
  text-decoration: none;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu a::after {
  content: "›";
  color: #ccc;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: #ff9900;
}

.mobile-menu a:hover::after {
  color: #ff9900;
  transform: translateX(3px);
}

/* OVERLAY */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  z-index: 9998;
  display: none;
}

.overlay.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .burger {
    display: block;
  }
}

/* 🔥 FIX UTAMA: NONAKTIFKAN DI DESKTOP */
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }

  .overlay {
    display: none !important;
  }
}