.elementor-102 .elementor-element.elementor-element-ece8d85{--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;--margin-top:1vw;--margin-bottom:0vw;--margin-left:0vw;--margin-right:0vw;}.elementor-102 .elementor-element.elementor-element-e3f7071{margin:-4vw 0vw calc(var(--kit-widget-spacing, 0px) + 0vw) 0vw;padding:0px 0px 0px 0px;}.elementor-102:not(.elementor-motion-effects-element-type-background), .elementor-102 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.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-e3f7071 *//* Import Bebas Neue font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Header Base */
.site-header {
  position: absolute;
  z-index: 100;
  top: 55px;
  left: 0;
  right: 0;
  height: 37px;
  display: flex;
  justify-content: center;
}

.header-container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
}

/* CTA Button */
.header-cta {
  position: absolute;
  left: 20px;
  top: 0;
  width: 170px;
  height: 37px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.header-cta:hover {
  opacity: 0.9;
}

/* Navigation Links */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 200;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

/* Logo */
.header-logo {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 37px;
  width: auto;
}

.header-logo .logo-text {
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 110;
  padding: 0;
}
.mobile-menu-btn:hover {
    background-color: transparent;
}
/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(4px);
  z-index: 105;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Panel */
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  background-color: #000;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 106;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-panel.active {
  transform: translateX(0);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 24px 0;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  font-weight: 200;
  text-decoration: none;
  text-align: right;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: #fff;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 24px 0;
  height: 42px;
  background-color: #fff;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.mobile-cta:hover {
  opacity: 0.9;
}

/* Responsive */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .site-header {
    top: 20px;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: flex !important;
  }
  
  .header-logo {
    transform: translateY(-50%) scale(0.9);
    transform-origin: right center;
  }
  
  .header-logo .logo-text {
    font-size: 20px;
  }
}/* End custom CSS */