/**
 * JAMS Header - matched to GACOR (gtkit.rometheme.pro/gacor)
 * Structure: white top bar + dark nav; logo / menu / CTA inside shared container
 */

body.jams-gacor-header {
  --jams-orange: #00aeef;
  --jams-orange-hover: #0095d0;
  --jams-dark: #0b1220;
  --jams-white: #ffffff;
  --jams-muted: #5f6b7a;
  --jams-font: "DM Sans", "Montserrat", Arial, Helvetica, sans-serif;
  --jams-nav-h: 70px;
  --jams-pad: 40px;
  --jams-container: 1320px;
}

/* Scrollbar gutter matches dark nav (avoids white strip in classic scrollbars / DevTools) */
html:has(body.jams-gacor-header) {
  background-color: #0b1220;
  scrollbar-color: #5a5a5a #0b1220;
}

body.jams-gacor-header {
  background-color: #ffffff;
}

/* ========== TOP BAR (white) ========== */

body.jams-gacor-header .jams-top-bar {
  background: var(--jams-white);
  border-bottom: 1px solid #eee;
  font-family: var(--jams-font);
  font-size: 14px;
  color: var(--jams-muted);
}

body.jams-gacor-header .jams-top-bar__inner {
  max-width: var(--jams-container);
  margin: 0 auto;
  padding: 8px var(--jams-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

body.jams-gacor-header .jams-top-bar__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

body.jams-gacor-header .jams-top-bar__item {
  color: var(--jams-muted);
  text-decoration: none;
  transition: color 0.2s;
}

body.jams-gacor-header .jams-top-bar__item:hover {
  color: var(--jams-orange);
}

body.jams-gacor-header .jams-top-bar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.jams-gacor-header .jams-top-bar__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--jams-orange);
  color: var(--jams-white);
  text-decoration: none;
  transition: background 0.2s;
}

body.jams-gacor-header .jams-top-bar__social-link:hover {
  background: var(--jams-orange-hover);
  color: var(--jams-white);
}

/* ========== HEADER SHELL (top bar + dark nav stick together) ========== */

body.jams-gacor-header #header-outer {
  position: sticky !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10000;
  background: var(--jams-dark);
  box-shadow: none !important;
  border: none !important;
  border-bottom: none !important;
  outline: none !important;
  transform: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.jams-gacor-header #header-space {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove Salient gap between header and first content/slider */
body.jams-gacor-header .container-wrap {
  padding-top: 0;
}

body.jams-gacor-header #header-outer #top,
body.jams-gacor-header #header-outer #top .container,
body.jams-gacor-header #header-outer #top .row,
body.jams-gacor-header #header-outer.transparent,
body.jams-gacor-header #header-outer[data-transparent-header="true"],
body.jams-gacor-header #header-outer[data-permanent-transparent="1"] {
  background: var(--jams-dark);
}

body.jams-gacor-header #header-outer #top {
  padding: 0;
  height: var(--jams-nav-h);
  min-height: var(--jams-nav-h);
  max-height: var(--jams-nav-h);
}

/* Shared container: logo + menu + CTA aligned with top bar */
body.jams-gacor-header #header-outer #top .container {
  max-width: var(--jams-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--jams-pad);
  float: none;
  box-sizing: border-box;
}

body.jams-gacor-header #header-outer #top > .container > .row {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin: 0;
  height: var(--jams-nav-h);
  min-height: var(--jams-nav-h);
  max-height: var(--jams-nav-h);
  float: none;
}

body.jams-gacor-header #header-outer #top .col.span_3,
body.jams-gacor-header #header-outer #top .col.span_9 {
  width: auto;
  margin: 0;
  padding: 0;
  float: none;
  position: static;
}

body.jams-gacor-header #header-outer #top .col.span_3 {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 16px;
}

body.jams-gacor-header #header-outer #top .col.span_9 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
}

/* ========== LOGO - single clean image ========== */

