/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

/* Header */
.custom-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 71px;
    background: linear-gradient(90deg, #0B1220 0%, #142A52 100%);
    border-bottom: 1px solid rgba(15,23,42,.07);
    z-index: 9999;
    transition: all .3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

body{
    padding-top: 71px;
}

.custom-header .container{
    max-width:1320px;
    height:71px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* Logo */
.custom-header .logo img{
    height:38px;
}

/* Navigation */
.custom-header nav ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.custom-header nav ul li a{
    display:block;
    padding:10px 16px;
    color:#8D96A8;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    border-radius:4px;
    transition:all .3s ease;
}

.custom-header nav ul li a:hover,
.custom-header nav ul li a.active{
    color:#fff;
    background:rgba(255,255,255,.08);
}

/* Right Side */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.phone{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.phone i{
    color:#3B82F6;
    margin-right:6px;
    font-size:12px;
}

.quote-btn{
    background:#2E8BFF;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:10px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}
/* ===========================
   MOBILE ONLY
=========================== */

.menu-toggle{
    display:none;
}

@media (max-width:991px){

body{
    padding-top:70px;
}

.custom-header{
    height:70px;
}

.custom-header .container{
    height:70px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.custom-header .logo img{
    height:30px;
}

.menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    cursor:pointer;
    margin-left:auto;
    z-index:10001;
}

/* Hide desktop items */
.header-right{
    display:none !important;
}

/* Mobile menu */
.custom-header nav{
    position:fixed;
    top:70px;
    left:-100%;
    width:100%;
    height:calc(100vh - 70px);
    background:#0B1220;
    transition:left .3s ease;
    z-index:9999;
    padding:20px;
}

.custom-header nav.active{
    left:0;
}

.custom-header nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
}

.custom-header nav ul li{
    width:100%;
}

.custom-header nav ul li a{
    display:block;
    width:100%;
    padding:16px 0;
    color:#fff;
    border-bottom:1px solid rgba(255,255,255,.08);
}

}

@media (min-width:992px){

.menu-toggle{
    display:none !important;
}

.custom-header nav{
    position:static !important;
    width:auto !important;
    height:auto !important;
    background:transparent !important;
    left:0 !important;
    padding:0 !important;
}

.custom-header nav ul{
    display:flex !important;
    flex-direction:row !important;
    gap:35px !important;
}

.header-right{
    display:flex !important;
}

}