

body{
    padding-top:125px;
}

/* ================= FIXED HEADER ================= */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:1000;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:blue;
}

.top-bar-content{
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 20px;
    flex-wrap:wrap;
    gap:10px;
}

.top-left,
.top-right{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.top-left a{
    color:#fff;
    font-size:14px;
    text-decoration:none;
}

.top-address{
    color:#fff;
    font-size:13px;
}

.top-address i{
    color: #f3b530;
}

.top-right span{
    color:#fff;
    font-size:13px;
}
.top-right span i{
    color: #f3b530;
}
.top-right a{
    text-decoration: none;
    color:#fff;
    font-size:13px;
}
/* ================= MAIN HEADER ================= */
.header{
    height:90px;
    border-bottom:1px solid #eee;
    background:#fff;
}

.header-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================= LOGO ================= */
.logo img{
    height:90px;
   
}

/* ================= MENU ================= */
.nav-menu{
    display:flex;
    gap:10px;
}

.nav-menu a{
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    color:#333;
     font-family: "Tahoma";
     text-transform:uppercase;
}

/* ================= BOOK NOW BUTTON ================= */
.quote-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 10px;
    border:2px solid #000;
    border-radius:30px;
    background:#fff;
    color:#000;
    font-weight:600;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.quote-btn .arrow-circle{
    width:28px;
    height:28px;
    background: #f3b530;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.quote-btn .arrow-circle i{
    color:#fff;
    font-size:12px;
}

.quote-btn:hover{
    background:#000;
    color:#fff;
}

.quote-btn:hover .arrow-circle{
    background: #f3b530;
}

/* ================= MOBILE MENU ================= */
.menu-toggle{
    display:none;
    font-size:24px;
    cursor:pointer;
}
.header-container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

/* LOGO */
.logo{
    flex:0 0 auto;
}

/* MENU FIX */
.nav-menu{
    display:flex;
    justify-content:center;
    align-items:center;
    flex:1;
    gap:16px;

    flex-wrap:nowrap;      /* ❗ prevent line break */
    white-space:nowrap;    /* ❗ force single line */
    overflow:hidden;       /* clean layout */
}

.nav-menu a{
    text-decoration:none;
    font-weight:600;
    font-size:13px;   /* slightly smaller helps fit */
    color:#333;
    text-transform:uppercase;
    white-space:nowrap;
}

/* BOOK BUTTON */
.quote-btn{
    flex:0 0 auto;
}
@media(max-width:992px){

    body{
        padding-top:170px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:150px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,0.05);
        z-index:999;
    }

    .nav-menu.show{
        display:flex;
    }

    .nav-menu a{
        padding:15px 20px;
        border-bottom:1px solid #eee;
    }

    .quote-btn{
        display:none;
    }

    .top-address{
        display:none;
    }
}

@media(max-width:600px){

    body{
        padding-top:190px;
    }

    .top-bar-content{
        flex-direction:column;
        text-align:center;
    }

    .top-left,
    .top-right{
        justify-content:center;
    }

    .logo img{
        height:60px;
    }
}