/* Header that mirrors the original WEBUILD layout */
:root {
  --header-dark: #040f28;
  --header-accent: #fd5d14;
  --header-light: #f4f6f8;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}

.site-header__info {
  border-bottom: 1px solid rgba(4, 15, 40, 0.08);
  background: #fff;
}

.site-header__info-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__info-block {
  display: flex;
  align-items: center;  font-size: 0.9rem;
  gap: 0.8rem;
  flex: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--header-dark);
  padding-left: 1.25rem;
  border-left: 1px solid rgba(4, 15, 40, 0.1);
}

.site-header__info-block:first-child {
  border-left: none;
  padding-left: 0;
}

.info-icon {
  font-size: 2.25rem;
  color: var(--header-accent);
  line-height: 1;
}

.info-label {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.info-value {
  margin: 0;
  font-size: 0.9rem;
  text-transform: none;
  color: #5b6477;
}

.site-header__nav {
  background: var(--header-dark);
  background-image: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 6px 6px;
  box-shadow: 0 12px 20px rgba(4, 15, 40, 0.25);
}

.site-header__nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 3rem;
  min-height: 90px;
  display: flex;
  align-items: center;  font-size: 0.9rem;
  gap: 1.5rem;
  position: relative;
}

.brand-mark {
  display: inline-flex;
  align-items: center;  font-size: 0.9rem;
  gap: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.12em;
}

.brand-icon {
  font-size: 2.4rem;
  color: var(--header-accent);
}

.menu-toggle {
  width: 54px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;  font-size: 0.9rem;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 4px;
  margin-left: auto;
}

.menu-toggle__bar {
  width: 26px;
  height: 3px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .menu-toggle__bar:first-child {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.open .menu-toggle__bar:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;  font-size: 0.9rem;
  gap: 0.5rem;
  margin-left: auto;
  flex: 1;
  justify-content: flex-end;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a,
.nav-links button.dropdown-toggle {
  position: relative;
  padding: 36px 16px;
  color: var(--header-light);
  border: none;
  background: transparent;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.is-active,
.nav-links button.dropdown-toggle:hover,
.nav-links button.dropdown-toggle.is-active {
  color: var(--header-accent);
}

.nav-dropdown {
  position: relative;
}

.dropdown-caret {
  margin-left: 0.35rem;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;  font-size: 0.9rem;
  color: inherit;
}

.nav-dropdown .dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 20px 35px rgba(4, 15, 40, 0.25);
  display: none;
  flex-direction: column;
  padding: 0.5rem 0;
  z-index: 20;
}

.nav-dropdown.open .dropdown-panel {
  display: flex;
}

.nav-links .nav-dropdown .dropdown-panel a {
  padding: 0.75rem 1.5rem !important;
  color: var(--header-dark) !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.05em !important;
  display: block !important;
  font-family: "Open Sans", sans-serif !important;
  text-decoration: none !important;
}

.nav-dropdown .dropdown-panel a:hover,
.nav-dropdown .dropdown-panel a.is-active {
  background: rgba(253, 93, 20, 0.12);
}

.quote-link {
  background: var(--header-accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 1.15rem 2.5rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;  font-size: 0.9rem;
  justify-content: center;
  margin-left: 1rem;
}

.quote-link i {
  margin-left: 0.4rem;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
    margin-left: 0;
  }
}

@media (max-width: 991.98px) {
  .site-header__info {
    display: none;
  }

  .site-header__nav-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
  }

  #mobile-menu-btn {
    order: 2;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    background: rgba(4, 15, 40, 0.96);
    order: 3;
    padding: 0.5rem 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links button.dropdown-toggle {
    width: 100%;
    padding: 0.75rem 0;
  }



  .nav-dropdown .dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    padding: 0;
  }

  .quote-link {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    order: 4;
    justify-content: center;
  }
}

body.gjs-dashed .nav-links {
  display: flex !important;
  background: transparent;
}

body.gjs-dashed #mobile-menu-btn {
  display: none !important;
}





