/*body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    
}*/
:root {
    --bexon-dark: #0B0F19;
    --bexon-accent: #D1AA57;
    --bexon-accent-dim: rgba(209, 170, 87, 0.15);
    --bexon-gray-dark: #121824;
    --bexon-gray-light: #F4F5F8;
    --bexon-border: #E4E7EC;
    --bexon-border-dark: #1F2937;
    --bexon-text-dark: #0B0F19;
    --bexon-text-muted: #5C6470;
    --v-home: #C05F38;
    --v-boat: #2A7D9B;
    --v-air: #54619C;
    --v-rv: #3C7A52;
    --v-llc: #7A3340;
    --v-spv: #9C7322;
    --v-married: #C14D6B;
    --v-coparent: #5E7689;
}

.w-3\.5 {
    width: 0.875rem;
}

.h-3\.5 {
    height: 0.875rem;
}

/* STICKY TRANSPARENT NAV */
nav {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.promo-closed nav {
    top: 0;
}

/* Scrolled State for Nav */
nav.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--bexon-border);
    box-shadow: 0 10px 30px -10px rgba(11, 15, 25, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-links a.link,
    .nav-links button.link-btn {
        font-size: 0.79rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.8);
        transition: all .3s ease;
        background: none;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

        .nav-links a.link:hover,
        .nav-links button.link-btn:hover {
            color: #fff;
        }

nav.scrolled .nav-links a.link,
nav.scrolled .nav-links button.link-btn {
    color: var(--bexon-text-muted);
}

    nav.scrolled .nav-links a.link:hover,
    nav.scrolled .nav-links button.link-btn:hover {
        color: var(--bexon-text-dark);
    }

.nav-cta {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    background: #d1aa57 !important;
    color: #0b0f19 !important;
    border-radius: 4px !important;
    transition: all .25s ease !important;
}

    .nav-cta:hover {
        background: #fff;
        color: #0b0f19 !important;
        box-shadow: 0 8px 20px -6px rgba(255, 255, 255, 0.3);
    }


nav.scrolled .nav-cta {
    background: rgb(0, 41, 58);
    color: #fff !important;
}

.nav-cta {
    font-size: 0.75rem !important;
    padding: 12px 17px !important;
}

    nav.scrolled .nav-cta:hover {
        background: var(--bexon-accent);
        color: var(--bexon-dark) !important;
        box-shadow: 0 8px 20px -6px rgba(209, 170, 87, 0.6);
    }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin: 5px 0;
        transition: 0.3s;
    }

nav.scrolled .nav-toggle span {
    background: var(--bexon-dark);
}
  nav.scrolled .nav-toggle.active span {
            background: #fff;
        }
/* DROPDOWN NAVIGATION COMPONENT */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid var(--bexon-border);
    border-radius: 8px;
    box-shadow: 0 20px 40px -10px rgba(11, 15, 25, 0.15);
    width: 280px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 16px;
    border-radius: 6px;
    color: var(--bexon-text-muted) !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid transparent;
}

    .dropdown-item:hover {
        background: var(--bexon-gray-light);
        color: var(--bexon-text-dark) !important;
    }

.dropdown-divider {
    height: 1px;
    background: var(--bexon-border);
    margin: 6px 0;
}
div#solutionsDropdown {
    top: -1px;
}

img#navLogo {
    height: 40px;
}

@media (max-width: 900px) {
    .nav-inner {
        padding: 16px 24px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        border-radius: 0px;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background: #0b0f19;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 50px -20px rgba(11,15,25,0.15);
        z-index: 90;
        overflow-y: auto;
    }

        .nav-links.open {
            transform: translateX(0);
        }

    .nav-toggle {
        display: block;
        z-index: 95;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }

    .dropdown-item {
        color: rgba(255, 255, 255, 0.7) !important;
    }

        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff !important;
        }

    .nav-links a.link,
    .nav-links button.link-btn {
        color: rgba(255, 255, 255, 0.8) !important;
    }
}


/* PROMO BAR */
.promo {
    background: var(--bexon-dark) !important;
    color: #fff !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    padding: 12px 44px 12px 20px !important;
    position: relative !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    border-bottom: 1px solid var(--bexon-border-dark) !important;
    z-index: 101 !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

    .promo strong {
        color: var(--bexon-accent);
        font-weight: 700;
    }

.promo-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .promo-close:hover {
        opacity: 1;
        color: var(--bexon-accent);
    }

.promo.hide {
    display: none;
}

/* STICKY TRANSPARENT NAV */
nav {
    position: fixed;
    top: 45px; /* Sits below the promo bar initially */
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body.promo-closed nav {top: 0;}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 18px;
    background: var(--bexon-dark);
    color: #fff;
    border: 1px solid var(--bexon-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

    .back-to-top:hover {
        background: var(--bexon-accent);
        color: var(--bexon-dark);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px -5px rgba(209, 170, 87, 0.4);
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top .stroke-current {
        stroke: currentColor;
    }

    .back-to-top .w-5 {
        width: 1.25rem;
    }

    .back-to-top .h-5 {
        height: 1.25rem;
    }

    .back-to-top .stroke-current {    }


/* LUXURY DARK FOOTER */
footer {
    background: var(--bexon-dark);
    color: rgba(255,255,255,0.6);
    padding: 90px 0 40px;
    border-top: 1px solid var(--bexon-border-dark);
    font-family: 'Plus Jakarta Sans', sans-serif!important;
}

.foot-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.foot-brand p {
    margin-top: 18px;
    font-size: 0.95rem;
    max-width: 320px;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
}

.foot-col h4 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bexon-accent);
    margin-bottom: 20px;
}

.foot-col a {
    display: block;
    font-size: 0.92rem;
	    text-decoration: none;
    padding: 6px 0;
    color: rgba(255,255,255,0.45);
    transition: all .2s ease;
	
}

    .foot-col a:hover {
        color: #fff;
        padding-left: 4px;
    }

.foot-bottom {
    margin-top: 64px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}

.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.wrap .fill-current { fill: #85878c;}

.wrap a.rounded-full{border-style: solid;}

.wrap .w-4 {
    width: 1rem;
}
.wrap .h-4 { height: 1rem;}

.wrap .w-8 { width: 2rem;}
.wrap .h-8 { height: 2rem;}

.wrap.text-white\/50 {
  color: rgb(255 255 255 / 0.5);
}
.wrap .border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.wrap .border {
  border-width: 1px;
}
.wrap .rounded-full {
  border-radius: 9999px;
}
.wrap .justify-center {
    justify-content: center;
}

.wrap .items-center {
    align-items: center;
}
.wrap .gap-3 { gap: 0.75rem;}
.wrap .items-center { align-items: center;}
.wrap .flex { display: flex;}
.wrap .mt-6 { margin-top: 1.5rem;}





.hover\:text-\[var\(--bexon-accent\)\]:hover {
    color: var(--bexon-accent);
}

@media (max-width: 900px) {
    .nav-links.open {
        transform: translateX(0);
		height:100vh;
    }
}
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80%;
        max-width: 320px;
        background: var(--bexon-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -20px 0 50px -20px rgba(11, 15, 25, 0.15);
        z-index: 90;
        overflow-y: auto;
		height:100vh;
    }
}

@media (max-width: 767px) {
    .foot-top {
        grid-template-columns: 1fr;
    }
    .promo {
        font-size: 0.75rem !important;
        padding: 9px 44px 6px 20px !important;
    }
}

