/* ===== Dropdown Menu Styling ===== */

.dropdown-menu-item {
  position: relative;
}

.dropdown-menu-item > a {
  display: flex;
  align-items: center;
  padding: 10px 0 !important;
  position: relative;
}

.dropdown-menu-item > a::after {
  content: '';
  display: inline-block;
  margin-left: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23181A1C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.dropdown-menu-item:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  margin-top: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu-item:hover .dropdown-menu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-list li {
  margin: 0;
  padding: 0;
}

.dropdown-link {
  display: block;
  padding: 12px 22px;
  color: #181A1C !important;
  text-decoration: none !important;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background: #f8f9fa;
  border-left-color: orange;
  padding-left: 28px;
  color: orange !important;
  font-weight: 600;
}

.dropdown-link:first-child {
  border-top: 1px solid #eee;
  padding-top: 14px;
}

/* ===== Mobile Dropdown Menu Styling ===== */

.mobile-dropdown-item {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 12px 0 !important;
  color: #181A1C !important;
  text-decoration: none !important;
  width: 100%;
}

.mobile-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23181A1C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.mobile-dropdown-item.active .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-dropdown-submenu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: block !important;
}

.mobile-dropdown-item.active .mobile-dropdown-submenu {
  max-height: 500px;
  overflow: visible;
}

.mobile-dropdown-submenu li {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: block !important;
}

.mobile-dropdown-submenu a {
  display: block !important;
  padding: 10px 0 10px 20px !important;
  color: #555 !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  background: transparent !important;
}

.mobile-dropdown-submenu a:hover {
  border-left-color: orange;
  padding-left: 26px;
  color: orange !important;
  font-weight: 600;
  background: rgba(255, 165, 0, 0.05) !important;
}

/* ===== JavaScript Toggle Class ===== */

.mobile-dropdown-submenu {
  max-height: 0;
  overflow: hidden;
}

.mobile-dropdown-item.show .mobile-dropdown-submenu {
  max-height: 500px;
  overflow: visible;
}

@media (max-width: 991px) {
  .dropdown-menu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .dropdown-menu-item:hover .dropdown-menu-list {
    opacity: 0;
    visibility: hidden;
  }

  .dropdown-menu-item.show .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    position: static;
    background: rgba(248, 249, 250, 0.95);
    padding: 10px 0;
    margin-top: 10px;
    max-height: 500px;
    overflow: visible;
    border-radius: 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .dropdown-menu-item > a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23181A1C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }

  .dropdown-menu-item.show > a::after {
    transform: rotate(180deg);
  }
}
