/* ═════════════════ NAVBAR ═════════════════ */
.navbar {
  height: 130px;
  background: transparent;
  display: flex;
  align-items: center;
  padding: 0 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* LOGO */
.navbar-logo img {
  height: 75px;
  object-fit: contain;
}

/* MENU (DESKTOP) */
.navbar-item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 56px;
  list-style: none;
}

.navbar-item a {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: 0.2s;
}

.navbar-item a:hover { color: #17b8a6; }
.navbar-item li.active a { color: #17b8a6; font-weight: 700; }

/* RIGHT SIDE */
.navbar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LANGUAGE */
.navbar-lang {
  display: flex;
  border: 2px solid #17b8a6;
  border-radius: 8px;
  overflow: hidden;
}

.navbar-lang button {
  padding: 8px 12px;
  border: none;
  background: transparent;
  font-weight: 700;
  color: #17b8a6;
  cursor: pointer;
}

.navbar-lang button.active {
  background: #17b8a6;
  color: #fff;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

/* ═════════════════ RESPONSIVE ═════════════════ */

/* ≤1280 */
@media (max-width: 1280px) {
  .navbar {
    padding: 0 50px;
  }

  .navbar-item a {
    font-size: 16px;
    font-weight: 500;
  }

  .navbar-item {
    gap: 35px;
  }
}

/* ≤1024 */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 35px;
  }

  .navbar-item a {
    font-size: 14px;
    font-weight: 500;
  }

  .navbar-item {
    gap: 25px;
  }
}

/* ≤768 (🔥 MOBILE MODE) */
@media (max-width: 768px) {

  .navbar {
    height: 90px;
    padding: 0 25px;
  }

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: flex;
  }

  /* MENU JADI DROPDOWN */
  .navbar-item {
    position: fixed;
    top: 90px;
    left: 0;
    transform: none;

    width: 100%;
    background: #fff;

    flex-direction: column;
    align-items: center;
    gap: 25px;

    padding: 30px 0;

    display: none;
  }

  /* ACTIVE MENU */
  .navbar-item.active {
    display: flex;
  }

  .navbar-item a {
    font-size: 14px;
  }
}

/* ≤480 */
@media (max-width: 480px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar-item a {
    font-size: 12px;
    font-weight: 500;
  }

  .navbar-logo img {
    height: 60px;
  }

  .navbar-lang button {
    padding: 6px 10px;
    font-size: 12px;
  }
}