/* =========================================================
   HOLS-FIELD — PREMIUM HEADER
   Matches the hf-* classes in index.html
========================================================= */

:root {
    --hf-orange: #ff6a00;
    --hf-orange-dark: #e85b00;
    --hf-black: #050606;
    --hf-white: #ffffff;
}

/* =========================================================
   HEADER WRAPPER
========================================================= */

.hf-navbar {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    padding: 0 30px;
    z-index: 9999;
}

/* =========================================================
   NAV SHELL
========================================================= */

.hf-nav-shell {
    width: min(1740px, 100%);
    height: 80px;
    margin: 0 auto;

    display: flex;
    align-items: center;

    background: rgba(5, 7, 8, 0.94);

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.05);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;
}

/* subtle orange bottom glow */

.hf-nav-shell::after {
    content: "";
    position: absolute;

    left: 25%;
    right: 8%;

    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,106,0,.65),
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   BRAND
========================================================= */

.hf-brand {
    height: 100%;
    min-width: 285px;

    padding: 0 30px;

    display: flex;
    align-items: center;

    gap: 15px;

    color: #fff;
    text-decoration: none;

    border-right: 1px solid rgba(255,255,255,.10);

    flex-shrink: 0;
}

/* =========================================================
   BRAND DOT MARK
========================================================= */

.hf-brand-mark {
    width: 38px;
    height: 38px;

    display: grid;
    grid-template-columns: repeat(3, 7px);
    grid-template-rows: repeat(3, 7px);

    gap: 5px;

    flex-shrink: 0;
}

.hf-brand-mark span {
    width: 7px;
    height: 7px;

    display: block;

    background: var(--hf-orange);

    border-radius: 50%;

    box-shadow:
        0 0 8px rgba(255,106,0,.35);
}


/* =========================================================
   BRAND TEXT
========================================================= */

.hf-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hf-brand-text strong {
    color: #fff;

    font-family: "Space Grotesk", sans-serif;

    font-size: 22px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -0.8px;
}

.hf-brand-text strong em {
    color: var(--hf-orange);
    font-style: normal;
}

.hf-brand-text small {
    margin-top: 6px;

    color: rgba(255,255,255,.48);

    font-family: "Inter", sans-serif;

    font-size: 7px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.hf-navigation {
    height: 100%;

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    min-width: 0;
}

.hf-navigation > a {
    position: relative;

    height: 100%;

    padding: 0 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.76);

    text-decoration: none;
    white-space: nowrap;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 650;

    letter-spacing: .1px;

    transition:
        color .25s ease,
        background .25s ease;
}


/* vertical separators */

.hf-navigation > a:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 23px;

    width: 1px;
    height: 34px;

    background: rgba(255,255,255,.08);
}


/* hover */

.hf-navigation > a:hover {
    color: #fff;

    background:
        linear-gradient(
            180deg,
            rgba(255,106,0,.10),
            transparent
        );
}


/* active */

.hf-navigation > a.active {
    color: #fff;

    background:
        linear-gradient(
            180deg,
            rgba(255,106,0,.12),
            transparent
        );
}

.hf-navigation > a.active::before {
    content: "";

    position: absolute;

    left: 24%;
    right: 24%;

    bottom: 0;

    height: 3px;

    background: var(--hf-orange);

    border-radius: 4px 4px 0 0;

    box-shadow:
        0 0 14px rgba(255,106,0,.8);
}


/* =========================================================
   SERVICES CHEVRON
========================================================= */

.hf-navigation > a i {
    margin-left: 8px;

    color: var(--hf-orange);

    font-size: 9px;

    transition:
        transform .25s ease;
}

.hf-navigation > a:hover i {
    transform: translateY(2px);
}


/* =========================================================
   GET IN TOUCH BUTTON
========================================================= */

