/* Axo site header — professional sticky nav */
.axo-site-header {
  --ash-navy: #0b1630;
  --ash-ink: #142442;
  --ash-mute: #5c6778;
  --ash-line: rgba(15, 30, 55, 0.08);
  --ash-soft: #f4f6f8;
  font-family: Outfit, Manrope, sans-serif;
}

.axo-site-header .axo-topbar {
  background: var(--ash-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.axo-site-header .axo-topbar a {
  color: inherit;
  transition: color 0.2s;
}

.axo-site-header .axo-topbar a:hover {
  color: #fff;
}

.axo-site-header .axo-topbar-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-brand-orange, #ff6b00);
  opacity: 0.85;
}

.axo-site-header .axo-topbar-cta {
  color: #fff !important;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.axo-site-header .axo-topbar-cta:hover {
  color: var(--color-brand-orange, #ff6b00) !important;
}

.axo-site-header .axo-mainbar {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--ash-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.3s ease, background 0.3s ease, padding 0.3s ease;
}

.dark .axo-site-header .axo-mainbar {
  background: rgba(11, 22, 48, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.axo-site-header .axo-mainbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 40px rgba(11, 22, 48, 0.08);
}

.dark .axo-site-header .axo-mainbar.is-scrolled {
  background: rgba(11, 22, 48, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.axo-site-header .axo-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 1.65rem 0.55rem;
  color: var(--ash-ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s;
}

.dark .axo-site-header .axo-nav-link {
  color: rgba(255, 255, 255, 0.88);
}

.axo-site-header .axo-nav-link:hover,
.axo-site-header .axo-nav-item:hover > .axo-nav-link {
  color: var(--color-brand-orange, #ff6b00);
}

.axo-site-header .axo-nav-link::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0;
  height: 2px;
  background: var(--color-brand-orange, #ff6b00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.axo-site-header .axo-nav-link:hover::after,
.axo-site-header .axo-nav-item:hover > .axo-nav-link::after {
  transform: scaleX(1);
}

.axo-site-header .axo-nav-chevron {
  font-size: 10px;
  opacity: 0.45;
  transition: transform 0.2s;
}

.axo-site-header .axo-nav-item:hover .axo-nav-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.axo-site-header .axo-dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 60;
  min-width: 280px;
  padding-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.axo-site-header .axo-nav-item:hover .axo-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.axo-site-header .axo-dropdown-panel {
  overflow: hidden;
  border: 1px solid var(--ash-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(11, 22, 48, 0.12);
}

.dark .axo-site-header .axo-dropdown-panel {
  background: #12203a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.axo-site-header .axo-dropdown-panel a {
  display: block;
  padding: 12px 18px;
  color: var(--ash-ink);
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--ash-line);
  transition: background 0.15s, color 0.15s;
}

.dark .axo-site-header .axo-dropdown-panel a {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.axo-site-header .axo-dropdown-panel a:last-child {
  border-bottom: 0;
}

.axo-site-header .axo-dropdown-panel a:hover {
  background: var(--ash-soft);
  color: var(--color-brand-orange, #ff6b00);
}

.dark .axo-site-header .axo-dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Services mega */
.axo-site-header .axo-mega {
  width: min(720px, calc(100vw - 48px));
  left: 0;
  transform: translate(0, 8px);
}

.axo-site-header .axo-nav-item:hover .axo-mega {
  transform: translate(0, 0);
}

.axo-site-header .axo-mega-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
}

.axo-site-header .axo-mega-list {
  padding: 10px;
}

.axo-site-header .axo-mega-list a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 12px;
  border: 0;
  border-radius: 10px;
  border-bottom: 0;
}

.axo-site-header .axo-mega-list a em {
  color: var(--color-brand-orange, #ff6b00);
  font: 700 10px/1 Outfit, sans-serif;
  font-style: normal;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.axo-site-header .axo-mega-list a b {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: inherit;
}

.axo-site-header .axo-mega-list a small {
  display: block;
  margin-top: 4px;
  color: var(--ash-mute);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.dark .axo-site-header .axo-mega-list a small {
  color: rgba(255, 255, 255, 0.45);
}

.axo-site-header .axo-mega-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: linear-gradient(160deg, #0b1630 0%, #1a2d4f 100%);
  color: #fff;
}

.axo-site-header .axo-mega-aside span {
  color: var(--color-brand-orange, #ff6b00);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.axo-site-header .axo-mega-aside strong {
  display: block;
  margin-top: 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.axo-site-header .axo-mega-aside p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.55;
}

.axo-site-header .axo-mega-aside button,
.axo-site-header .axo-mega-aside a {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ash-navy);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}

.axo-site-header .axo-mega-aside button:hover,
.axo-site-header .axo-mega-aside a:hover {
  background: var(--color-brand-orange, #ff6b00);
  color: #fff;
  transform: translateY(-1px);
}

.axo-site-header .axo-icon-btn {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--ash-mute);
  transition: background 0.2s, color 0.2s;
}

.axo-site-header .axo-icon-btn:hover {
  background: var(--ash-soft);
  color: var(--ash-ink);
}

.dark .axo-site-header .axo-icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.axo-site-header .axo-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--ash-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}

.dark .axo-site-header .axo-lang-btn {
  color: rgba(255, 255, 255, 0.9);
}

.axo-site-header .axo-lang-btn:hover {
  background: var(--ash-soft);
}

.dark .axo-site-header .axo-lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.axo-site-header .axo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 11px;
  background: var(--ash-navy);
  padding: 11px 16px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.axo-site-header .axo-cta span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-brand-orange, #ff6b00);
  font-size: 11px;
  line-height: 1;
}

.axo-site-header .axo-cta:hover {
  background: var(--color-brand-orange, #ff6b00);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.28);
}

.axo-site-header .axo-cta:hover span {
  background: rgba(255, 255, 255, 0.2);
}

.axo-site-header .axo-burger {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--ash-navy);
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  line-height: 0;
  vertical-align: middle;
}

.axo-site-header .axo-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.22s ease, opacity 0.18s ease;
}

.axo-site-header .axo-burger.is-open .axo-burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.axo-site-header .axo-burger.is-open .axo-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.axo-site-header .axo-burger.is-open .axo-burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.axo-site-header .axo-mobile-sheet {
  border-top: 1px solid var(--ash-line);
  background: #fff;
  max-height: min(78vh, 720px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.dark .axo-site-header .axo-mobile-sheet {
  background: #0b1630;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.axo-site-header .axo-mobile-inner {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
  padding: 16px 0 22px;
}

/* Dil bayrakları — yan yana, eşit */
.axo-site-header .axo-mobile-langs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ash-line);
}

.dark .axo-site-header .axo-mobile-langs {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.axo-site-header .axo-mobile-lang {
  display: inline-flex !important;
  width: auto !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 6px !important;
  border: 1px solid var(--ash-line) !important;
  border-radius: 10px !important;
  border-bottom: 1px solid var(--ash-line) !important;
  background: var(--ash-soft);
  color: var(--ash-ink) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-decoration: none !important;
}

.dark .axo-site-header .axo-mobile-lang {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.axo-site-header .axo-mobile-lang.is-active {
  background: var(--ash-navy) !important;
  border-color: var(--ash-navy) !important;
  color: #fff !important;
}

.axo-site-header .axo-mobile-lang .axo-lang-flag {
  width: 18px;
  height: 18px;
}

.axo-site-header .axo-mobile-nav {
  display: flex;
  flex-direction: column;
}

.axo-site-header .axo-m-item,
.axo-site-header .axo-mobile-nav > a.axo-m-item,
.axo-site-header button.axo-m-item {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 2px;
  border: 0;
  border-bottom: 1px solid var(--ash-line);
  background: transparent;
  color: var(--ash-ink);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.dark .axo-site-header .axo-m-item,
.dark .axo-site-header button.axo-m-item {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.axo-site-header .axo-m-chevron {
  width: 16px;
  height: 16px;
  opacity: 0.4;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.axo-site-header .axo-m-chevron.is-open {
  transform: rotate(180deg);
}

.axo-site-header .axo-mobile-sub {
  display: flex;
  flex-direction: column;
  padding: 4px 0 10px 12px;
}

.axo-site-header .axo-mobile-sub a {
  display: flex;
  width: 100%;
  align-items: center;
  min-height: 40px;
  padding: 8px 2px;
  border-bottom: 1px dashed var(--ash-line);
  color: var(--ash-mute) !important;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.dark .axo-site-header .axo-mobile-sub a {
  border-bottom-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55) !important;
}

.axo-site-header .axo-mobile-sub a:last-child {
  border-bottom: 0;
}

.axo-site-header .axo-mobile-foot {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ash-line);
}

.dark .axo-site-header .axo-mobile-foot {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.axo-site-header .axo-cta--block {
  width: 100%;
  justify-content: center;
}

.axo-site-header .axo-mobile-foot-link {
  display: block;
  text-align: center;
  padding: 10px;
  color: var(--ash-mute) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 1023px) {
  .axo-site-header .axo-desktop-nav {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .axo-site-header .axo-burger {
    display: none !important;
  }
}
