/* ========== MOBILE BOTTOM MENU ========== */
@media (max-width: 768px) {
  .mobile-menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ff4500;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  }

  .mobile-menu a {
    color: white;
    text-align: center;
    font-size: 12px;
    text-decoration: none;
  }

  .mobile-menu a i {
    font-size: 20px;
    display: block;
  }

  .mobile-submenu {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background-color: #ff7043;
    padding: 10px 0;
    text-align: center;
    z-index: 999;
  }

  .mobile-submenu a {
    display: inline-block;
    margin: 5px 10px;
    font-size: 14px;
    color: white;
  }

  .mobile-submenu.show {
    display: block;
  }
}

@media (max-width: 768px) {
  .header-content .nav-links,
  .header-content .menu-toggle {
    display: none;
  }
}
