/* =========================
   QUALITY EXPO GLOBAL CSS
   ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#f5f7fb;
    color:#1e293b;
    line-height:1.6;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    display:block;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:80px 30px;
}

/* =========================
   HEADER
   ========================= */

.qe-header{
    background:#081428;
    position:sticky;
    top:0;
    z-index:1000;
}

.qe-nav{
    max-width:1400px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.qe-logo{
    display:flex;
    align-items:center;
    gap:15px;
    color:#fff;
}

.qe-logo-mark{
    width:52px;
    height:52px;
    border-radius:14px;
    background:linear-gradient(135deg,#d4af37,#f8d977);
    color:#081428;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.qe-logo strong{
    display:block;
    font-size:18px;
    letter-spacing:1px;
}

.qe-logo small{
    color:#d4af37;
}

.qe-menu{
    display:flex;
    gap:28px;
}

.qe-menu a{
    color:#fff;
    font-size:14px;
    font-weight:500;
}

.qe-menu a:hover{
    color:#d4af37;
}

.qe-ticket-btn{
    background:#d4af37;
    color:#081428;
    padding:12px 24px;
    border-radius:12px;
    font-weight:600;
}

.qe-ticket-btn:hover{
    background:#f2cb4e;
}

/* =========================
   BUTTONS
   ========================= */

.btn-primary{
    display:inline-block;
    background:#d4af37;
    color:#081428;
    padding:15px 30px;
    border-radius:12px;
    font-weight:600;
    transition:.2s;
}

.btn-primary:hover{
    background:#f2cb4e;
}

.btn-secondary{
    display:inline-block;
    border:2px solid #fff;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
}

/* =========================
   FOOTER
   ========================= */

.qe-footer{
    background:#081428;
    color:#fff;
}

.qe-footer-inner{
    max-width:1400px;
    margin:auto;
    padding:60px 30px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.qe-footer h3,
.qe-footer h4{
    color:#d4af37;
    margin-bottom:15px;
}

.qe-footer ul{
    list-style:none;
}

.qe-footer li{
    margin-bottom:10px;
}

.qe-footer a{
    color:#fff;
}

.qe-footer a:hover{
    color:#d4af37;
}

.qe-footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.10);
}

/* =========================
   MOBILE
   ========================= */

@media(max-width:900px){

    .qe-nav{
        flex-direction:column;
        gap:20px;
    }

    .qe-menu{
        flex-wrap:wrap;
        justify-content:center;
    }

    .qe-footer-inner{
        grid-template-columns:1fr;
    }

}