.elementor-6650 .elementor-element.elementor-element-9da392c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;border-style:none;--border-style:none;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-40fa74b *//* === FONT & VARIABEL UTAMA === */
.custom-header-wrapper {
  font-family: sans-serif; /* Ganti dengan font Anda */
  background-color: var(--header-bg);
  border-bottom: 1px solid var(--border-color);
  width: 100%;
}

.custom-header-wrapper .custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 40px;
  min-height: 70px;
}

/* === PENGATURAN TAMPILAN DESKTOP VS MOBILE === */
.custom-header-wrapper .header-mobile,
.custom-header-wrapper .mobile-nav-panel,
.custom-header-wrapper .mobile-nav-overlay {
  display: none;
}
.custom-header-wrapper .header-desktop {
  display: flex;
}

@media (max-width: 766px) {
  .custom-header-wrapper .header-desktop {
    display: none;
  }
  .custom-header-wrapper .header-mobile {
    display: flex;
  }
  .custom-header-wrapper .custom-header {
    padding: 0 20px;
  }
}

/* === STRUKTUR KOLOM === */
.custom-header-wrapper .header-column {
  display: flex;
  align-items: stretch;
  height: 100%;
}
.custom-header-wrapper .header-desktop .left {
  flex-basis: 25%;
  justify-content: flex-start;
}
.custom-header-wrapper .header-desktop .center {
  flex-basis: 50%;
  justify-content: center;
}
.custom-header-wrapper .header-desktop .right {
  flex-basis: 25%;
  justify-content: flex-end;
}
.custom-header-wrapper .header-mobile .left {
  flex-basis: 15%;
  justify-content: flex-start;
}
.custom-header-wrapper .header-mobile .center {
  flex-basis: 70%;
  justify-content: center;
}
.custom-header-wrapper .header-mobile .right {
  flex-basis: 15%;
  justify-content: flex-end;
}

/* === STYLE ITEM HEADER === */
.custom-header-wrapper .header-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
}
.custom-header-wrapper .header-item svg {
  color: var(--text-color);
  transition: color var(--transition-fast);
}
.custom-header-wrapper .logo-item {
  padding: 10px 0;
}
.custom-header-wrapper .logo-svg {
  height: 28px;
  width: auto;
}

/* === EFEK HOVER & AKTIF (DESKTOP ONLY) === */
@media (min-width: 767px) {
  .custom-header-wrapper .header-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--active-color);
    transition: width var(--transition-fast);
  }
  .custom-header-wrapper .header-item:hover::after,
  .custom-header-wrapper .dropdown-container.open .header-item::after {
    width: 100%;
  }

  .custom-header-wrapper .header-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--active-color);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
    z-index: -1;
  }
  .custom-header-wrapper .header-item.active::before {
    transform: translateY(0);
  }
  .custom-header-wrapper .header-item.active,
  .custom-header-wrapper .header-item.active svg {
    color: var(--text-inverse);
  }
}

/* === DROPDOWN DESKTOP === */
.custom-header-wrapper .dropdown-container {
  position: relative;
}
.custom-header-wrapper .desktop-dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background-color: var(--header-bg);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 5px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.custom-header-wrapper .dropdown-container.open .desktop-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-header-wrapper .dropdown-item {
  width: 100%;
  justify-content: flex-start;
}

/* === PANEL NAVIGASI MOBILE === */
.custom-header-wrapper .mobile-nav-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 80%;
  height: 100vh;
  padding: 100px 30px 30px;
  background-color: var(--header-bg);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}
.custom-header-wrapper .mobile-nav-link {
  font-size: 20px;
  color: var(--text-color);
  text-decoration: none;
  padding: 15px 0;
}
.custom-header-wrapper .mobile-nav-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 15px 0;
}
.custom-header-wrapper .mobile-nav-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-medium), visibility var(--transition-medium);
}
body.mobile-nav-open .mobile-nav-panel {
  transform: translateX(0);
}
body.mobile-nav-open .mobile-nav-overlay {
  opacity: 1;
  visibility: visible;
}/* End custom CSS */