body.jams-gacor-header #header-outer #logo {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
}

body.jams-gacor-header #header-outer #logo .jams-header-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* ========== NAV ========== */
/* Inside container: logo → menu ····· grow ····· CTA at container right */

body.jams-gacor-header #header-outer #top nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  position: static;
  font-family: var(--jams-font);
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  float: none;
  position: static;
  left: auto;
  right: auto;
  transform: none;
  gap: 0;
}

body.jams-gacor-header #header-outer #top nav > ul.buttons {
  display: flex;
  align-items: stretch;
  /* Flush CTA to viewport/container right edge (cancel container pad) */
  margin: 0 calc(-1 * var(--jams-pad)) 0 auto !important;
  padding: 0;
  flex: 0 0 auto;
  float: none;
  position: static;
  left: auto;
  right: auto;
}

body.jams-gacor-header #header-outer #top nav .sf-menu > li {
  margin: 0;
  padding: 0;
  float: none;
  position: relative;
  display: flex;
  align-items: stretch;
  list-style: none;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  /* Kill Salient theme spacing (often margin: 0 22px) that overflows mid-desktop */
  margin: 0 !important;
  height: var(--jams-nav-h);
  min-height: 0;
  max-height: var(--jams-nav-h);
  color: var(--jams-orange) !important;
  font-family: var(--jams-font, "DM Sans", sans-serif) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none;
  text-transform: none !important;
  white-space: nowrap;
  background: transparent;
  opacity: 1 !important;
  line-height: 1.2 !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li:first-child > a {
  padding-left: 8px;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a span {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-transform: inherit !important;
}

/* Top-level hover + active + parent of active page */
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:hover,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:focus,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.sfHover > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-item > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_item > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-ancestor > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-parent > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_ancestor > a,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_parent > a {
  color: var(--jams-white) !important;
  opacity: 1 !important;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:hover .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:focus .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.sfHover > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-item > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_item > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-ancestor > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-parent > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_ancestor > a .menu-title-text {
  color: var(--jams-white) !important;
}

/* Orange underline highlight on hover / active */
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 3px;
  background: var(--jams-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
  pointer-events: none;
  z-index: 1;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li:first-child > a::before {
  left: 8px;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:hover::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a:focus::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.sfHover > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-item > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_item > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-ancestor > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current-menu-parent > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_ancestor > a::before,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.current_page_parent > a::before {
  transform: scaleX(1);
}

/* Kill Salient underlines / dividers (keep our ::before highlight) */
body.jams-gacor-header #header-outer #top nav .sf-menu > li > a::after,
body.jams-gacor-header #header-outer #top nav .sf-menu > li > a .menu-title-text::after,
body.jams-gacor-header #header-outer:not([data-format="left-header"]) #top > .container > .row nav > ul > li a::after {
  display: none;
  content: none;
  width: 0;
  height: 0;
  background: none;
  border: none;
  transform: none;
}

body.jams-gacor-header #header-outer #top nav .sf-menu > li.menu-item-has-children > a .sf-sub-indicator {
  display: none !important;
}

/*
 * Dropdown caret on the <a> flex row (beside label), not on .menu-title-text::after.
 * Salient positions title ::after absolutely for animated underlines — that pinned
 * the triangle under the first letter.
 */
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children > a::after,
body.jams-gacor-header #header-outer:not([data-format="left-header"]) #top > .container > .row nav > ul > li.menu-item-has-children > a::after {
  content: "" !important;
  display: block !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: 0 !important;
  height: 0 !important;
  margin: 1px 0 0 2px !important;
  padding: 0 !important;
  border-style: solid !important;
  border-width: 5px 4.5px 0 !important;
  border-color: currentColor transparent transparent !important;
  background: none !important;
  box-shadow: none !important;
  transform: none !important;
  opacity: 0.85 !important;
  flex: 0 0 auto;
  align-self: center;
  pointer-events: none;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children > a:hover::after,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children > a:focus::after,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children.sfHover > a::after,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children.current-menu-item > a::after,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children.current-menu-ancestor > a::after,
body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li.menu-item-has-children.current-menu-parent > a::after {
  opacity: 1 !important;
}

/* ========== Dropdown submenus (Services / Products / About) ========== */

body.jams-gacor-header #header-outer #top nav .sf-menu > li > ul.sub-menu,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul {
  background: #ffffff !important;
  border: none !important;
  border-top: 3px solid var(--jams-orange) !important;
  border-radius: 0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22) !important;
  padding: 10px 0 !important;
  margin: 0 !important;
  min-width: 260px !important;
  left: 0 !important;
  top: 100% !important;
  overflow: hidden;
  z-index: 10000;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li {
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  background: transparent !important;
  border: none !important;
  list-style: none !important;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li a,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li a .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li a span {
  display: block !important;
  width: 100%;
  box-sizing: border-box;
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.35 !important;
  color: var(--gacor-heading, #0b1220) !important;
  font-family: var(--jams-font, "DM Sans", sans-serif) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a {
  position: relative;
  padding: 13px 22px 13px 26px !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    padding-left 0.2s ease !important;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--jams-orange);
  transition: width 0.2s ease;
}

/* Submenu hover + active */
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:hover,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:focus,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.sfHover > a,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-item > a,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current_page_item > a,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-ancestor > a,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-parent > a {
  color: var(--jams-orange) !important;
  background: #f0f9ff !important;
  padding-left: 30px !important;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:hover::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:focus::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.sfHover > a::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-item > a::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current_page_item > a::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-ancestor > a::before,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-parent > a::before {
  width: 3px;
}

body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:hover .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li > a:focus .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.sfHover > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-item > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current_page_item > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-ancestor > a .menu-title-text,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li.current-menu-parent > a .menu-title-text {
  color: var(--jams-orange) !important;
}

/* Nested third-level menus (if any) */
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li ul {
  top: 0 !important;
  left: 100% !important;
  margin-left: 0 !important;
  border-top: none !important;
  border-left: 3px solid var(--jams-orange) !important;
}

/* Kill Salient serif / decorative dropdown rules */
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li a::after,
body.jams-gacor-header #header-outer #top nav .sf-menu li ul li a .menu-title-text::after {
  display: none !important;
  content: none !important;
}

/* ========== CTA - full-height orange block, container right edge ========== */

body.jams-gacor-header .jams-header-cta-wrap {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}

body.jams-gacor-header #header-outer #top nav > ul.buttons > li.jams-header-cta-wrap > a.jams-header-cta,
body.jams-gacor-header #header-outer a.jams-header-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: stretch;
  height: var(--jams-nav-h) !important;
  min-height: 0;
  max-height: var(--jams-nav-h);
  padding: 0 36px !important;
  margin: 0 !important;
  background-color: var(--jams-orange) !important;
  background-image: none !important;
  color: var(--jams-white) !important;
  font-family: var(--jams-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transition: background-color 0.2s;
}

body.jams-gacor-header #header-outer #top nav > ul.buttons > li.jams-header-cta-wrap > a.jams-header-cta:hover,
body.jams-gacor-header #header-outer a.jams-header-cta:hover,
body.jams-gacor-header #header-outer a.jams-header-cta:focus {
  background-color: var(--jams-orange-hover) !important;
  color: var(--jams-white) !important;
  opacity: 1 !important;
}

body.jams-gacor-header #header-outer #top nav .sf-menu a {
  opacity: 1;
}

/* ========== MOBILE ========== */

body.jams-gacor-header #header-outer .slide-out-widget-area-toggle a .lines,
body.jams-gacor-header #header-outer .slide-out-widget-area-toggle a .lines::before,
body.jams-gacor-header #header-outer .slide-out-widget-area-toggle a .lines::after {
  background-color: var(--jams-white);
}

