/* ===== Professional Header ===== */
.header-pro {
  position: relative;
  z-index: 999;
  margin-bottom: 0;
}

/* Reduce hero top padding since header no longer overlaps */
.hero-wrapper.style1 {
  padding-top: 50px !important;
}

.header-pro__topbar { display: none !important; }

/* Top bar */
.header-pro__topbar {
  background: #0f0d1d;
  padding: 9px 0;
}
.header-pro__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-pro__topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-pro__topbar-left li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}
.header-pro__topbar-left li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.header-pro__topbar-left li a:hover { color: #fff; }
.header-pro__topbar-left li i {
  color: #384bff;
  margin-right: 6px;
  font-size: 12px;
}
.header-pro__topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-pro__topbar-right a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.header-pro__topbar-right a:hover { color: #fff; }
.header-pro__topbar-right a i { margin-right: 5px; }
.header-pro__topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

/* Main nav */
.header-pro__main {
  background: #fff;
  border-bottom: 1px solid rgba(15, 13, 29, 0.07);
  transition: box-shadow 0.3s;
}
.header-pro__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.header-pro__logo img {
  height: 36px;
  width: auto;
}
.header-pro__nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-pro__nav ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #0f0d1d;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
  padding-bottom: 2px;
}
.header-pro__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #384bff;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}
.header-pro__nav ul li a:hover { color: #384bff; }
.header-pro__nav ul li a:hover::after { transform: scaleX(1); }

/* Right actions */
.header-pro__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-pro__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #0f0d1d;
  text-decoration: none;
  transition: color 0.2s;
}
.header-pro__phone:hover { color: #384bff; }
.header-pro__phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(56, 75, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #384bff;
  font-size: 13px;
  flex-shrink: 0;
}
.header-pro__cta {
  display: none !important;
}
.header-pro__cta-hidden {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #384bff;
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.header-pro__cta:hover {
  background: #18185e;
  transform: translateY(-1px);
}
.header-pro__cta i { font-size: 13px; }
.header-pro__hamburger {
  cursor: pointer;
  font-size: 22px;
  color: #0f0d1d;
  line-height: 1;
}

/* Sticky */
.sticky.header-pro {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: stickyAni 0.4s ease;
  margin-bottom: 0;
}
.sticky.header-pro .header-pro__topbar { display: none !important; }
.sticky.header-pro .header-pro__main {
  box-shadow: 0 4px 24px rgba(15, 13, 29, 0.12);
}

/* Language dropdown (injected by i18n.js into .header-right) */
.header-pro__actions #traveltech-lang-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #0f0d1d;
  text-decoration: none;
  padding: 7px 11px;
  border: 1px solid #e0e3ee;
  border-radius: 6px;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.header-pro__actions #traveltech-lang-dropdown .dropdown-toggle::after { display: none; }
.header-pro__actions #traveltech-lang-dropdown .dropdown-toggle:hover {
  border-color: #384bff;
  color: #384bff;
}
.header-pro__actions #traveltech-lang-dropdown .dropdown-menu {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 13, 29, 0.12);
  border: 1px solid #f0f0f0;
  min-width: 100px;
  padding: 4px;
}
.header-pro__actions #traveltech-lang-dropdown .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 4px;
  transition: background 0.15s;
}
.header-pro__actions #traveltech-lang-dropdown .dropdown-item.active,
.header-pro__actions #traveltech-lang-dropdown .dropdown-item:hover {
  background: #384bff;
  color: #fff;
}

/* Responsive */
@media (max-width: 1199px) {
  .header-pro__nav { display: none; }
  .header-pro__cta { display: none; }
}
@media (max-width: 767px) {
  .header-pro__topbar { display: none; }
  .header-pro__inner { padding: 12px 0; }
  .header-pro__phone .header-pro__phone-text { display: none; }
}
@media (max-width: 575px) {
  .header-pro__phone { display: none; }
}
