/* ==== HEADER WRAPPER ==== */
header {
  background: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

/* ==== LOGO ==== */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1e293b;
}

/* ==== NAVIGATION ==== */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #444A9F;
}

/* ==== CHEVRON ANIMATION ==== */
.chevron {
  display: inline-block;
  transition: transform 0.3s ease;
}

.chevron.rotated {
  transform: rotate(180deg);
}



/* ==== NAV TOGGLE FOR MOBILE ==== */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

/* ==== DROPDOWN SECTION ==== */
.dropdown-content-wrapper {
  display: none;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.dropdown-content-wrapper.show {
  display: block;
}

.dropdown-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.dropdown-column {
  min-width: 160px;
  flex: 1;
}

.dropdown-column h4 {
  margin-bottom: 1rem;
}

.dropdown-column a {
  display: block;
  margin: 0.25rem 0;
  text-decoration: none;
  color: #333;
}

.dropdown-guide {
  background: #ffeef0;
  padding: 1rem;
  border-radius: 8px;
  flex: 1;
  max-width: 250px;
}

.dropdown-guide h4 {
  margin-bottom: 0.5rem;
}

.dropdown-guide small {
  font-weight: bold;
  color: #b40000;
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 1rem;
    display: none;
  }

  header.open nav {
    display: flex;
  }

  .dropdown-inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}
/* Google Translate Styling */
    #google_translate_element select {
      padding: 4px;
      font-size: 0.85rem;
      border-radius: 4px;
    }

    .goog-logo-link,
    .goog-te-gadget span {
      display: none !important;
    }

    .goog-te-gadget {
      color: var(--text-main) !important;
    }