/*=========================================
RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/*=========================================
HEADER
=========================================*/

.site-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:72px;

    background:#ffffff;

    border-bottom:1px solid rgba(0,0,0,.08);

    z-index:9999;

    transition:.35s ease;

}

.header-container{

    width:min(1500px,94%);

    height:100%;

    margin:auto;

    display:grid;

    grid-template-columns:180px 1fr auto;

    align-items:center;

    gap:50px;

}

/*=========================================
LOGO
=========================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    width:125px;

    display:block;

    transition:.3s;

}

/*=========================================
NAVIGATION
=========================================*/

.desktop-nav{

    display:flex;

    justify-content:center;

}

.desktop-nav ul{

    display:flex;

    align-items:center;

    gap:42px;

}

.desktop-nav a{

    position:relative;

    color:#111;

    font-size:14px;

    font-weight:500;

    letter-spacing:1px;

    text-transform:uppercase;

    transition:.3s;

}

.desktop-nav a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    width:0;

    height:2px;

    background:#C89255;

    transform:translateX(-50%);

    transition:.3s;

}

.desktop-nav a:hover{

    color:#C89255;

}

.desktop-nav a:hover::after{

    width:100%;

}

/*=========================================
RIGHT
=========================================*/

.header-right{

    display:flex;

    align-items:center;

    gap:18px;

}

.header-phone{

    width:42px;

    height:42px;

    border:1px solid rgba(0,0,0,.1);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111;

    transition:.3s;

}

.header-phone:hover{

    background:#C89255;

    color:#fff;

    border-color:#C89255;

}

/*=========================================
BUTTON
=========================================*/

.header-btn{

    height:44px;

    padding:0 28px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0F2340;

    color:#fff;

    border-radius:4px;

    font-size:13px;

    font-weight:600;

    letter-spacing:1px;

    transition:.3s;

}

.header-btn:hover{

    background:#C89255;

}

/*=========================================
MOBILE BUTTON
=========================================*/

.mobile-toggle{

    display:none;

    width:42px;

    height:42px;

    border:none;

    background:none;

    font-size:28px;

    cursor:pointer;

}

/*==================================================
STICKY HEADER
==================================================*/

.site-header.sticky{

    height:66px;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.site-header.sticky .logo img{

    width:112px;

}

/*==================================================
ANIMATION
==================================================*/

.site-header,
.logo img,
.desktop-nav a,
.header-btn,
.header-phone{

    transition:all .35s ease;

}

/*==================================================
MOBILE OVERLAY
==================================================*/

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================================
MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:360px;

    max-width:100%;

    height:100vh;

    background:#fff;

    transition:.4s ease;

    z-index:9999;

    display:flex;

    flex-direction:column;

    overflow-y:auto;

    box-shadow:-10px 0 40px rgba(0,0,0,.15);

}

.mobile-menu.active{

    right:0;

}

/*==================================================
MOBILE HEADER
==================================================*/

.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 25px;

    border-bottom:1px solid #eee;

}

.mobile-header img{

    width:120px;

}

.mobile-close{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f4f4f4;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.mobile-close:hover{

    background:#C89255;

    color:#fff;

}

/*==================================================
MOBILE NAVIGATION
==================================================*/

.mobile-menu nav{

    padding:20px 30px;

}

.mobile-menu li{

    border-bottom:1px solid #efefef;

}

.mobile-menu a{

    display:block;

    padding:18px 0;

    color:#222;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.mobile-menu a:hover{

    color:#C89255;

    padding-left:10px;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

    .desktop-nav ul{

        gap:26px;

    }

}

@media(max-width:991px){

    .desktop-nav{

        display:none;

    }

    .header-phone,

    .header-btn{

        display:none;

    }

    .mobile-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .header-container{

        grid-template-columns:1fr auto;

    }

}

@media(max-width:768px){

    .header-container{

        width:92%;

    }

    .logo img{

        width:110px;

    }

    .mobile-menu{

        width:100%;

    }

}
/*=========================================
PREMIUM HOVER EFFECTS
=========================================*/

.logo img{

    user-select:none;

    -webkit-user-drag:none;

}

.logo:hover img{

    transform:scale(1.04);

}

.desktop-nav li{

    position:relative;

}

.desktop-nav li:hover{

    transform:translateY(-2px);

}

.desktop-nav a{

    overflow:hidden;

}

.desktop-nav a.active{

    color:#C89255;

}

.desktop-nav a.active::after{

    width:100%;

}

/*=========================================
BUTTON EFFECT
=========================================*/

.header-btn{

    position:relative;

    overflow:hidden;

}

.header-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.8s;

}

.header-btn:hover::before{

    left:130%;

}

/*=========================================
PHONE ICON
=========================================*/

.header-phone i{

    transition:.3s;

}

.header-phone:hover i{

    transform:rotate(-15deg);

}

/*=========================================
FOCUS
=========================================*/

a:focus,
button:focus{

    outline:none;

}

/*=========================================
SELECTION
=========================================*/

::selection{

    background:#C89255;

    color:#fff;

}

/*=========================================
SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#C89255;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#f4f4f4;

}

/*=========================================
MOBILE MENU SCROLLBAR
=========================================*/

.mobile-menu::-webkit-scrollbar{

    width:6px;

}

.mobile-menu::-webkit-scrollbar-thumb{

    background:#C89255;

    border-radius:20px;

}

/*=========================================
SMOOTH
=========================================*/

html{

    scroll-behavior:smooth;

}

/*=========================================
PERFORMANCE
=========================================*/

.site-header{

    will-change:transform;

}

.logo img{

    will-change:transform;

}

.desktop-nav,
.header-right{

    backface-visibility:hidden;

    transform:translateZ(0);

}

/*=========================================
LARGE DESKTOP
=========================================*/

@media(min-width:1600px){

    .header-container{

        max-width:1550px;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px){

    .site-header{

        height:64px;

    }

    .logo img{

        width:105px;

    }

    .mobile-header{

        padding:18px 20px;

    }

    .mobile-menu nav{

        padding:20px;

    }

}