.hb-top-bar {
  background: linear-gradient(135deg, #01176b 0, #1e3a8a 100%);
  color: #fff;
  padding: 6px 0;
  font-size: 14px;
  transition: all .3s ease;
  position: relative;
  z-index: 999;
}

.hb-logo a {
  display: flex;
  align-items: center;
}

.hb-top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  transition: all .3s ease;
}

.hb-top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.hb-contact-info {
  display: flex;
  gap: 30px;
  align-items: center;
}

.hb-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: opacity .3s ease;
}

.hb-contact-item:hover {
  opacity: .8;
}

.hb-contact-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.hb-service-badge {
  background: 0 0;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: none;
  outline: 0;
}

.hb-badge-icon {
  width: 16px;
  height: 16px;
}

.hb-main {
  position: sticky !important;
  top: 0;
  z-index: 1000 !important;
  background: #fff;
}

.hb-main.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.hb-header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 65px;
}

.hb-logo {
  height: 50px;
  max-width: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hb-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hb-desktop-nav {
  display: flex;
}

.hb-nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hb-dropdown,
.hb-nav-item {
  position: relative;
}

.hb-nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  transition: color .3s ease;
  background: 0 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.hb-nav-link:hover {
  color: #2e5bba;
}

.hb-dropdown-arrow {
  font-size: 12px;
  transition: transform .3s ease;
}

.hb-dropdown:hover .hb-dropdown-arrow {
  transform: rotate(180deg);
}

.hb-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f7f9fc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s ease;
  min-width: 280px;
  z-index: 1001;
}

.hb-dropdown-menu.open,
.hb-dropdown:hover .hb-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
}

.hb-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color .3s ease;
}

.hb-dropdown-item:hover {
  background-color: #e6eef8;
  color: #147ca5;
}

.hb-dropdown-item:last-child {
  border-bottom: none;
}

.hb-dropdown-icon {
  width: 24px;
  height: 24px;
  opacity: 1;
  transition: transform .3s ease;
}

.hb-dropdown-item:hover .hb-dropdown-icon {
  transform: scale(1.1);
}

.hb-dropdown-text {
  flex: 1;
}

.hb-dropdown-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 2px;
  color: #1e4a8c;
}

.hb-dropdown-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.3;
}

.hb-contact-btn {
  background: linear-gradient(135deg, orange 0, #ff8c00 100%);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all .3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.hb-contact-btn:hover {
  background: linear-gradient(135deg, #ff8c00 0, #f70 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 165, 0, .4);
}

.hb-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.hb-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all .3s ease;
}

.hb-menu-btn:hover span {
  background: #2e5bba;
}

.hb-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, .1);
  transition: right .3s ease;
  z-index: 1003;
  overflow-y: auto;
}

.hb-mobile-menu.open {
  right: 0;
}

.hb-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.hb-mobile-logo {
  height: 40px;
}

.hb-mobile-logo img {
  height: 100%;
  width: auto;
}

.hb-close-btn {
  background: 0 0;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all .3s ease;
}

.hb-close-btn:hover {
  background: #f0f0f0;
  color: #333;
}

.hb-mobile-nav {
  padding: 20px 0;
}

.hb-mobile-nav-link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  transition: all .3s ease;
}

.hb-mobile-nav-link:hover {
  background: #f8f9ff;
  color: #2e5bba;
  padding-left: 30px;
}

.hb-mobile-nav-link.hb-mobile-contact {
  background: linear-gradient(135deg, orange 0, #ff8c00 100%);
  color: #fff;
  margin: 20px;
  border-radius: 25px;
  text-align: center;
  border-bottom: none;
}

.hb-mobile-nav-link.hb-mobile-contact:hover {
  background: linear-gradient(135deg, #ff8c00 0, #f70 100%);
  padding-left: 20px;
}

/* MEDIA QUERIES */

@media (max-width: 768px) {
  .hb-top-bar-content {
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
  }

  .hb-contact-info {
    gap: 20px;
    font-size: 13px;
  }

  .hb-service-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .hb-header-content {
    height: 70px;
  }

  .hb-desktop-nav {
    display: none;
  }

  .hb-menu-btn {
    display: flex;
  }

  .hb-logo {
    height: 40px;
  }

  .hb-contact-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hb-contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .hb-service-badge {
    text-align: center;
  }

  .hb-mobile-menu {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 1024px) {
  .hb-top-bar {
    display: none !important;
  }

  .hb-desktop-nav {
    display: none !important;
  }

  .hb-menu-btn {
    display: flex !important;
  }

  .hb-contact-btn {
    display: none !important;
  }

  .hb-header-content,
  .hb-logo img {
    height: 40px;
  }

  .hb-mobile-menu {
    width: 100% !important;
    right: -100% !important;
    transition: right .3s ease;
  }

  .hb-mobile-menu.open {
    right: 0 !important;
  }

  .hb-mobile-dropdown .hb-dropdown-menu {
    position: static !important;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin: 0;
    padding-left: 1rem;
    box-shadow: none !important;
    border: none !important;
  }

  .hb-mobile-dropdown .hb-dropdown-menu.open {
    display: block !important;
  }

  .hb-mobile-dropdown .hb-dropdown-arrow {
    float: right;
    transition: transform .25s ease;
  }

  .hb-mobile-dropdown > button.open .hb-dropdown-arrow {
    transform: rotate(180deg);
  }

  .hb-mobile-dropdown > button {
    background: 0 0;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    outline: 0;
  }

  .hb-mobile-dropdown > button.open {
    background: #f8f9ff;
  }

  .hb-mobile-dropdown .hb-dropdown-item {
    display: flex;
    padding: 15px 20px !important;
    text-decoration: none;
    color: #333 !important;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0 !important;
    align-items: center;
  }

  .hb-mobile-dropdown .hb-dropdown-item:last-child {
    border-bottom: none !important;
  }
}

.hb-mobile-dropdown .hb-dropdown-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hb-mobile-call-btn {
  display: none;
}

@media (max-width: 1024px) {
  .hb-mobile-controls {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }

  .hb-mobile-call-btn {
    display: block;
    position: relative;
    width: 28px;
    height: 28px;
    border: none;
    outline: 0;
  }

  .hb-mobile-call-btn img {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
  }

  .hb-mobile-call-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 165, 0, .6);
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    animation: hb-pulse 6s ease-out infinite;
    pointer-events: none;
  }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes hb-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: .8;
  }

  30% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}