/* CONTACT MOBILE HEADER FIX */
.mobile-menu-btn{
    display:none;
    width:48px;
    height:48px;
    border:1px solid rgba(0,255,208,.22);
    border-radius:16px;
    background:rgba(0,255,208,.07);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    box-shadow:0 0 24px rgba(0,255,208,.10);
    z-index:10002;
}
.mobile-menu-btn span{
    width:22px;
    height:2px;
    border-radius:99px;
    background:#00ffd0;
    box-shadow:0 0 12px rgba(0,255,208,.65);
    transition:.3s;
}
.mobile-menu-btn.is-open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.mobile-menu-btn.is-open span:nth-child(2){
    opacity:0;
}
.mobile-menu-btn.is-open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}
.mobile-menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.62);
    backdrop-filter:blur(8px);
    z-index:9998;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.3s ease;
}
.mobile-menu-overlay.is-open{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.mobile-drawer{
    position:fixed;
    top:0;
    right:0;
    width:min(410px,92vw);
    height:100vh;
    z-index:9999;
    padding:22px;
    background:
        radial-gradient(circle at 80% 0%,rgba(0,255,208,.14),transparent 34%),
        radial-gradient(circle at 0% 45%,rgba(0,168,255,.10),transparent 35%),
        linear-gradient(180deg,rgba(7,16,26,.98),rgba(2,5,11,.99));
    border-left:1px solid rgba(0,255,208,.18);
    box-shadow:-35px 0 90px rgba(0,0,0,.55),0 0 70px rgba(0,255,208,.10);
    transform:translateX(105%);
    transition:.42s cubic-bezier(.2,.8,.2,1);
    overflow-y:auto;
}
.mobile-drawer.is-open{
    transform:translateX(0);
}
.mobile-drawer-head{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
}
.mobile-logo{
    min-width:0 !important;
}
.mobile-logo .logo-mark{
    width:44px;
    height:44px;
    border-radius:15px;
}
.mobile-logo strong{
    font-size:17px !important;
}
.mobile-logo span{
    font-size:10px !important;
}
.mobile-close{
    width:42px;
    height:42px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.09);
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:18px;
    font-weight:900;
    cursor:pointer;
}
.mobile-status{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    border-radius:18px;
    background:rgba(0,255,136,.07);
    border:1px solid rgba(0,255,136,.14);
    color:#d5ffe8;
    font-size:13px;
    font-weight:800;
    margin-bottom:18px;
}
.mobile-status span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff88;
    box-shadow:0 0 14px #00ff88;
}
.mobile-links{
    position:relative;
    z-index:2;
    display:grid;
    gap:10px;
}
.mobile-link{
    position:relative;
    overflow:hidden;
    display:block;
    padding:16px 17px;
    border-radius:19px;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.07);
    transition:.25s;
}
.mobile-link::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,255,208,.10),transparent 58%);
    opacity:0;
    transition:.25s;
}
.mobile-link b,
.mobile-link small{
    position:relative;
    z-index:2;
    display:block;
}
.mobile-link b{
    font-family:"Orbitron",sans-serif;
    color:#fff;
    font-size:14px;
    margin-bottom:5px;
}
.mobile-link small{
    color:#94a0ad;
    font-size:12px;
    line-height:1.4;
}
.mobile-link:hover,
.mobile-link.active{
    border-color:rgba(0,255,208,.38);
    transform:translateX(-4px);
    box-shadow:0 0 30px rgba(0,255,208,.08);
}
.mobile-link:hover::before,
.mobile-link.active::before{
    opacity:1;
}
.mobile-link.active b{
    color:#00ffd0;
}
.mobile-actions{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    margin-top:18px;
    padding-bottom:24px;
}
.mobile-primary,
.mobile-secondary{
    height:52px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
    text-decoration:none;
}
.mobile-primary{
    background:linear-gradient(90deg,#00ffd0,#00a8ff);
    color:#00110f;
    box-shadow:0 0 30px rgba(0,255,208,.24);
}
.mobile-secondary{
    border:1px solid rgba(255,255,255,.10);
    color:#fff;
    background:rgba(255,255,255,.035);
}

@media(max-width:1200px){
    .main-menu{
        display:none !important;
    }
    .mobile-menu-btn{
        display:flex !important;
    }
    .nav-actions{
        min-width:auto !important;
    }
    .login-link,
    .client-panel-btn{
        display:none !important;
    }
    .royal-logo{
        min-width:auto !important;
    }
    .royal-logo strong{
        font-size:18px !important;
    }
    .royal-logo span{
        font-size:10px !important;
    }
    .nav-inner{
        height:74px !important;
    }
}
@media(max-width:768px){
    body{
        padding-top:74px;
    }
    .header-topbar{
        display:none !important;
    }
    .royal-header{
        position:fixed !important;
        top:0;
        left:0;
        width:100%;
        z-index:9997;
        background:rgba(1,5,10,.92) !important;
        backdrop-filter:blur(24px);
    }
    .nav-inner{
        height:74px !important;
    }
    .logo-mark{
        width:44px !important;
        height:44px !important;
        border-radius:15px !important;
    }
    .royal-logo strong{
        font-size:16px !important;
    }
    .royal-logo span{
        display:none !important;
    }
    .mobile-drawer{
        width:92vw;
        padding:18px;
    }
    .mobile-link{
        padding:15px;
    }
    .mobile-link b{
        font-size:13px;
    }
}