/* ===============================
   Mobile Menu Responsive Styles
   =============================== */
@media (max-width: 991px) {

  .menu-toggle {
    cursor: pointer;
    font-size: 28px;
    color: #000;
  }

  .mobile-menu {
    display: none;
    background-color: aliceblue;
    width: 100%;
    border-top: 1px solid #ccc;
    position: relative;
    z-index: 999;
  }

  .mobile-menu.active {
    display: block;
    animation: dropdownSlide 0.9s ease;
  }

  @keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-menu ul {
    list-style: none;
    margin-left: -5%;
    padding-top: 2%;
    text-align: left;
    line-height: 15px;
  }

  .mobile-menu li {
    margin: 5px 0;
  }

  .mobile-menu a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    position: relative;
  }

  .mobile-menu a:hover {
    background: #d8f3dc;
    border-radius: 5px;
  }

  /* Smooth dropdown animation */
  .mobile-menu .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.9s ease, opacity 0.5s ease;
    opacity: 0;
    background: #f8f9fa;
    margin-top: 5px;
  }

  .mobile-menu .has-children.open .dropdown {
    opacity: 1;
  }

  .mobile-menu .dropdown a {
    padding-left: 25px;
    font-size: 14px;
  }

  .mobile-menu .mobile-arrow {
    float: right;
    transition: transform 0.3s ease;
  }

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