/* Top Banner Styles */
.top-banner {
  background: #000;
  color: #fff;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: "Work Sans", sans-serif;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: relative;
}

.logo {
  flex-shrink: 0;
  z-index: 1001;
}

.logo a {
  display: block;
  line-height: 0;
}

.logo img {
  height: 61px;
  width: auto;
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  order: -1;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav > a,
nav .dropdown {
  position: relative;
}

nav > a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: block;
}

nav > a:hover {
  background: #000;
  color: #fff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  color: #000;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: "Work Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-toggle:hover {
  background: #000;
  color: #fff;
}

.arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown.active .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 200px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  padding: 12px 20px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e0e0e0;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: #000;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
    justify-content: center;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .logo img {
    height: 45px;
  }

  .hamburger {
    display: flex;
    position: absolute;
    left: 15px;
  }

  nav {
    position: fixed;
    top: 101px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 101px);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  nav.active {
    left: 0;
  }

  nav > a {
    font-size: 16px;
    padding: 18px 30px;
    border-bottom: 1px solid #e0e0e0;
  }

  nav > a:hover {
    background: #000;
    color: #fff;
  }

  /* Mobile Dropdown */
  .dropdown {
    border-bottom: 1px solid #e0e0e0;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 18px 30px;
    justify-content: space-between;
  }

  .dropdown-toggle:hover {
    background: #000;
    color: #fff;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown.active .dropdown-menu {
    max-height: 500px;
  }

  .dropdown-menu a {
    font-size: 15px;
    padding: 15px 30px 15px 50px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
  }

  .dropdown-menu a:hover {
    background: #000;
    color: #fff;
  }
}
