/* =========================================================
   NAVBAR
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255,
            255,
            255,
            0.94);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    transition:
        box-shadow var(--transition),
        background var(--transition);

}


.site-header.scrolled {

    background: rgba(255,
            255,
            255,
            0.98);

    box-shadow: var(--shadow-sm);

}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================
   CLICK2CLAIMHELP NAVBAR LOGO
========================================= */

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 100px;
}

.nav-logo img {
    width: 250px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
    display: block;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 4px;

}


/* =========================================================
   NAV LINKS
========================================================= */

.nav-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 46px;

    padding: 0 14px;

    color: #334155;

    font-size: 14px;

    font-weight: 600;

    transition:
        color 200ms ease;

}


/* =========================================================
   HOVER TEXT
   BLUE → INDIGO
========================================================= */

.nav-link:hover {

    background:
        linear-gradient(135deg,
            #1d4ed8,
            #4338ca);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   RED UNDERLINE
========================================================= */

.nav-link::after {

    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 3px;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #ef4444,
            #b91c1c);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 220ms ease;

}


.nav-link:hover::after {

    transform:
        scaleX(1);

}


/* =========================================================
   NAV CTA
========================================================= */

/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-left: 10px;

    padding: 0 20px;

    border: none;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #1d4ed8 0%,
            #4338ca 100%);

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    box-shadow:
        0 7px 20px rgba(29, 78, 216, 0.20);

    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        background 200ms ease;

}


.nav-cta:hover {

    background:
        linear-gradient(135deg,
            #ef4444 0%,
            #dc2626 50%,
            #b91c1c 100%);

    box-shadow:
        0 9px 24px rgba(185, 28, 28, 0.25);

    transform:
        translateY(-2px);

}


.nav-cta svg {

    transition:
        transform 200ms ease;

}


.nav-cta:hover svg {

    transform:
        translateX(4px);

}





/* =========================================================
   DISABILITY BENEFITS DROPDOWN
========================================================= */

.nav-dropdown {

    position: relative;

}


/* =========================================================
   DROPDOWN BUTTON
========================================================= */

.nav-dropdown-toggle {

    position: relative;

    min-height: 46px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 0 14px;

    background: transparent;

    color: #334155;

    font-size: 14px;

    font-weight: 600;

    cursor: pointer;

    transition: color 200ms ease;

}


/* =========================================================
   BLUE → INDIGO HOVER
========================================================= */

.nav-dropdown-toggle:hover,
.nav-dropdown:hover .nav-dropdown-toggle {

    background:
        linear-gradient(135deg,
            #1d4ed8,
            #4338ca);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   RED UNDERLINE
========================================================= */

.nav-dropdown-toggle::after {

    content: "";

    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 3px;

    height: 2px;

    border-radius: 999px;

    background:
        linear-gradient(90deg,
            #ef4444,
            #b91c1c);

    transform:
        scaleX(0);

    transform-origin: center;

    transition:
        transform 220ms ease;

}


.nav-dropdown:hover .nav-dropdown-toggle::after {

    transform:
        scaleX(1);

}


.nav-dropdown-toggle svg {

    transition:
        transform 200ms ease;

}


.nav-dropdown:hover .nav-dropdown-toggle svg {

    transform:
        rotate(180deg);

}


/* =========================================================
   DROPDOWN PANEL
========================================================= */

.nav-dropdown-menu {

    position: absolute;

    top: calc(100% + 10px);

    left: 50%;

    width: 350px;

    padding: 8px;

    background: #ffffff;

    border:
        1px solid #e2e8f0;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.14);

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, -8px);

    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 180ms ease;

    z-index: 100;


}


/* =========================================================
   SHOW DROPDOWN
========================================================= */

.nav-dropdown:hover .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}


/* =========================================================
   DROPDOWN ITEMS
========================================================= */

.nav-dropdown-menu a {

    position: relative;

    display: flex;

    flex-direction: column;

    gap: 2px;

    padding: 13px 14px;

    border-radius: 10px;

    color: #1e293b;

    transition:
        background 180ms ease,
        transform 180ms ease;

}


.nav-dropdown-menu a:hover {

    background:
        linear-gradient(90deg,
            #eff6ff,
            #f8fafc);

    transform:
        translateX(3px);

}


/* =========================================================
   DROPDOWN TITLE
========================================================= */

.dropdown-title {

    font-size: 14px;

    font-weight: 700;

    color: #1e293b;

    transition:
        color 180ms ease;

}


.nav-dropdown-menu a:hover .dropdown-title {

    background:
        linear-gradient(135deg,
            #1d4ed8,
            #4338ca);

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.dropdown-description {

    color: #64748b;

    font-size: 11px;

    line-height: 1.4;

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {

    width: 44px;

    height: 44px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background: var(--white);

    cursor: pointer;

}


.mobile-menu-toggle span {

    width: 20px;

    height: 2px;

    display: block;

    border-radius: 4px;

    background: var(--text-dark);

    transition:
        transform var(--transition),
        opacity var(--transition);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {

    display: none;

    max-height: 0;

    overflow: hidden;

    background: var(--white);

    border-top: 1px solid transparent;

    transition:
        max-height var(--transition-slow),
        border-color var(--transition);

}


.mobile-menu.open {

    max-height: 500px;

    border-top-color: var(--border);

}


.mobile-menu-inner {

    width: min(calc(100% - 30px),
            var(--container-width));

    margin-inline: auto;

    padding: 14px 0 22px;

}


.mobile-nav-link {

    min-height: 48px;

    display: flex;

    align-items: center;

    padding: 0 4px;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    font-size: 18px;

    font-weight: 600;

}


.mobile-nav-link:hover {

    color: var(--primary);

}


.mobile-nav-cta {

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 16px;

    border-radius: 999px;

    background:
        linear-gradient(135deg,
            #1d4ed8,
            #4338ca);

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    transition:
        background 200ms ease,
        transform 200ms ease;

}


.mobile-nav-cta:hover {

    background:
        linear-gradient(135deg,
            #ef4444,
            #b91c1c);

    transform:
        translateY(-1px);

}


/* =========================================================
   MOBILE MENU ANIMATION
========================================================= */

.mobile-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px) rotate(45deg);

}


.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px) rotate(-45deg);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {

        gap: 0;

    }


    .nav-link {

        padding-inline: 9px;

        font-size: 18px;

    }


    .nav-cta {

        margin-left: 6px;

        padding-inline: 14px;

    }

}


@media (max-width: 900px) {

    .desktop-nav {

        display: none;

    }


    .mobile-menu-toggle {

        display: flex;

    }


    .mobile-menu {

        display: block;

    }

}


@media (max-width: 480px) {

    .navbar {

        min-height: 70px;

    }


    .brand-mark {

        width: 35px;

        height: 35px;

        border-radius: 10px;

    }


    .brand-text {

        font-size: 20px;

    }

}


/* =========================================================
   MOBILE DISABILITY DROPDOWN
========================================================= */

.mobile-dropdown {

    border-bottom:
        1px solid var(--border);

}


.mobile-dropdown-toggle {

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 4px;

    background: transparent;

    color: #334155;

    font-size: 18px;

    font-weight: 600;

    cursor: pointer;

}


.mobile-dropdown-toggle svg {

    transition:
        transform 200ms ease;

}


.mobile-dropdown.open .mobile-dropdown-toggle {

    color: #1d4ed8;

}


.mobile-dropdown.open .mobile-dropdown-toggle svg {

    transform:
        rotate(180deg);

}


/* =========================================================
   MOBILE SUBMENU
========================================================= */

.mobile-dropdown-menu {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 300ms ease,
        opacity 200ms ease;

}


.mobile-dropdown.open .mobile-dropdown-menu {

    max-height: 500px;

    opacity: 1;

    padding-bottom: 8px;

}


.mobile-dropdown-menu a {

    display: flex;

    flex-direction: column;

    gap: 1px;

    padding:
        10px 10px 10px 18px;

    color: #475569;

    font-size: 16px;

    border-radius: 8px;

}


.mobile-dropdown-menu a:hover {

    background: #eff6ff;

    color: #1d4ed8;

}


.mobile-dropdown-menu small {

    color: #94a3b8;

    font-size: 15px;

}