/* NAVIGASI PREMIUM - CHERY MEDAN AMPLAS */
.navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 40rem;
  height: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95); /* TRANSPARAN 95% */
  backdrop-filter: none !important; /* PASTIKAN TIDAK BLUR */
  -webkit-backdrop-filter: none !important;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  display: block !important;
  visibility: visible !important;
}

.navigation.is-active {
  transform: translateX(0) !important;
}

/* HEADER NAVIGASI - TRANSPARAN */
.navigation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-bottom: 2px solid rgba(230, 57, 70, 0.15);
  background: rgba(255, 255, 255, 0.9); /* TRANSPARAN */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  position: sticky;
  top: 0;
  z-index: 5;
}

.navigation-header h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #181b21;
  margin: 0;
}

.close-btn-container {
  margin: 0;
}

.navigation-close-btn {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0.7;
}

.navigation-close-btn:hover {
  transform: rotate(90deg);
  opacity: 1;
}

/* SEARCH BOX - TRANSPARAN */
.navigation-search {
  padding: 2rem 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.85); /* TRANSPARAN */
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.9); /* TRANSPARAN */
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #e63946;
  background: rgba(255, 255, 255, 1);
}

/* MENU UTAMA - TRANSPARAN */
.navigation ul {
  list-style: none;
  padding: 0 2rem;
  margin: 0;
  background: transparent;
}

.navigation ul li {
  margin-bottom: 0.5rem;
  background: transparent;
}

.navigation ul li a {
  display: block;
  padding: 1.2rem 2rem;
  color: #4a4e57;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
}

.navigation ul li a:hover {
  background: rgba(230, 57, 70, 0.1); /* TRANSPARAN */
  color: #e63946;
  transform: translateX(5px);
}

.navigation ul li.link-in-middle a {
  font-weight: 700;
  color: #181b21;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

/* BADGE */
.menu-badge {
  display: inline-block;
  background: #e63946;
  color: white;
  font-size: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-left: 1rem;
}

/* DIVIDER */
.navigation-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.1),
    transparent
  );
  margin: 2rem 3rem;
}

/* SOSIAL MEDIA */
.navigation-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.85); /* TRANSPARAN */
}

.social-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #4a4e57;
}

.social-icon:hover {
  background: #e63946;
  color: white;
  transform: translateY(-3px);
}

/* FOOTER NAVIGASI */
.navigation-footer {
  padding: 2rem 3rem;
  text-align: center;
  background: rgba(249, 249, 249, 0.85); /* TRANSPARAN */
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.navigation-footer p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.navigation-footer a {
  color: #e63946;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.4rem;
}

/* BLUR OVERLAY - TETAP BLUR UNTUK BACKGROUND */
.blur-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px); /* BLUR HANYA UNTUK OVERLAY */
  -webkit-backdrop-filter: blur(5px);
  z-index: 999;
}

.blur-overlay.is-active {
  display: block !important;
}