body.jams-gacor-header .jams-mobile-header-cta {
  display: none;
  background: var(--jams-orange);
  color: #ffffff !important;
  font-family: var(--jams-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  text-decoration: none;
  margin-right: 8px;
}

body.jams-gacor-header .jams-mobile-header-cta:hover,
body.jams-gacor-header .jams-mobile-header-cta:focus,
body.jams-gacor-header .jams-mobile-header-cta:visited,
body.jams-gacor-header .jams-mobile-header-cta:active {
  color: #ffffff !important;
  background: var(--jams-orange-hover);
  text-decoration: none;
}

body.jams-gacor-header .jams-mobile-lead-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--jams-dark);
  border-top: 2px solid var(--jams-orange);
}

body.jams-gacor-header .jams-mobile-lead-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 10px;
  color: var(--jams-white);
  text-decoration: none;
  font-family: var(--jams-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

body.jams-gacor-header .jams-mobile-lead-bar__btn:last-child {
  border-right: none;
}

body.jams-gacor-header .jams-mobile-lead-bar__btn--quote {
  background: var(--jams-orange);
  flex: 1.3;
}

body.jams-gacor-header .jams-mobile-lead-bar__btn--whatsapp {
  background: #25d366;
}

@media (max-width: 999px) {
  body.jams-gacor-header {
    --jams-nav-h: 64px;
    --jams-pad: 16px;
    --jams-header-gutter: 16px;
    padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
  }

  body.jams-gacor-header .jams-top-bar__address {
    display: none;
  }

  /* Shared gutters: contacts/logo left, social/menu right line up */
  body.jams-gacor-header .jams-top-bar {
    display: flex;
    align-items: center;
    min-height: 48px;
  }

  body.jams-gacor-header .jams-top-bar__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--jams-header-gutter);
    gap: 12px;
    min-height: 48px;
    box-sizing: border-box;
  }

  body.jams-gacor-header .jams-top-bar__left {
    width: auto;
    flex: 1 1 auto;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 16px;
    font-size: 13px;
    line-height: 1;
    min-width: 0;
  }

  body.jams-gacor-header .jams-top-bar__item {
    line-height: 1;
    white-space: nowrap;
  }

  body.jams-gacor-header .jams-top-bar__social {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  body.jams-gacor-header .jams-top-bar__social-link {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    line-height: 0;
  }

  body.jams-gacor-header .jams-top-bar__social-link svg {
    display: block;
    width: 12px;
    height: 12px;
  }

  body.jams-gacor-header #header-outer {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 !important;
  }

  body.jams-gacor-header #header-outer #top {
    overflow: hidden;
    height: var(--jams-nav-h) !important;
    min-height: var(--jams-nav-h) !important;
    max-height: var(--jams-nav-h) !important;
  }

  /* Same left/right gutter as top bar so edges align */
  body.jams-gacor-header #header-outer #top .container {
    padding: 0 var(--jams-header-gutter) !important;
    max-width: none !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }

  body.jams-gacor-header #header-outer #top > .container > .row {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    align-items: stretch !important;
  }

  /* Beat Salient absolute mobile columns so the dark bar stays full-bleed */
  body.jams-gacor-header #header-outer #top .col.span_3,
  body.jams-gacor-header #header-outer #top .col.span_9 {
    position: static !important;
    float: none !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 0 !important;
  }

  body.jams-gacor-header #header-outer #top .col.span_3 {
    display: flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    padding-right: 12px !important;
    height: 100% !important;
  }

  body.jams-gacor-header #header-outer #top .col.span_9 {
    display: flex !important;
    align-items: stretch !important;
    justify-content: flex-end !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    height: 100% !important;
  }

  body.jams-gacor-header #header-outer #top .nectar-mobile-only.mobile-header,
  body.jams-gacor-header #header-outer #top .nectar-mobile-only.mobile-header .inner {
    display: flex !important;
    align-items: stretch !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.jams-gacor-header #header-outer #logo .jams-header-logo {
    height: 36px;
    max-width: 140px;
  }

  body.jams-gacor-header .jams-mobile-lead-bar {
    display: flex;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  /* Full-height orange CTA - edge to edge of the dark nav */
  body.jams-gacor-header .jams-mobile-header-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    align-self: stretch !important;
    height: 100% !important;
    max-height: none !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 18px !important;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1 !important;
    box-sizing: border-box;
    color: #ffffff !important;
    background: var(--jams-orange) !important;
  }

  body.jams-gacor-header .jams-mobile-header-cta:hover,
  body.jams-gacor-header .jams-mobile-header-cta:focus {
    color: #ffffff !important;
    background: var(--jams-orange-hover) !important;
  }

  body.jams-gacor-header #header-outer .slide-out-widget-area-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: stretch !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--jams-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    box-sizing: border-box;
  }

  body.jams-gacor-header #header-outer .slide-out-widget-area-toggle > div,
  body.jams-gacor-header #header-outer .slide-out-widget-area-toggle a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.jams-gacor-header .jams-header-cta-wrap {
    display: none;
  }

  /* Header already has Get a Quote on tablet - lead bar keeps Call + WhatsApp only */
  body.jams-gacor-header .jams-mobile-lead-bar__btn--quote {
    display: none;
  }
}

