/* Mobile Menu Plugin CSS updated for Central Modal Design */

*{
    margin: 0;
    padding: 0;
}
body{
    font-size: 16px;
    font-family: "IBM Plex Sans", sans-serif;
}

a, a:hover{
    outline: none;
    text-decoration: none;
}

ul, li{
    list-style: none;
}

/* Mobile Header Button */
.mobile-logo a{
    font-size: 20px;
    font-weight: 400;
    color: #161616;
    text-decoration: none;
}

.mobile-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 17px 0;
    z-index: 9;
}

.mobile-header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-icon {
    font-size: 23px;
    border: 1px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #161616;
}

/* Modal Sidebar Overlay */
.mobile-sidebar {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    padding: 20px;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-sidebar.mobile-menu-active {
    visibility: visible;
    opacity: 1;
}

/* Modal Inner Container */
.mobile-menu-container {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Slide in effect */
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-sidebar.mobile-menu-active .mobile-menu-container {
    transform: translateY(0);
    opacity: 1;
}

/* Close Icon */
.menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #111;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Sections */
.mobile-menu-section {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-menu-section h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #111;
    text-transform: uppercase;
}

/* Navigate List */
.mobile-nav-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f2f6;
    color: #333;
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-nav-list li a:hover {
    background: #e2e4ea;
}

.mobile-nav-list li a i {
    margin-right: 10px;
    font-size: 14px;
    color: #666;
}

/* Divider */
.divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
    width: 100%;
}

/* Help Buttons */
.help-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.help-btn {
    background: #111;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background 0.3s;
}

.help-btn:hover {
    background: #333;
}

/* Social Links */
.social-links-mobile-menu ul {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0;
}

.social-links-mobile-menu ul li a {
    background: #111;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.social-links-mobile-menu ul li a:hover {
    transform: scale(1.1);
}
