/* Shared navigation enhancements — MentorMinds */

.nav-menu > li > a {
  padding: 8px 12px;
  font-size: 14px;
}

.nav-menu > li.has-dropdown > a.active {
  color: var(--orange, #FF6B00);
  background: rgba(255, 107, 0, 0.06);
}

.mobile-menu .mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-menu .mobile-dropdown.open {
  max-height: 520px;
}

.mobile-menu .mobile-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted, #6B7280);
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.mobile-menu .mobile-dropdown li a:hover {
  color: var(--orange, #FF6B00);
  padding-left: 22px;
}

.mobile-menu .mobile-dropdown li a i {
  color: var(--orange, #FF6B00);
  font-size: 13px;
  width: 20px;
  text-align: center;
}

.mobile-menu .mobile-dd-toggle.open .dd-arrow {
  transform: rotate(180deg);
}

.mobile-menu .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu .mobile-cta .btn-cta {
  text-align: center;
  display: block;
}

.mobile-menu .mobile-cta .btn-whatsapp-full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 50px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.mobile-menu .mobile-cta .btn-whatsapp-full:hover {
  background: #1fba59;
}

.mobile-menu .mobile-lang {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.mobile-menu .mobile-lang button {
  padding: 6px 20px;
  border: 2px solid var(--navy, #0A1F44);
  background: transparent;
  color: var(--navy, #0A1F44);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-menu .mobile-lang button:first-child {
  border-radius: 50px 0 0 50px;
  border-right: none;
}

.mobile-menu .mobile-lang button:last-child {
  border-radius: 0 50px 50px 0;
}

.mobile-menu .mobile-lang button.active {
  background: var(--navy, #0A1F44);
  color: #fff;
}

@media (max-width: 1200px) {
  .nav-menu > li > a {
    padding: 8px 9px;
    font-size: 13px;
  }
}
