/* Navigation Bar */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 32px;
  padding: 20px 56px;
  width: 100%;
  max-width: 1040px;
  transition: all 0.3s ease;

  @media (max-width: 1024px) {
    background: unset;
  }
}

.navbar.menu-open {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 32px 32px 0 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  @media (max-width: 1024px) {
    display: none;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-logo svg {
  width: auto;
  height: 32px;
  transition: all 0.3s ease;
}

.nav-logo:hover svg {
  transform: scale(1.05);
}

.nav-logo:hover svg path[fill="#FBA61C"] {
  fill: #ff8c00;
}

.nav-logo:hover svg path[fill="black"] {
  fill: #ff6b35;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #fba61c;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: -0.5%;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 16px;
  padding: 4px 16px;
  height: 32px;
}

.btn-primary {
  background: #333333;
  color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
}

.btn-secondary {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}

.language {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.language-dropdown {
  position: absolute;
  top: 40px;
  right: 0px;
  background: rgba(255, 255, 255, 0.60);
  padding: 16px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  width: 150px;
  opacity: 0;
  z-index: -1;
}

.language-option {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: -0.08px;
  cursor: pointer;
  height: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
}

.language-option:first-child {
  border-top: none;
}

.language-option:hover {
  color: #000;
}

.language-option.active {
  color: #000;
}

.menu-toggle {
  position: absolute;
  right: 44px;
  top: 30px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;

  @media (max-width: 1024px) {
    display: flex;
    cursor: pointer;
  }

  @media (max-width: 425px) {
    top: 24px;
    right: 24px;
  }
}

.mobile-nav-menu {
  display: none;
  
  @media (max-width: 1024px) {
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 44px;
    width: 100%;
    height: var(--window-height);
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.mobile-nav-link {
  font-size: 24px;
  font-weight: 500;
  line-height: 35px;
  letter-spacing: -0.12px;
  color: #000;
  text-decoration: none;
  padding: 4px 0 8px;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #fba61c;
  border-bottom-color: #fba61c;
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.mobile-btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.12px;
  border-radius: 16px;
  width: 100%;
  height: 42px;
  text-decoration: none;
  background: #333333;
  color: #ffffff;
  transition: all 0.3s ease;
  max-width: 287px;
  width: 100%;

  @media (max-width: 425px) {
    max-width: 100%;
  }
}

.mobile-btn-contact:hover {
  background: #000000;
}

.mobile-btn-join-talent-pool {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.12px;
  border-radius: 16px;
  width: 100%;
  height: 42px;
  text-decoration: none;
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  transition: all 0.3s ease;
  max-width: 287px;
  width: 100%;

  @media (max-width: 425px) {
    max-width: 100%;
  }
}

.mobile-btn-join-talent-pool:hover {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-language {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-language-options {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.mobile-language-option {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: -0.12px;
  color: #4f4f4f;
  cursor: pointer;
}

.mobile-language-option.active {
  color: #000;
}

.mobile-language-divider {
  color: #000;
}
