/* Must Uba - CSS Fix - upload this as mustuba-fix.css */

/* HAMBURGER - mobile */
@media (max-width: 768px) {
  .hamburger { display: flex !important; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; z-index: 10002; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; border-radius: 2px; }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* NAV LINKS - mobile dropdown */
  #navLinks {
    display: none !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(14,14,14,0.99) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 16px 0 !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
    margin: 0 !important;
    list-style: none !important;
  }
  #navLinks.open { display: flex !important; }
  #navLinks > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  #navLinks > li > a, #navLinks > li > button { display: block; width: 100%; padding: 14px 20px; font-size: 16px; text-align: left; color: rgba(255,255,255,0.85); text-decoration: none; background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; box-sizing: border-box; }

  /* DROPDOWN - mobile */
  .nav-dropdown-menu {
    position: static !important;
    background: rgba(255,255,255,0.04) !important;
    border: none !important;
    border-left: 2px solid rgba(105,156,126,0.4) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-left: 20px !important;
    padding: 4px 0 !important;
  }
  .nav-dropdown-menu a { padding: 10px 16px !important; font-size: 14px !important; }

  .lang-switcher { display: none !important; }
  .nav-cta { font-size: 11px !important; padding: 7px 11px !important; }
  .nav-logo img { height: 32px !important; }
}

/* DROPDOWN - desktop */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(18,18,18,0.99);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 8px 0;
  min-width: 220px;
  z-index: 10001;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
  white-space: nowrap;
}
.nav-dropdown-menu.open { display: block !important; }
@media (hover: hover) { .nav-dropdown:hover .nav-dropdown-menu { display: block; } }

/* FAQ */
.faq-item .faq-answer, .faq-item .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.faq-item.open .faq-answer, .faq-item.open .faq-a {
  max-height: 800px !important;
  padding-bottom: 20px !important;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
