header .tophead {
    background: #fdfaf5;
    padding: 8px 0;
    font-size: 12px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    letter-spacing: 0.02em;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    z-index: 9999;
    height: auto !important;
    overflow: visible !important;
}

.tophead-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tophead-left,
.tophead-center,
.tophead-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.info-item i {
    color: #92a47d;
    font-size: 14px;
}

.tophead-left .info-item {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
}

.info-item:hover {
    color: #92a47d;
    text-decoration: none;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
    margin-left: 10px;
    text-transform: uppercase;
    position: relative;
    height: 100%;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    padding: 8px 15px;
    display: none;
    z-index: 10000;
    min-width: 60px;
    margin: 0;
}

.lang-selector:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    font-size: 12px;
    transition: color 0.2s;
}

.lang-dropdown li a:hover {
    color: #92a47d;
}

.lang-selector i {
    font-size: 10px;
    color: #888;
}

@media (max-width: 1199px) {

    .tophead-left,
    .tophead-center,
    .tophead-right {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .tophead-content {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tophead-center {
        display: none;
        /* Hide center item on smaller screens if too crowded */
    }
}

@media (max-width: 767px) {
    .tophead {
        padding: 5px 0;
    }

    .tophead-left {
        display: none;
        /* Hide tagline on mobile */
    }

    .tophead-right {
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
}

/* Main Header Reset & Layout */
.header-main-wrap {
    background: #fff;
    padding: 15px 0;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    transition: all 0.3s ease;
}

.header-main-wrap.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    animation: vtxSlideDown 0.3s ease-out;
}

@keyframes vtxSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
    position: static !important;
    top: auto !important;
    left: auto !important;
    float: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
}

header .logo img {
    height: 42px !important;
    width: auto !important;
    max-width: none !important;
}

header .menu {
    position: static !important;
    float: none !important;
    height: auto !important;
    padding: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Ensure menu contents align & typography */
.header-main .menu .sf-menu,
.header-main .menu .sm-blue {
    float: none !important;
    margin-bottom: 0 !important;
    display: flex !important;
    border: none !important;
}

.header-main .menu .sf-menu>li>a,
.header-main .menu .sm-blue>li>a {
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.header-main .menu .sf-menu ul a,
.header-main .menu .sm-blue ul a {
    text-transform: none !important;
    font-weight: 400 !important;
    font-size: 14px;
    letter-spacing: 0;
}

.header-main .menu .sf-menu>li,
.header-main .menu .sm-blue>li {
    float: none !important;
}

/* Sub-menu indicators color */
.sm-blue ul a span.sub-arrow {
    border-color: transparent transparent transparent #92a47d !important;
}

.sm-blue a span.sub-arrow {
    border-top-color: #92a47d !important;
}



/* Quote Button Styles */
.header-main .menu {
    gap: 20px;
}

.quote-button {
    background: #28361d;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
    letter-spacing: 0.5px;
    display: inline-block;
}

.quote-button:hover {
    background: #1a2414;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
    text-decoration: none !important;
}

/* Hide ALL potential search elements */
.sf-menu li.search,
.sm-blue li.search,
.sm-blue li.search-block,
.sm-blue li.search-item,
.menu-search,
.search-btn,
.btn-search,
.search_button,
header .search {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .header-main-wrap {
        padding: 5px 0 !important;
        border-bottom: none !important;
    }

    .header-main {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 15px !important;
        position: relative !important;
        min-height: 50px !important;
    }

    .logo-wrap {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
    }

    header .logo {
        background: transparent !important;
        padding: 0 !important;
    }

    header .logo img {
        height: 38px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .header-nav {
        flex: 1 !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .quote-wrap {
        position: absolute !important;
        left: 70% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 100 !important;
        width: auto !important;
        text-align: center !important;
        margin: 0 !important;
    }

    .quote-button {
        padding: 8px 12px !important;
        font-size: 10px !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    .mobile-menu-toggle {
        display: block !important;
        margin: 0 !important;
        font-size: 22px !important;
        color: #28361d !important;
        order: 10;
        /* Ensure it's on the right of items in header-nav */
    }

    .menu {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
        z-index: 999 !important;
        flex-direction: column !important;
        padding: 10px 0 !important;
    }

    .menu.vtx-menu-open {
        display: flex !important;
    }

    .menu.vtx-menu-open .navbar-collapse {
        display: block !important;
        width: 100% !important;
    }

    /* Style the list inside mobile menu */
    .header-main .menu .sf-menu,
    .header-main .menu .sm-blue {
        flex-direction: column !important;
        width: 100% !important;
        display: flex !important; /* Ensure the UL is visible */
    }

    .header-main .menu .sf-menu > li,
    .header-main .menu .sm-blue > li {
        width: 100% !important;
        border-bottom: 1px solid #f5f5f5 !important;
    }

    .header-main .menu .sf-menu > li > a,
    .header-main .menu .sm-blue > li > a {
        padding: 12px 20px !important;
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    .navbar-toggle {
        display: none !important;
    }
}