

/* =========================
MOBILE MENU FIX
========================= */

.menu-toggle{
    width:45px;
    height:45px;
    border-radius:10px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    background:#94782a !important;
    z-index:1001;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
    transition:0.3s;
}

/* MOBILE */

@media(max-width:991px){

    .menu-toggle{
        display:flex;
    }

    /* MOBILE MENU */

    #mobileMenu{
        position:fixed;
        top:70px;
        left:-100%;
        width:100%;
        height:calc(100vh - 80px);
        background:#fff !important;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        padding:40px 25px;
        gap:25px;
        transition:0.4s ease;
        overflow-y:auto;
        z-index:999;
    }

    /* ACTIVE */

    #mobileMenu.active{
        left:0;
    }

    #mobileMenu a{
        color:#000;
        font-size:18px;
    }

    .header-contact{
        display:none;
    }

    .mobile-contact{
        display:flex;
        flex-direction:column;
        gap:20px;
        width:100%;
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid rgba(0,0,0,0.1);
    }

}
/*********************************/
/* menu style start */


/* HEADER */

#mainHeader{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:#fff;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.header-inner{
    max-width:1350px;
    margin:auto;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* NAV */

nav{
    display:flex;
    align-items:center;
    gap:30px;
}

nav a{
    text-decoration:none;
    color:#000;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

nav a:hover,
nav a.active{
    color:#785e17;
}

/* CONTACT */

.header-contact{
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:#000;
    text-decoration:none;
    font-size:14px;
}

.contact-item svg{
    width:16px;
    height:16px;
}

.header-cta{
    background:linear-gradient(135deg, #c9a84c, #886d22);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.header-cta:hover{
    transform:translateY(-2px);
}

/* MENU BUTTON */

.menu-toggle{
    width:45px;
    height:45px;
    border-radius:10px;
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    cursor:pointer;
    background:rgba(255,255,255,0.05);
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#fff;
    border-radius:10px;
}

/* MOBILE CONTACT */

.mobile-contact{
    display:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .menu-toggle{
        display:flex;
    }

    nav{
        position:fixed;
        top:80px;
        left:-100%;
        width:100%;
        height:calc(100vh - 80px);
        background:#050505;
        flex-direction:column;
        align-items:flex-start;
        padding:40px 25px;
        gap:25px;
        transition:0.4s;
        overflow-y:auto;
    }

    nav.active{
        left:0;
    }

    .header-contact{
        display:none;
    }

    .mobile-contact{
        display:flex;
        flex-direction:column;
        gap:20px;
        width:100%;
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid rgba(255,255,255,0.08);
    }

    nav a{
        font-size:18px;
    }

    .contact-item{
        font-size:15px;
    }

    .header-cta{
        text-align:center;
        width:100%;
    }
}
.menu-toggle {background: #94782a !important;}
#mobileMenu {background:#fff;}


@media(max-width:600px)
{
    .breadcrumb-content 
    {
        padding-top: 15%;
    }
}