/* =========================
PREMIUM MOBILE NAVBAR
========================= */

header{
background:#0d1b4c;
position:sticky;
top:0;
z-index:999;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.nav{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:16px 0;
position:relative;
}

/* BRAND */

.brand{
display:flex;
align-items:center;
gap:14px;
text-decoration:none;
}

.brand img{
width:58px;
height:58px;
border-radius:50%;
object-fit:cover;
background:#fff;
padding:3px;
}

.brand h1{
margin:0;
font-size:32px;
line-height:1;
color:#fff;
font-weight:800;
}

.brand span{
display:block;
font-size:12px;
letter-spacing:.8px;
color:#d9dbe7;
margin-top:4px;
}

/* DESKTOP MENU */

.menu{
display:flex;
align-items:center;
gap:14px;
}

.menu a{
color:#fff;
text-decoration:none;
font-weight:700;
padding:10px 14px;
border-radius:12px;
transition:.3s;
}

.menu a:hover{
background:rgba(255,255,255,.12);
}

.menu .cta{
background:linear-gradient(135deg,#d4af37,#f4e08a);
color:#111;
padding:12px 18px;
border-radius:30px;
}

.menu .cta:hover{
transform:translateY(-2px);
}

/* MOBILE BUTTON */

.menu-toggle{
display:none;
border:none;
background:#ffffff12;
color:#fff;
width:46px;
height:46px;
border-radius:12px;
font-size:20px;
cursor:pointer;
}

/* =========================
MOBILE
========================= */

@media(max-width:992px){

.brand img{
width:52px;
height:52px;
}

.brand h1{
font-size:26px;
}

.brand span{
font-size:10px;
}

.menu-toggle{
display:flex;
align-items:center;
justify-content:center;
}

.menu{
position:absolute;
top:100%;
left:0;
right:0;
background:#0d1b4c;
flex-direction:column;
align-items:stretch;
padding:18px;
gap:10px;
border-radius:0 0 18px 18px;
box-shadow:0 18px 30px rgba(0,0,0,.15);

opacity:0;
visibility:hidden;
transform:translateY(-10px);
pointer-events:none;
}

.menu.show{
opacity:1;
visibility:visible;
transform:translateY(0);
pointer-events:auto;
}

.menu a{
text-align:center;
padding:14px;
font-size:16px;
}

.menu .cta{
width:100%;
}

}

/* EXTRA SMALL */

@media(max-width:576px){

.nav{
padding:12px 0;
}

.brand{
gap:10px;
}

.brand img{
width:46px;
height:46px;
}

.brand h1{
font-size:22px;
}

.brand span{
font-size:9px;
}

.menu-toggle{
width:42px;
height:42px;
font-size:18px;
}

}