.hf-nav-cta {
    position: relative;

    min-width: 180px;
    height: 52px;

    margin: 0 12px 0 14px;

    padding: 0 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #ff7900,
            #ff5c00
        );

    border: 1px solid rgba(255,165,80,.75);

    border-radius: 10px;

    text-decoration: none;

    font-family: "Inter", sans-serif;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .8px;

    box-shadow:
        0 10px 28px rgba(255,106,0,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.hf-nav-cta i {
    font-size: 13px;

    transition:
        transform .25s ease;
}

.hf-nav-cta:hover {
    color: #fff;

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #ff8a1a,
            #ff6500
        );

    box-shadow:
        0 15px 35px rgba(255,106,0,.38);
}

.hf-nav-cta:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.hf-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    margin-right: 12px;

    align-items: center;
    justify-content: center;

    color: var(--hf-orange);

    background: rgba(255,106,0,.08);

    border: 1px solid rgba(255,106,0,.40);

    border-radius: 10px;

    font-size: 18px;

    cursor: pointer;
}


/* =========================================================
   LARGE LAPTOPS
========================================================= */

@media (max-width: 1400px) {

    .hf-brand {
        min-width: 250px;
        padding: 0 24px;
    }

    .hf-navigation > a {
        padding: 0 13px;
        font-size: 11px;
    }

    .hf-nav-cta {
        min-width: 155px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 1150px) {

    .hf-navbar {
        padding: 0 18px;
    }

    .hf-nav-shell {
        height: 72px;
    }

    .hf-brand {
        min-width: 215px;
        padding: 0 18px;
    }

    .hf-brand-mark {
        transform: scale(.85);
    }

    .hf-brand-text strong {
        font-size: 19px;
    }

    .hf-navigation > a {
        padding: 0 9px;
        font-size: 9px;
    }

    .hf-nav-cta {
        min-width: 130px;
        height: 46px;

        margin-left: 8px;

        padding: 0 14px;

        font-size: 9px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

    .hf-navbar {
        top: 10px;
        padding: 0 14px;
    }

    .hf-nav-shell {
        height: 68px;

        border-radius: 14px;
    }

    .hf-brand {
        min-width: 0;

        padding: 0 16px;

        border-right: 0;
    }

    .hf-brand-mark {
        width: 31px;
        height: 31px;

        grid-template-columns: repeat(3, 6px);
        grid-template-rows: repeat(3, 6px);

        gap: 4px;
    }

    .hf-brand-mark span {
        width: 6px;
        height: 6px;
    }

    .hf-brand-text strong {
        font-size: 18px;
    }

    .hf-brand-text small {
        display: none;
    }

    .hf-navigation {
        position: absolute;

        top: 76px;
        left: 0;
        right: 0;

        height: auto;

        display: none;

        flex-direction: column;
        align-items: stretch;

        padding: 10px;

        background: rgba(5,7,8,.98);

        border: 1px solid rgba(255,255,255,.12);

        border-radius: 14px;

        box-shadow:
            0 25px 60px rgba(0,0,0,.6);
    }

    .hf-navigation.mobile-open {
        display: flex;
    }

    .hf-navigation > a {
        width: 100%;
        height: 48px;

        justify-content: flex-start;

        padding: 0 16px;

        font-size: 12px;

        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .hf-navigation > a::after,
    .hf-navigation > a.active::before {
        display: none;
    }

    .hf-nav-cta {
        display: none;
    }

    .hf-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {

    .hf-navbar {
        padding: 0 10px;
    }

    .hf-brand {
        padding-left: 12px;
    }

    .hf-brand-text strong {
        font-size: 17px;
    }
}
/* =========================================================
   SERVICES — REMOVE DROPDOWN ARROW
========================================================= */

/* Services is the 3rd navigation item */
.nav-menu > li:nth-child(3) > a::after,
.nav-menu > li:nth-child(3)::after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
}

/* Remove any icon inside Services */
.nav-menu > li:nth-child(3) > a i,
.nav-menu > li:nth-child(3) > a svg,
.nav-menu > li:nth-child(3) > a .fa-chevron-down,
.nav-menu > li:nth-child(3) > a .fa-angle-down,
.nav-menu > li:nth-child(3) > a .dropdown-icon {
    display: none !important;
}

/* Make sure Services doesn't reserve space for an arrow */
.nav-menu > li:nth-child(3) > a {
    padding-right: 0 !important;
}