.elementor-135 .elementor-element.elementor-element-6f78c0d{--display:flex;--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-03f0521 *//* FONT */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

:root {
  --accent-color: #e30613; /* merah sesuai branding */
  --text-color: #fff;
  --bg-gradient: linear-gradient(to right, #1a1a1a, #000);
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.ts-header {
  background: var(--bg-gradient);
  padding: 32px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.ts-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.ts-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ts-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.ts-logo span {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

/* NAV MENU */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-menu ul li a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.3s;
}
.nav-menu ul li a:hover,
.nav-menu ul li a.active {
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 3px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 65px;
    right: 40px;
    background: #111;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  }
  .nav-menu ul {
    flex-direction: column;
    gap: 15px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu.active {
    display: block;
  }
}

/* Logo responsive size */
@media (max-width: 1024px) {
  .ts-logo img { height: 38px; }
  .ts-logo span { font-size: 14px; }
}
@media (max-width: 768px) {
  .ts-logo img { height: 32px; }
  .ts-logo span { font-size: 13px; }
}/* End custom CSS */