.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(53, 69, 101, 0.06);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 40px;
  width: auto;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #354565;
  cursor: pointer;
  padding: 0.25rem;
}
@media (max-width: 991px) {
  .navbar-toggle {
    display: block;
  }
}

@media (max-width: 991px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 24px rgba(36, 46, 60, 0.1);
    padding: 1rem 0;
  }
  .navbar-menu.is-open {
    display: block;
  }
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 991px) {
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}

.nav-link {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  color: #354565;
  padding: 0.5rem 0.875rem;
  text-decoration: none;
  transition: all 0.15s ease;
  border-radius: 0.25rem;
}
.nav-link:hover {
  color: #006B6B;
  text-decoration: none;
}
@media (max-width: 991px) {
  .nav-link {
    padding: 0.75rem 1.5rem;
  }
}

.has-dropdown {
  position: relative;
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .has-dropdown:hover .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    background: rgba(225, 235, 244, 0.5);
  }
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  box-shadow: 0 4px 24px rgba(36, 46, 60, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}
.nav-dropdown a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.875rem;
  color: #354565;
  text-decoration: none;
}
.nav-dropdown a:hover {
  color: #006B6B;
  background: rgba(0, 107, 107, 0.04);
}

.nav-cta {
  margin-left: 0.5rem;
}
@media (max-width: 991px) {
  .nav-cta {
    margin: 0.75rem 1.5rem 0;
  }
}

.navbar.is-scrolled {
  box-shadow: 0 2px 8px rgba(36, 46, 60, 0.06);
}
