:root {
  --gold: #F5A623;
  --gold-dark: #D4881A;
  --navy: #371c46;
  --navy-mid: #371c46;
  --white: #FFFFFF;
  --muted: rgba(255,255,255,0.55);
  --border: rgba(255,255,255,0.08);
}

.topbar {
  position: relative;
  background: linear-gradient(90deg,
    #1a0e35 0%,
    #2d1b4e 25%,
    #3a1f5c 50%,
    #2d1b4e 75%,
    #1a0e35 100%
  );
  overflow: hidden;
}

.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 200% at 30% 50%, rgba(192,38,107,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 200% at 80% 50%, rgba(74,37,128,0.25) 0%, transparent 65%);
  pointer-events: none;
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(192,38,107,0.5),
    rgba(245,166,35,0.3),
    rgba(192,38,107,0.5),
    transparent
  );
}

.topbar .topbar-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 9px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .tb-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar .tb-contact-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}

.topbar .tb-contact-item:hover {
  color: var(--white);
}

.topbar .tb-contact-item svg {
  flex-shrink: 0;
  opacity: .75;
  transition: opacity .2s;
}

.topbar .tb-contact-item:hover svg {
  opacity: 1;
}

.topbar .tb-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar .tb-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar .tb-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}

.topbar .tb-social a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.topbar .tb-tracker {
  display: flex;
  align-items: center;
  height: 28px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(245,166,35,0.35);
  transition: border-color .2s;
}

.topbar .tb-tracker:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245,166,35,0.15);
}

.topbar .tb-tracker input {
  background: rgba(255,255,255,0.04);
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  padding: 0 12px;
  width: 148px;
  height: 100%;
  letter-spacing: .04em;
}

.topbar .tb-tracker input::placeholder {
  color: rgba(255,255,255,0.3);
  font-size: 11.5px;
  letter-spacing: .06em;
}

.topbar .tb-tracker button {
  height: 100%;
  padding: 0 14px;
  background: var(--gold);
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background .2s;
  white-space: nowrap;
}

.topbar .tb-tracker button:hover {
  background: var(--gold-dark);
}

.topbar .tb-tracker button svg {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .topbar .tb-contact,
  .topbar .tb-social {
    display: none;
  }

  .topbar .tb-right {
    width: 100%;
    justify-content: center;
  }

  .topbar .tb-tracker {
    width: 100%;
  }

  .topbar .tb-tracker input {
    flex: 1;
    width: auto;
  }

  .topbar .topbar-inner {
    justify-content: center;
  }
}