.altahub-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    backdrop-filter: none;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.altahub-header.is-sticky {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(8px);
}

.altahub-header__container {
    max-width: 1294px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.altahub-header__logo-container {
    width: 253px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.altahub-header__logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.altahub-header__logo {
    width: 253px;
    height: 68px;
}

.altahub-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.altahub-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.altahub-header__menu {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.altahub-header__menu-item {
    margin: 0;
}

.altahub-header__menu-link,
.altahub-header__menu li a {
    color: #FFF !important;
    text-align: center !important;
    font-feature-settings: 'liga' off, 'clig' off !important;
    font-family: 'League Spartan', Arial, sans-serif !important;
    font-size: 17.982px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 130% !important;
    /* 23.377px */
    padding: 0 16px !important;
    text-decoration: none !important;
    transition: opacity 0.3s ease !important;
}

.altahub-header__menu-link:hover {
    opacity: 0.8;
}

.altahub-header__btn,
.altahub-header__btn--contact {
    background: #fff !important;
    color: #191919 !important;
    text-align: center !important;
    font-feature-settings: 'liga' off, 'clig' off !important;
    font-family: 'League Spartan', Arial, sans-serif !important;
    font-size: 17.982px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 130% !important;
    /* 23.377px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.altahub-header__btn:hover {
    opacity: 0.9;
}

.altahub-header.is-sticky .altahub-header__btn,
.altahub-header.is-sticky .altahub-header__btn--contact {
    background: #9AD63C !important;
    color: #fff !important;
}

.altahub-header__hamburger {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #181818;
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 991px) {
    .altahub-header__nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        height: calc(100vh - 76px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    .altahub-header__logo-container {
        justify-content: flex-start !important;
        width: 136px !important;
    }
    .altahub-header__logo-container img,
    .altahub-header__logo-container a img {
        width: 136px !important;
    }
    .altahub-header__nav.is-open {
        transform: translateX(0);
    }
    .altahub-header__menu {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .altahub-header__hamburger {
        display: block;
    }
    body.nav-open {
        overflow: hidden;
    }
    .altahub-header__menu li a {
        color: #111111 !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.04 !important;
        letter-spacing: -0.04em !important;
        text-decoration: none !important;
        text-decoration-style: solid !important;
        text-decoration-offset: 0% !important;
    }
}


/* Sticky header color overrides */

.altahub-header.is-sticky .altahub-header__menu-link,
.altahub-header.is-sticky .altahub-header__menu li a {
    color: #111 !important;
}

.businesses-specializing__extra-info {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #525252;
}

.businesses-specializing__extra-info a {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: #525252;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-offset: 0%;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
}