/* Top Bar Styles */
.top-bar {
  background: #fff;
  color: #000;
  width: 100%;
}

.top-bar-container {
  max-width: 1400px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-bar-left p {
  margin: 0;
}

.top-bar-right,
.top-bar-right-contact-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.top-bar-phone,
.top-bar-email {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s ease;
}

.top-bar-phone:hover,
.top-bar-email:hover {
  opacity: 0.8;
}

.top-bar-phone .icon,
.top-bar-email .icon {
  font-size: 1rem;
}

.top-bar-button {
  background-color: #0073aa;
  color: #ffffff;
  padding: 4px 16px;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.top-bar-button:hover {
  background-color: #005177;
}

/* Responsive Top Bar */
@media (max-width: 768px) {
  .top-bar-container {
    justify-content: center;
    font-size: 0.75rem;
    padding: 12px 2px;
  }

  .top-bar-left {
    display: none;
  }

  .top-bar-right {
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
  }

  .top-bar-right-contact-section {
    gap: 0.5rem;
  }

  .top-bar-button {
    padding: 4px 12px;
  }
}
