.elementor-142 .elementor-element.elementor-element-abc6997{--display:flex;overflow:visible;}body:not(.rtl) .elementor-142 .elementor-element.elementor-element-47d43ba{left:3%;}body.rtl .elementor-142 .elementor-element.elementor-element-47d43ba{right:3%;}.elementor-142 .elementor-element.elementor-element-47d43ba{top:30%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-47d43ba *//* Floating menu style default (desktop) */
.floating-menu {
  position: fixed;
  top: 30%;
  left: 20px;
  display: flex;
  flex-direction: column;
  z-index: 9999;
}

/* Tombol hamburger (default: sembunyi di desktop) */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #007bff;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
}


.floating-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  margin: 10px 0;
  transition: all 0.3s ease;
}
.floating-menu a:hover {
  background: #007bff;
  color: #fff;
  width: 150px; /* supaya teks muncul melebar */
  border-radius: 30px;
}
.floating-menu a span {
  display: none;
  margin-left: 10px;
}
.floating-menu a:hover span {
  display: inline-block;
}

/* Responsive: di layar kecil */
@media (max-width: 768px) {
  .floating-menu {
    display: none; /* sembunyikan menu */
    position: fixed;
    top: 70px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    flex-direction: column;
  }
  .floating-menu.show {
    display: flex; /* tampilkan ketika toggle ditekan */
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;/* munculkan hamburger */
  }
}/* End custom CSS */