@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYULTRALIGHTITALIC.OTF") format("opentype");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYTHINITALIC.OTF") format("opentype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYLIGHTITALIC.OTF") format("opentype");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYREGULAR.OTF") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYMEDIUM.OTF") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYBOLD.OTF") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYHEAVYITALIC.OTF") format("opentype");
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("../font/sf-pro-display/SFPRODISPLAYBLACKITALIC.OTF") format("opentype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --nav-brand-blue: rgb(0,160,255);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body *,
body *::before,
body *::after,
button,
input,
textarea,
select,
option {
    font-family: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}

.top-bar {
    width: 100%;
    max-width: 100%;
    background-color: #00b4ff;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5vw;
    font-size: 14px;
    line-height: 1.4;
    gap: 22px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.top-bar-center {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-left: auto;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 999px;
    font-weight: 500;
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
    transform-origin: center center;
    transition: transform 0.18s ease, font-weight 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.location-icon {
    font-size: 16px;
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 999px;
    opacity: 0.95;
    white-space: nowrap;
    color: #ffffff;
    text-decoration: none;
    transform-origin: center center;
    transition: transform 0.18s ease, font-weight 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.phone-link {
    font-weight: 600;
}

.phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}

.phone-icon svg {
    fill: currentColor;
    transition: fill 0.18s ease;
}

.location-link:hover,
.top-link:hover {
    transform: scale(1.04);
    font-weight: 600;
}

.top-bar-theme-light {
    background: #ffffff;
    color: #111827;
    border-bottom: 1px solid rgba(15,23,42,0.06);
}

.top-bar-theme-light .top-link,
.top-bar-theme-light .location-link {
    color: #111827;
}

.top-bar-theme-dark {
    background: #020817;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(148,163,253,0.18);
}

.top-bar-theme-dark .top-link,
.top-bar-theme-dark .location-link {
    color: #e5e7eb;
}

.top-bar-theme-brand {
    background: #00b4ff;
    color: #ffffff;
    border-bottom: 1px solid rgba(15,23,42,0.18);
}

.top-bar-density-compact {
    padding: 4px 12px;
    font-size: 12px;
}

.top-bar-density-cozy {
    padding: 6px 16px;
    font-size: 13px;
}

.top-bar-density-roomy {
    padding: 8px 24px;
    font-size: 15px;
}

.top-bar-condensed .top-link:not(.phone-link) {
    display: none;
}

.main-nav {
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(15,23,42,0.08);
    position: sticky;
    top: 0;
    z-index: 40;
}

.nav-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 19px 5vw;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 69px;
    height: 69px;
    border-radius: 12px;
    background-color: transparent;
    color: #00b4ff;
    font-size: 34px;
    font-weight: 700;
    overflow: hidden;
    margin-right: 50px;
}

.brand-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-mark {
    transform: skewX(-10deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    flex: 1;
    justify-content: flex-start;
}

.nav-link {
    border: none;
    padding: 7px 0;
    font-size: 16px;
    background: transparent;
    cursor: pointer;
    color: #374151;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
    vertical-align: middle;
}

.nav-link:hover {
    color: #00a0ff;
}

.nav-link.active {
    color: #00a0ff;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 24px;
    height: 2px;
    background-color: #00a0ff;
    border-radius: 999px;
}

.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-item-dropdown .nav-link {
    margin-top: 1px;
}

.nav-item-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
}

.nav-link.has-dropdown::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: center center;
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-link.has-dropdown::after {
    transform: rotate(-135deg);
}

.nav-cta {
    padding: 10px 24px;
    border-radius: 4px;
    background-color: #00a0ff;
    color: #ffffff !important;
    font-weight: 600;
    white-space: nowrap;
    font-size: 15px;
    transition: background-color 0.5s ease, color 0.5s ease;
    margin-left: auto;
}

.nav-cta:hover {
    background-color: #0086d6;
    color: #ffffff;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,10px);
    min-width: 200px;
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 4px 6px 18px rgba(15,23,42,0.12);
    opacity: 0;
    pointer-events: none;
    transition: all 0.22s ease;
    overflow: hidden;
    padding: 11px 0;
    z-index: 50;
}

.dropdown-columns {
    display: flex;
    align-items: stretch;
}

.dropdown-col {
    display: flex;
    flex-direction: column;
    min-width: 220px;
}

.dropdown-col + .dropdown-col {
    border-left: 1px solid rgba(15,23,42,0.08);
}

.dropdown-col .dropdown-link {
    white-space: nowrap;
}

.dropdown-link {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    color: #374151;
    transition: background-color 0.18s ease, color 0.18s ease;
}

.dropdown-link:hover {
    background-color: #e5f6ff;
    color: #00a0ff;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translate(-50%,0);
    pointer-events: auto;
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 26px;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #111827;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9999;
    cursor: pointer;
}

.nav-overlay-inner {
    width: 100%;
    max-width: 480px;
    padding: 18px 20px 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 100vh;
    cursor: default;
}

.nav-overlay-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    margin-bottom: 0;
}

.nav-overlay-brand-logo {
    height: 83px;
    width: auto;
    display: block;
    margin-bottom: 15%;
}

.nav-overlay-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 83px;
    height: 83px;
    border-radius: 50%;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-overlay-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

.nav-overlay-link {
    text-decoration: none;
    font-size: 20px;
    line-height: 1.4;
    padding: 4px 10px;
    border-radius: 0;
    color: #111111;
    transition: color 0.18s ease, transform 0.18s ease;
    cursor: pointer;
}

.nav-overlay-link:hover {
    color: var(--nav-brand-blue);
    transform: scale(1.1);
}

.nav-overlay-link:focus {
    outline: none;
    color: var(--nav-brand-blue);
    transform: scale(1.1);
}

.nav-overlay-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    align-self: center;
}

