.site-header{
    position: relative;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.site-header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 84px;
    overflow: visible;
}

.site-logo,
.site-logo-text{
    flex: 0 0 auto;
}

.site-logo img{
    max-height: 56px;
    width: auto;
    display: block;
}

.site-logo-text{
    text-decoration: none;
    color: #0e1e3c;
    font-size: 28px;
    font-weight: 800;
}

.main-nav{
    margin-left: auto;
}

.menu{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.menu-item{
    position: relative;
    list-style: none;
}

.menu-item > a{
    display: flex;
    align-items: center;
    height: 84px;
    padding: 0 18px;
    text-decoration: none;
    color: #0e1e3c;
    font-size: 15px;
    font-weight: 700;
    transition: all .2s ease;
    white-space: nowrap;
}

.menu-item > a:hover{
    color: #fdbd09;
}

.menu-item.has-dropdown > a::after{
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    margin-left: 8px;
}

.dropdown-menu{
    list-style: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .25s ease;
    z-index: 9999;
}

.dropdown-menu li{
    margin: 0;
}

.dropdown-menu li a{
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #0e1e3c;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: all .2s ease;
}

.dropdown-menu li a:hover{
    background: #fdbd09;
    color: #0e1e3c;
}

.menu-item.has-dropdown:hover > .dropdown-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Desktop only */
@media (min-width: 992px){
    .site-header{
        display: block;
    }
}

.desktop-header-wrap{
    display:block;
}

.mobile-header-wrap{
    display:none;
}

@media (max-width: 991.98px){
    .desktop-header-wrap{
        display:none !important;
    }

    .mobile-header-wrap{
        display:block !important;
    }
}

.mobile-header{
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    position:sticky;
    top:0;
    z-index:1040;
}

.mobile-header-inner{
    min-height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.mobile-logo{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#0e1e3c;
    font-size:22px;
    font-weight:800;
}

.mobile-logo img{
    max-height:42px;
    width:auto;
    display:block;
}

.mobile-menu-toggle{
    width:44px;
    height:44px;
    border:1px solid rgba(14,30,60,.12);
    border-radius:10px;
    background:#ffffff;
    color:#0e1e3c;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    cursor:pointer;
    transition:.2s ease;
}

.mobile-menu-toggle:hover{
    background:#fdbd09;
    color:#0e1e3c;
    border-color:#fdbd09;
}

.mobile-menu-toggle i{
    font-size:20px;
    line-height:1;
}

.mobile-offcanvas{
    max-width:320px;
    background:#ffffff;
}

.mobile-offcanvas .offcanvas-header{
    border-bottom:1px solid #e5e7eb;
    padding:16px 18px;
}

.mobile-offcanvas .offcanvas-title{
    font-weight:800;
    color:#0e1e3c;
}

.mobile-menu-list{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-menu-list > li{
    border-bottom:1px solid #eef2f7;
}

.mobile-menu-list > li > a,
.mobile-submenu-toggle{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:15px 18px;
    background:none;
    border:0;
    text-decoration:none;
    color:#0e1e3c;
    font-size:15px;
    font-weight:600;
    transition:.2s ease;
}

.mobile-menu-list > li > a:hover,
.mobile-submenu-toggle:hover{
    background:#0e1e3c;
    color:#ffffff;
}

.mobile-submenu-toggle i{
    font-size:13px;
    color:#6b7280;
    transition:transform .2s ease;
}

.mobile-submenu{
    background:#f8fafc;
}

.mobile-submenu ul{
    list-style:none;
    margin:0;
    padding:0;
}

.mobile-submenu li{
    border-top:1px solid #eef2f7;
}

.mobile-submenu a{
    display:block;
    padding:12px 18px 12px 32px;
    text-decoration:none;
    color:#374151;
    font-size:14px;
    transition:.2s ease;
}

.mobile-submenu a:hover{
    background:#fdbd09;
    color:#0e1e3c;
}

.mobile-contact-box{
    padding:18px;
    margin-top:auto;
    background:#0e1e3c;
    border-top:1px solid rgba(255,255,255,.08);
}

.mobile-contact-item{
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
    color:#ffffff;
    margin-bottom:10px;
}

.mobile-contact-item:last-child{
    margin-bottom:0;
}

.mobile-contact-item i{
    margin-top:3px;
    color:#fdbd09;
    width:16px;
    text-align:center;
}

@media (max-width: 991.98px){
    .site-header{
        display: none !important;
    }
}