    :root {
        --header-primary: #F28C1B;
        --header-primary-light: #f9a94d;
        --header-secondary: #1A1A2E;
        --header-white: #ffffff;
        --header-gray: #64748b;
        --header-light-bg: #f8fafc;
    }

    /* ==========================================
       HEADER WRAPPER
    ========================================== */
    .ml-header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    /* ==========================================
       TOP BAR
    ========================================== */
    .ml-topbar {
        padding: 8px 0;
    }

    .ml-topbar__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 32px;
    }

    .ml-topbar__left,
    .ml-topbar__right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .ml-topbar__item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    a.ml-topbar__item:hover {
        color: var(--header-primary);
    }

    .ml-topbar__item svg {
        width: 14px;
        height: 14px;
        color: var(--header-primary);
        flex-shrink: 0;
    }

    .ml-topbar__usp {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.85);
    }

    .ml-topbar__usp svg {
        width: 14px;
        height: 14px;
        color: var(--header-primary);
        flex-shrink: 0;
    }

    .ml-topbar__phone {
        background: var(--header-primary);
        color: var(--header-white) !important;
        padding: 5px 14px;
        border-radius: 6px;
        font-weight: 600;
        transition: background 0.2s ease;
    }

    .ml-topbar__phone:hover {
        background: var(--header-primary-light);
        color: var(--header-white) !important;
    }

    .ml-topbar__phone svg {
        color: var(--header-white);
    }

    .ml-topbar__divider {
        width: 1px;
        height: 14px;
        background: rgba(255, 255, 255, 0.2);
    }

    /* ==========================================
       MAIN HEADER
    ========================================== */
    .ml-header__main {
        transition: padding 0.3s ease;
    }

    .ml-header__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo */
    .ml-header__logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        z-index: 10;
    }

    .ml-header__logo img {
        height: 80px;
        width: auto;
        transition: all 0.3s ease;
    }

    /* Right side wrapper */
    .ml-header__right {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-left: auto;
    }

    /* Navigation */
    .ml-header__nav {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .ml-header__nav-item {
        position: relative;
    }

    .ml-header__nav-link {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 18px;
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .ml-header__nav-link:hover {
        color: var(--header-primary);
        background: rgba(255, 255, 255, 0.1);
    }

.ml-header__nav-link svg {
        width: 12px;
        height: 12px;
        transition: transform 0.3s ease;
    }

    .ml-header__nav-item:hover .ml-header__nav-link svg {
        transform: rotate(180deg);
    }

    /* Active indicator */
    .ml-header__nav-link--active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--header-primary);
        border-radius: 2px;
    }

    /* Dropdown */
    .ml-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 240px;
        background: var(--header-white);
        border-radius: 14px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        z-index: 100;
        padding: 12px;
        margin-top: 4px;
    }

    .ml-header__nav-item:hover .ml-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .ml-dropdown__link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .ml-dropdown__link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .ml-dropdown__link svg {
        width: 18px;
        height: 18px;
        color: var(--header-primary);
        flex-shrink: 0;
    }

    /* CTA Button */
    .ml-header__cta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.3px;
        color: var(--header-white);
        background: linear-gradient(135deg, var(--header-primary) 0%, #e07a0e 50%, var(--header-primary) 100%);
        background-size: 200% 100%;
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 24px rgba(242, 140, 27, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        margin-left: 16px;
        position: relative;
        overflow: hidden;
    }

    .ml-header__cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.6s ease;
    }

    .ml-header__cta:hover {
        background-position: 100% 0;
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(242, 140, 27, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .ml-header__cta:hover::before {
        left: 120%;
    }

    .ml-header__cta:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(242, 140, 27, 0.3);
    }

    .ml-header__cta svg {
        width: 16px;
        height: 16px;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .ml-header__cta:hover svg {
        transform: translateX(5px);
    }

    /* Mobile Toggle - unique minimal design */
    .ml-header__mobile-toggle {
        display: none;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 10;
        -webkit-tap-highlight-color: transparent;
    }

    .ml-toggle__lines {
        width: 26px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .ml-toggle__lines span {
        display: block;
        height: 2.5px;
        border-radius: 3px;
        background: var(--header-white);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .ml-toggle__lines span:nth-child(1) {
        width: 26px;
    }

    .ml-toggle__lines span:nth-child(2) {
        width: 18px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ml-toggle__lines span:nth-child(3) {
        width: 22px;
    }

    .ml-header__mobile-toggle:hover .ml-toggle__lines span:nth-child(2) {
        width: 26px;
    }

    .ml-header__mobile-toggle.is-active .ml-toggle__lines span:nth-child(1) {
        transform: rotate(45deg) translate(5.5px, 5.5px);
        width: 26px;
    }

    .ml-header__mobile-toggle.is-active .ml-toggle__lines span:nth-child(2) {
        opacity: 0;
        width: 0;
    }

    .ml-header__mobile-toggle.is-active .ml-toggle__lines span:nth-child(3) {
        transform: rotate(-45deg) translate(5.5px, -5.5px);
        width: 26px;
    }

    /* ==========================================
       MOBILE MENU
    ========================================== */
    .ml-mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 420px;
        height: 100vh;
        background: var(--header-white);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .ml-mobile-menu.is-active {
        right: 0;
    }

    .ml-mobile-menu__overlay {
        position: fixed;
        inset: 0;
        background: rgba(26, 26, 46, 0.6);
        backdrop-filter: blur(4px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .ml-mobile-menu__overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    .ml-mobile-menu__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #e5e7eb;
    }

    .ml-mobile-menu__logo {
        text-decoration: none;
    }

    .ml-mobile-menu__logo img {
        height: 100px;
        width: auto;
    }

    .ml-mobile-menu__close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--header-light-bg);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .ml-mobile-menu__close:hover {
        background: var(--header-primary);
        color: var(--header-white);
    }

    .ml-mobile-menu__close svg {
        width: 20px;
        height: 20px;
    }

    .ml-mobile-menu__nav {
        padding: 24px;
    }

    .ml-mobile-menu__item {
        border-bottom: 1px solid #f1f5f9;
    }

    .ml-mobile-menu__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--header-secondary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .ml-mobile-menu__link:hover {
        color: var(--header-primary);
    }

    .ml-mobile-menu__link svg {
        width: 18px;
        height: 18px;
        color: #cbd5e1;
        transition: all 0.3s ease;
    }

    .ml-mobile-menu__item.is-open .ml-mobile-menu__link svg {
        transform: rotate(180deg);
        color: var(--header-primary);
    }

    /* Mobile submenu */
    .ml-mobile-submenu {
        display: none;
        padding-bottom: 16px;
    }

    .ml-mobile-menu__item.is-open .ml-mobile-submenu {
        display: block;
    }

    .ml-mobile-submenu__link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 16px;
        font-size: 14px;
        font-weight: 500;
        color: var(--header-gray);
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .ml-mobile-submenu__link:hover {
        background: var(--header-light-bg);
        color: var(--header-primary);
    }

    .ml-mobile-submenu__link svg {
        width: 18px;
        height: 18px;
        color: var(--header-primary);
    }

    /* Mobile bottom section */
    .ml-mobile-menu__bottom {
        padding: 20px 24px 24px;
        border-top: 1px solid #f1f5f9;
    }

    /* Mobile contact - 3 column cards */
    .ml-mobile-menu__contact {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 16px;
    }

    .ml-mobile-menu__contact-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 16px 8px;
        background: #f8fafc;
        border: 1px solid #e8ecf1;
        border-radius: 14px;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: center;
        cursor: pointer;
    }

    a.ml-mobile-menu__contact-card:hover {
        border-color: rgba(242, 140, 27, 0.25);
        background: #ffffff;
        box-shadow: 0 4px 16px rgba(242, 140, 27, 0.08);
        transform: translateY(-2px);
    }

    .ml-mobile-menu__contact-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--header-primary), var(--header-primary-light));
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(242, 140, 27, 0.2);
    }

    .ml-mobile-menu__contact-icon svg {
        width: 18px;
        height: 18px;
        color: var(--header-white);
    }

    .ml-mobile-menu__contact-label {
        font-size: 11px;
        font-weight: 700;
        color: var(--header-primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ml-mobile-menu__contact-value {
        font-size: 11px;
        font-weight: 500;
        color: var(--header-gray);
        line-height: 1.3;
        word-break: break-all;
    }

    /* Mobile CTA - at bottom */
    .ml-mobile-menu__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px;
        font-size: 15px;
        font-weight: 700;
        color: var(--header-white);
        background: linear-gradient(135deg, var(--header-primary) 0%, #e07a0e 50%, var(--header-primary) 100%);
        background-size: 200% 100%;
        border-radius: 14px;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(242, 140, 27, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .ml-mobile-menu__cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.6s ease;
    }

    .ml-mobile-menu__cta:hover {
        background-position: 100% 0;
        box-shadow: 0 12px 32px rgba(242, 140, 27, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }

    .ml-mobile-menu__cta:hover::before {
        left: 120%;
    }

    .ml-mobile-menu__cta svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
    }

    .ml-mobile-menu__cta:hover svg {
        transform: translateX(4px);
    }

    /* ==========================================
       RESPONSIVE
    ========================================== */
    @media (max-width: 1024px) {
        .ml-header__nav,
        .ml-header__cta {
            display: none;
        }

        .ml-header__mobile-toggle {
            display: flex;
        }

        .ml-topbar {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .ml-header__container {
            padding: 0 20px;
        }

        .ml-mobile-menu {
            max-width: 100%;
        }
    }

    @media (max-width: 480px) {
        .ml-header__logo img {
            height: 40px;
        }
    }

    /* ==========================================
       RESPONSIVE FIXES - Additional breakpoints
    ========================================== */

    /* 1200px: Simplify topbar - hide USPs when space is tight, keep contact info */
    @media (max-width: 1200px) {
        .ml-topbar__usp {
            display: none;
        }

        .ml-topbar__divider {
            display: none;
        }

        .ml-topbar__container {
            gap: 16px;
        }
    }

    /* 768px: Reduce logo height, full-width dropdowns, adjust mobile menu */
    @media (max-width: 768px) {
        .ml-header__logo img {
            height: 50px;
        }

        .ml-mobile-menu {
            max-width: 100%;
            width: 100%;
        }

        .ml-dropdown {
            position: relative;
            width: 100%;
            max-width: 100%;
            border-radius: 10px;
            margin-top: 0;
            box-shadow: none;
        }

        /* Mobile menu overlay touch handling */
        .ml-mobile-menu__overlay {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        .ml-mobile-menu__overlay.is-active {
            cursor: pointer;
        }
    }

    /* 480px: Further reduce padding and font sizes in mobile menu */
    @media (max-width: 480px) {
        .ml-header__container {
            padding: 0 14px;
        }

        .ml-mobile-menu__nav {
            padding: 16px;
        }

        .ml-mobile-menu__link {
            font-size: 15px;
            padding: 14px 0;
        }

        .ml-mobile-submenu__link {
            font-size: 13px;
            padding: 10px 12px;
        }

        .ml-mobile-menu__cta {
            padding: 14px;
            font-size: 14px;
        }

        .ml-mobile-menu__header {
            padding: 16px;
        }

        .ml-mobile-menu__bottom {
            padding: 16px;
        }

        .ml-mobile-menu__contact {
            gap: 8px;
            margin-bottom: 12px;
        }

        .ml-mobile-menu__contact-card {
            padding: 12px 6px;
            border-radius: 12px;
        }

        .ml-mobile-menu__contact-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
        }

        .ml-mobile-menu__contact-icon svg {
            width: 16px;
            height: 16px;
        }

        .ml-mobile-menu__contact-value {
            font-size: 10px;
        }
    }