.nav-overlay-close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.nav-overlay.nav-overlay-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-overlay-lock {
    overflow: hidden;
}

.nav-layout-center-brand .nav-inner {
    justify-content: center;
}

.nav-inner-spread {
    justify-content: space-between;
}

.brand-logo-center {
    margin: 0 auto;
}

.nav-links-center {
    justify-content: center;
    text-align: center;
}

.nav-links-right {
    margin-left: auto;
}

.nav-cta-inline {
    margin-left: 12px;
}

.nav-cta-pill {
    border-radius: 999px;
}

.nav-cta-left {
    order: -1;
    margin-right: 16px;
}

.nav-toggle-left {
    order: -1;
    margin-right: 8px;
}

.nav-toggle-right {
    margin-left: 8px;
}

.nav-sticky {
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
}

.nav-overlay-left .nav-overlay-inner {
    align-items: flex-start;
    text-align: left;
}

.nav-overlay-center .nav-overlay-inner {
    align-items: center;
    text-align: center;
}

.nav-overlay-right .nav-overlay-inner {
    align-items: flex-end;
    text-align: right;
}

.nav-overlay-grid .nav-overlay-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.nav-overlay.nav-overlay-open .btn-primary.nav-cta.nav-overlay-cta {
    display: inline-flex !important;
}

@media (max-width: 960px) {
    .nav-inner {
        padding: 10px 5vw;
        gap: 16px;
    }

    .brand-logo {
        margin-right: auto;
    }

    .nav-cta,
    .btn-primary.nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 5vw;
        left: auto;
        padding: 18px 18px 22px 18px;
        background-color: #ffffff;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 8px 22px rgba(15,23,42,0.12);
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: all 0.26s ease;
        align-items: flex-end;
    }

    .nav-links.nav-open {
        display: flex;
        max-height: 400px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item-dropdown {
        width: 100%;
        display: block;
    }

    .nav-item-dropdown .nav-link {
        width: 100%;
        justify-content: flex-end;
        margin-top: 0;
    }

    .dropdown-menu {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 6px 0;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
    }

    .dropdown-columns {
        display: block;
    }

    .dropdown-col {
        min-width: 100%;
    }

    .dropdown-col + .dropdown-col {
        border-left: 0;
        border-top: 1px solid rgba(15,23,42,0.08);
    }
}

@media (max-width: 800px) {
    .top-bar {
        padding: 6px 10px;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .top-bar-left {
        flex: 0 0 auto;
    }

    .top-bar-center {
        display: none;
    }

    .top-bar-right {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .top-link:not(.phone-link) {
        display: none;
    }

    .location-link {
        font-size: 12px;
        padding: 4px 6px;
    }

    .phone-link {
        display: inline-flex;
        font-size: 13px;
        padding: 4px 8px;
    }

    .top-bar-mobile-stack {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: stretch;
    }

    .top-bar-mobile-stack .top-bar-left,
    .top-bar-mobile-stack .top-bar-center,
    .top-bar-mobile-stack .top-bar-right {
        flex: 0 0 auto;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .top-bar-mobile-inline {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .top-bar-mobile-inline::-webkit-scrollbar {
        display: none;
    }

    .top-bar-mobile-priority-phone {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .top-bar-mobile-priority-phone .top-bar-left,
    .top-bar-mobile-priority-phone .top-bar-center,
    .top-bar-mobile-priority-phone .top-bar-right {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .top-bar-mobile-priority-phone .top-link {
        display: none;
    }

    .top-bar-mobile-priority-phone .phone-link {
        display: inline-flex;
        font-size: 13px;
        padding: 4px 8px;
    }

    .top-bar-mobile-priority-phone .location-link {
        font-size: 12px;
        padding: 4px 6px;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        width: 54px;
        height: 54px;
        margin-right: auto;
    }

    .nav-inner {
        padding: 10px 4vw;
        gap: 12px;
    }
}

@media (min-width: 961px) {
    .nav-toggle {
        display: none;
    }

    .nav-overlay {
        display: none;
    }
}

.subrental-cta-btn {
    color: #ffffff !important;
}

.subproduct-each-learnmore-btn {
    color: #ffffff !important; 
}