/* ═══════════════════════════════════════════════
   TOP CONTACT BAR
═══════════════════════════════════════════════ */
#topbar {
  background-color: #fb8600;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 0;
  /* Smooth hide animation */
  max-height: 50px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

#topbar.topbar-hidden {
  max-height: 0;
  opacity: 0;
  padding: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Left contact group */
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-contact a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.topbar-contact a:hover {
  opacity: 0.8;
}

.topbar-contact i {
  font-size: 14px;
}

/* Right social group */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-social a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.topbar-social a:hover {
  opacity: 0.65;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: color-mix(in srgb, #fb8600, transparent 20%);
  border-color: #fb8600;
}

/* ═══════════════════════════════════════════════
   STICKY NAV — only the header wrapper is sticky,
   the topbar scrolls away normally above it
═══════════════════════════════════════════════ */
#site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 997;
}

/* Override any sticky-top the template may add to #header itself */
#header.header {
  position: relative !important;
  top: auto !important;
}

/* Mobile: stack contact info */
@media (max-width: 576px) {
  .topbar-contact {
    gap: 12px;
  }

  .topbar-contact a span,
  .topbar-contact a:last-child {
    display: none;
  }

  .topbar-contact a:first-child {
    display: flex;
  }
}