/* Phone: compact header CTA off; lead bar regains Quote */
@media (max-width: 640px) {
  body.jams-gacor-header #header-outer #logo .jams-header-logo {
    height: 32px;
    max-width: 120px;
  }

  body.jams-gacor-header .jams-top-bar__inner {
    justify-content: center;
    padding: 8px var(--jams-header-gutter, 14px);
    min-height: 0;
  }

  body.jams-gacor-header .jams-top-bar__left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 12px;
  }

  /* Phone: keep top bar compact - hide social (contacts only) */
  body.jams-gacor-header .jams-top-bar__social {
    display: none;
  }

  body.jams-gacor-header #header-outer #top .container {
    padding: 0 0 0 12px !important;
  }

  body.jams-gacor-header .jams-mobile-header-cta {
    display: none !important;
  }

  body.jams-gacor-header .jams-mobile-lead-bar__btn--quote {
    display: flex;
  }

  body.jams-gacor-header .jams-mobile-lead-bar__btn {
    font-size: 11px;
    letter-spacing: 0.04em;
    padding: 0 8px;
  }

  body.jams-gacor-header #header-outer .slide-out-widget-area-toggle {
    width: 52px !important;
    min-width: 52px !important;
  }
}

/* Mid desktop: compress nav so CTA never clips (1000–1440) */
@media (min-width: 1000px) and (max-width: 1440px) {
  body.jams-gacor-header {
    --jams-pad: 28px;
  }

  body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a {
    padding: 0 12px;
    font-size: 15px !important;
  }

  body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li:first-child > a {
    padding-left: 6px;
  }

  body.jams-gacor-header #header-outer #top nav > ul.buttons > li.jams-header-cta-wrap > a.jams-header-cta,
  body.jams-gacor-header #header-outer a.jams-header-cta {
    padding: 0 28px !important;
    font-size: 12px !important;
  }
}

@media (min-width: 1000px) and (max-width: 1200px) {
  body.jams-gacor-header {
    --jams-pad: 20px;
  }

  body.jams-gacor-header #header-outer #top nav > ul.sf-menu > li > a {
    padding: 0 8px;
    font-size: 14px !important;
  }

  body.jams-gacor-header #header-outer #top .col.span_3 {
    padding-right: 10px;
  }

  body.jams-gacor-header #header-outer #top nav > ul.buttons > li.jams-header-cta-wrap > a.jams-header-cta,
  body.jams-gacor-header #header-outer a.jams-header-cta {
    padding: 0 20px !important;
    font-size: 11px !important;
    letter-spacing: 0.06em !important;
  }
}
