
/* MOBILE HEADER STYLES */

/* Hide by default (desktop view) */
.argo-mobile-header,
.mobile-menu-sidebar {
    display: none;
}

@media (max-width: 900px) {
    /* Show mobile header on small screens */
    .argo-mobile-header {
        display: block;
        width: 100%;
        position: relative;
        z-index: 999;
    }

    /* LOGO BAR */
    .mobile-logo-bar {
        background: #000;
        padding: 15px 0;
        text-align: center;
    }

    .mobile-logo img {
        height: 60px;
        width: auto;
    }

    /* NAV BAR */
    .mobile-nav-bar {
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .mobile-nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
        padding: 0 15px;
    }

    .mobile-nav-toggler {
        background: none;
        border: none;
        font-size: 24px;
        color: #000;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        border: 1px solid #eee;
    }

    .mobile-cta {
        background: #bf202f; /* Yellow like Golden Space */
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        padding: 12px 20px;
        text-decoration: none;
        border-radius: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: 0.3s;
    }

    .mobile-cta:hover {
        background: #000;
        color: #fff;
    }

    /* SIDEBAR MENU */
    .mobile-menu-sidebar {
        display: block;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        visibility: hidden;
        transition: 0.5s;
    }

    .mobile-menu-visible .mobile-menu-sidebar {
        visibility: visible;
    }

    .menu-backdrop {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        opacity: 0;
        transition: 0.5s;
    }

    .mobile-menu-visible .menu-backdrop {
        opacity: 1;
    }

    .menu-box {
        position: absolute;
        left: -300px;
        top: 0;
        width: 300px;
        height: 100%;
        background: #000;
        padding: 60px 20px 30px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        font-family: 'Work Sans', sans-serif;
    }

    .mobile-menu-visible .menu-box {
        left: 0;
    }

    .close-btn {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #333;
    }

    .nav-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .nav-logo img {
        height: 50px;
    }

    .menu-outer {
        margin-bottom: 40px;
    }

    .navigation {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navigation li {
        border-bottom: 1px solid #222;
    }

    .navigation li a {
        display: block;
        padding: 12px 0;
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        text-decoration: none;
        transition: 0.3s;
    }

    .navigation li a:hover {
        color: #bf202f;
    }

    /* Dropdown inside sidebar */
    .navigation li.dropdown {
        position: relative;
    }

    .navigation li.dropdown > a::after {
        content: "\f107";
        font-family: "FontAwesome";
        float: right;
        color: #fff;
    }

    .navigation li ul {
        display: none;
        list-style: none;
        padding-left: 15px;
        background: #111;
    }

    .navigation li.dropdown.open ul {
        display: block;
    }

    .navigation li ul li a {
        font-size: 13px;
        text-transform: none;
        font-weight: 500;
        color: #ccc;
        transition: 0.3s;
    }

    .navigation li ul li a:hover {
        color: #fff;
    }

    /* Contact Info in Sidebar */
    .contact-info h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    .contact-info ul {
        list-style: none;
        padding: 0;
    }

    .contact-info ul li {
        margin-bottom: 10px;
        font-size: 14px;
        color: #ccc;
    }

    .contact-info ul li a {
        color: inherit;
        text-decoration: none;
    }

    .contact-info ul li span {
        margin-right: 10px;
        color: #bf202f;
    }
}

