/* ===== HEADER START ===== */

.ms-header {
    width: 100%;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 1px solid #e5e5e5;
}

/* TOP BAR */

.ms-topbar {
    background: #f5f5f5;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
}

.ms-topbar-left,
.ms-topbar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ms-topbar-left a,
.ms-topbar-right a {
    text-decoration: none;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ms-topbar-left a i,
.ms-topbar-right a i {
    margin-right: 7px;
}

.ms-topbar-right a {
    font-size: 18px;
}

.ms-topbar-left a:hover,
.ms-topbar-right a:hover {
    color: #c88718;
}

/* NAVBAR */

.ms-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    position: relative;
}

.ms-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/* MENU */

.ms-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.ms-nav a {
    text-decoration: none;
    color: #1f1f1f;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.ms-nav a:hover {
    color: #c88718;
}

/* MOBILE MENU BUTTON */

.ms-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #1f1f1f;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1200px) {

    .ms-nav {
        gap: 20px;
    }

    .ms-nav a {
        font-size: 14px;
    }

    .ms-logo img {
        max-width: 250px;
    }
}

/* TABLET */

@media (max-width: 991px) {

    .ms-topbar {
        padding: 10px 20px;
    }

    .ms-navbar {
        padding: 14px 20px;
    }

    .ms-menu-toggle {
        display: block;
    }

    .ms-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        display: none;
        padding: 10px 0;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        z-index: 999;
    }

    .ms-nav.active {
        display: flex;
    }

    .ms-nav a {
        width: 100%;
        padding: 14px 20px;
        border-bottom: 1px solid #f2f2f2;
        font-size: 15px;
    }
}

/* MOBILE */

@media (max-width: 576px) {

    .ms-topbar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ms-topbar-left {
        flex-direction: column;
        gap: 8px;
    }

    .ms-topbar-right {
        justify-content: center;
    }

    .ms-logo img {
        max-width: 220px;
    }

    .ms-navbar {
        padding: 14px 15px;
    }
}

/* ===== HEADER END ===== */