:root {
    --realtor-blue: #002e6e;
    --realtor-blue-dark: #001a3d;
    --realtor-green: #10b981;
    --realtor-bg: #f8f9fa;
    --realtor-text: #0f172a;
    --realtor-muted: #64748b;
    --realtor-border: #e2e8f0;
    --realtor-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

* { letter-spacing: 0; }

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--realtor-text);
    background: #fff;
}

.navbar-shell {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: top .25s ease;
}

.navbar-stage {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.navbar-premium {
    position: relative;
    min-height: 74px;
    width: auto;
    margin-left: auto;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, .88);
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .11);
    padding: .62rem 1rem;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.floating-brand {
    position: absolute;
    left: 0;
    top: 50%;
    width: 240px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(-50%);
    z-index: 2;
    transition: width .25s ease, min-height .25s ease, padding .25s ease, background-color .25s ease, border-radius .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.floating-brand img {
    width: 100%;
    max-height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .26));
    transition: max-height .25s ease, filter .25s ease;
}

.navbar-shell.is-scrolled {
    top: 10px;
}

.navbar-shell.is-scrolled .floating-brand {
    width: 226px;
    min-height: 70px;
    padding: .55rem .8rem;
    background: rgba(2, 8, 23, .9);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(2, 8, 23, .32);
    backdrop-filter: blur(14px);
}

.navbar-shell.is-scrolled .floating-brand img {
    max-height: 58px;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .28));
}

.navbar-shell.is-scrolled .navbar-premium {
    background: rgba(2, 8, 23, .88);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 18px 42px rgba(2, 8, 23, .3);
}

.navbar-shell.is-scrolled .navbar-premium .nav-link {
    color: rgba(255, 255, 255, .88);
}

.navbar-shell.is-scrolled .navbar-premium .nav-link:hover,
.navbar-shell.is-scrolled .navbar-premium .nav-link:focus {
    color: #fff;
}

.navbar-shell.is-scrolled .navbar-premium .navbar-toggler-icon {
    filter: invert(1);
}

.mobile-nav-panel {
    display: none;
}

.nav-link {
    color: #334155;
    font-weight: 800;
    font-size: .94rem;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--realtor-blue);
}

.btn-realtor {
    --bs-btn-bg: var(--realtor-green);
    --bs-btn-border-color: var(--realtor-green);
    --bs-btn-hover-bg: #059669;
    --bs-btn-hover-border-color: #059669;
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    border-radius: 999px;
    font-weight: 900;
    padding: .76rem 1.2rem;
    box-shadow: 0 12px 28px rgba(16, 185, 129, .25);
}

.btn-visit-animated {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 48px;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: 0;
    border-radius: 999px;
    padding: .68rem .98rem;
    font-size: .86rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(239, 68, 68, .28);
    animation: realtorFloat 1.75s ease-in-out infinite;
}

.btn-visit-animated::after {
    content: "";
    position: absolute;
    inset: -6px;
    z-index: -1;
    border-radius: inherit;
    border: 2px solid rgba(245, 158, 11, .42);
    animation: realtorPulse 1.75s ease-out infinite;
}

.btn-visit-animated:hover,
.btn-visit-animated:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, .34);
}

.navbar-shell.is-scrolled .btn-visit-animated {
    box-shadow: 0 16px 34px rgba(245, 158, 11, .2);
}

@keyframes realtorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes realtorPulse {
    0% {
        opacity: .82;
        transform: scale(.96);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

.mega-dropdown { position: static; }

.mega-menu {
    width: min(1080px, calc(100vw - 2rem));
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    top: calc(100% + 1rem) !important;
    border: 0;
    border-radius: 26px;
    padding: 1.4rem;
    box-shadow: var(--realtor-shadow);
    background: #fff;
}

.mega-title {
    color: var(--realtor-blue);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.mega-link {
    display: block;
    color: #334155;
    text-decoration: none;
    font-weight: 700;
    padding: .54rem .65rem;
    border-radius: 12px;
}

.mega-link:hover {
    color: var(--realtor-blue);
    background: #f1f5f9;
}

.mega-all {
    color: #fff;
    background: linear-gradient(135deg, var(--realtor-blue), var(--realtor-green));
    border-radius: 18px;
    text-decoration: none;
    padding: 1rem;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fallback-hero {
    --hero-image: url("../assets/img/photo2.png");
}

.hero-carousel-wrap,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-slide {
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: #0f172a;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .34) 46%, rgba(0, 0, 0, .04) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    background-color: #0f172a;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .34) 46%, rgba(0, 0, 0, .04) 100%),
        var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::after,
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, transparent 30%, rgba(2, 8, 23, .16) 100%),
        radial-gradient(circle at 18% 55%, rgba(16, 185, 129, .08), transparent 32%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 130px;
}

.hero-carousel .carousel-item {
    transition: opacity 1s ease-in-out;
}

.hero-carousel.carousel-fade .carousel-item:not(.active):not(.carousel-item-start):not(.carousel-item-end) {
    opacity: 0;
    pointer-events: none;
}

.hero-carousel.carousel-fade .carousel-item:not(.active):not(.carousel-item-start):not(.carousel-item-end) .hero-content {
    visibility: hidden;
}

.hero-carousel.is-ready .carousel-item .hero-content {
    transition: visibility 0s linear .18s;
}

.hero-indicators {
    bottom: 2rem;
    z-index: 4;
    gap: .55rem;
    margin-bottom: 0;
}

.hero-indicators [data-bs-target] {
    width: 44px;
    height: 5px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, .46);
    opacity: 1;
    transition: width .22s ease, background-color .22s ease;
}

.hero-indicators .active {
    width: 70px;
    background-color: var(--realtor-green);
}

.hero-control {
    z-index: 4;
    width: 8%;
    opacity: 0;
    transition: opacity .22s ease;
}

.hero-carousel:hover .hero-control,
.hero-carousel:focus-within .hero-control {
    opacity: .72;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-size: 46%;
    border-radius: 999px;
    background-color: rgba(0, 46, 110, .48);
    backdrop-filter: blur(8px);
}

.hero-copy {
    max-width: 820px;
    color: #fff;
    text-shadow: 0 10px 28px rgba(0, 0, 0, .35);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #bbf7d0;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
    margin-bottom: 1rem;
    text-shadow: none;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 6.25rem);
    line-height: .95;
    font-weight: 900;
    margin-bottom: 1.25rem;
}

.hero p {
    color: rgba(255, 255, 255, .88);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 680px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.hero-sales-primary {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-price-cta,
.hero-visit-cta {
    position: relative;
    isolation: isolate;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    padding: .72rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, .24);
    box-shadow: 0 18px 36px rgba(2, 8, 23, .22);
}

.hero-price-cta {
    background: linear-gradient(135deg, var(--realtor-blue), #0ea5e9);
    animation: heroCtaFloat 1.75s ease-in-out infinite;
}

.hero-price-cta::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 2px solid rgba(245, 158, 11, .45);
    border-radius: inherit;
    animation: heroCtaPulse 1.75s ease-out infinite;
}

.hero-visit-cta {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    animation: heroCtaFloat 2.15s ease-in-out infinite;
}

.hero-price-cta:hover,
.hero-visit-cta:hover {
    color: #fff;
    transform: translateY(-3px);
}

.hero-offer-marquee {
    position: relative;
    overflow: hidden;
    width: fit-content;
    max-width: min(640px, 100%);
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-top: 1.15rem;
    padding: .78rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(245, 158, 11, .96), rgba(239, 68, 68, .94));
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(239, 68, 68, .24);
    animation: heroCtaFloat 1.9s ease-in-out infinite;
}

.hero-offer-marquee::after {
    content: "";
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -30%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: rotate(18deg);
    animation: offerShine 2.5s ease-in-out infinite;
}

.hero-offer-marquee i {
    color: #fff7ed;
}

@keyframes offerShine {
    0% { left: -35%; }
    55%, 100% { left: 110%; }
}

.hero-close-note {
    width: fit-content;
    max-width: 680px;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1rem;
    padding: .72rem .95rem;
    color: #fff;
    background: rgba(2, 8, 23, .42);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.hero-close-note i {
    color: #fbbf24;
}

@keyframes heroCtaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes heroCtaPulse {
    0% {
        opacity: .86;
        transform: scale(.96);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #fff;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .72rem 1rem;
    backdrop-filter: blur(10px);
}

.section-pad { padding: 96px 0; }
.section-soft { background: var(--realtor-bg); }

.section-title {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-title h2 {
    color: var(--realtor-blue);
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.02;
}

.project-card {
    height: 100%;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--realtor-shadow);
}

.project-card img {
    height: 238px;
    object-fit: cover;
    background: #e2e8f0;
}

.project-card .card-body { padding: 1.25rem; }

.project-card h3 {
    color: var(--realtor-blue);
    font-weight: 900;
    font-size: 1.2rem;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #0f766e;
    background: #ccfbf1;
    border-radius: 999px;
    padding: .38rem .7rem;
    font-size: .82rem;
    font-weight: 900;
}

.contact-band {
    background: linear-gradient(135deg, var(--realtor-blue) 0%, #075985 55%, var(--realtor-green) 100%);
    color: #fff;
    border-radius: 34px;
    padding: clamp(1.4rem, 4vw, 3rem);
    box-shadow: var(--realtor-shadow);
}

.contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 1.25rem;
    color: var(--realtor-text);
}

.form-control,
.form-select {
    border-radius: 14px;
    border-color: var(--realtor-border);
    min-height: 52px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(0, 46, 110, .55);
    box-shadow: 0 0 0 .22rem rgba(0, 46, 110, .10);
}

.guided-visit-section {
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.guided-visit-band {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(0, 46, 110, .97), rgba(12, 74, 110, .94) 48%, rgba(16, 185, 129, .96)),
        url("../assets/img/photo2.png");
    background-size: cover;
    background-position: center;
    border-radius: 34px;
    padding: clamp(1.25rem, 4vw, 3rem);
    box-shadow: var(--realtor-shadow);
}

.guided-visit-band::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(0deg, rgba(2, 8, 23, .22), transparent);
    pointer-events: none;
}

.guided-visit-copy,
.guided-visit-form {
    position: relative;
    z-index: 1;
}

.guided-visit-copy h2 {
    max-width: 760px;
    font-size: clamp(2rem, 4.8vw, 4.35rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 1rem;
}

.guided-visit-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.08rem;
}

.guided-benefits {
    display: grid;
    gap: .85rem;
    max-width: 680px;
    margin-top: 1.5rem;
}

.guided-benefit {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-height: 56px;
    padding: .85rem 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.guided-benefit i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    color: #022c22;
    background: #bbf7d0;
    border-radius: 50%;
}

.departure-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1rem;
    max-width: 760px;
    margin-top: 1.5rem;
}

.departure-card > div {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(2, 8, 23, .34);
}

.departure-card span,
.departure-card small {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-weight: 700;
}

.departure-card strong {
    display: block;
    margin-top: .35rem;
    font-size: 1.02rem;
}

.guided-visit-form {
    height: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--realtor-text);
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 26px;
    padding: clamp(1rem, 2.6vw, 1.5rem);
    box-shadow: 0 24px 52px rgba(2, 8, 23, .24);
}

.visit-form-header {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1.25rem;
}

.visit-form-header > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    color: #fff;
    background: var(--realtor-blue);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 46, 110, .22);
}

.visit-form-header h3 {
    color: var(--realtor-blue);
    font-weight: 900;
    font-size: 1.35rem;
    margin: 0;
}

.visit-form-header p {
    color: var(--realtor-muted);
    margin: .15rem 0 0;
    font-weight: 700;
}

.visit-time-lock {
    display: flex;
    align-items: center;
    gap: .65rem;
    min-height: 48px;
    padding: .75rem .9rem;
    color: #064e3b;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 16px;
    font-weight: 900;
}

.flatpickr-day.today {
    border-color: var(--realtor-blue);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--realtor-green);
    border-color: var(--realtor-green);
}

.footer-corporate {
    background: #071225;
    color: rgba(255, 255, 255, .76);
    padding: 72px 0 26px;
}

.footer-logo {
    max-width: 210px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-corporate h3 {
    color: #fff;
    font-size: .9rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-corporate a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
}

.footer-corporate a:hover { color: #fff; }

.social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

.nuvox-credit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100%, 430px);
    padding: .8rem .9rem .8rem 1rem;
    color: rgba(255, 255, 255, .82) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.nuvox-credit:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(99, 230, 255, .42);
}

.nuvox-credit img {
    flex: 0 0 auto;
    width: 190px;
    height: 142px;
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    background: #061224;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

.nuvox-credit strong {
    color: #8ff8ff;
    font-weight: 900;
}

@media (max-width: 767.98px) {
    .nuvox-credit {
        align-self: stretch;
        flex-direction: column;
        align-items: flex-start;
        gap: .75rem;
        width: 100%;
        padding: .9rem;
        border-radius: 18px;
    }

    .nuvox-credit img {
        width: 100%;
        max-width: 260px;
        height: auto;
        aspect-ratio: 1 / 1;
        align-self: center;
    }
}

.mobile-sales-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1045;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    padding: .55rem;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 22px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, .2);
    backdrop-filter: blur(16px);
}

.mobile-sales-sticky a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 900;
}

.mobile-sales-sticky a:first-child {
    background: linear-gradient(135deg, var(--realtor-blue), #0ea5e9);
}

.mobile-sales-sticky a:last-child {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    animation: heroCtaFloat 1.75s ease-in-out infinite;
}

.visit-schedule-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    box-shadow: 0 28px 72px rgba(2, 8, 23, .28);
}

.visit-schedule-modal .modal-header {
    color: #fff;
    background:
        radial-gradient(circle at 14% 16%, rgba(16, 185, 129, .32), transparent 34%),
        linear-gradient(135deg, var(--realtor-blue), #071225);
    border: 0;
    padding: 1.25rem 1.35rem;
}

.visit-schedule-modal .modal-title {
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    margin-top: .25rem;
}

.visit-modal-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: #bbf7d0;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.visit-modal-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    margin-bottom: 1rem;
}

.visit-modal-benefits span {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .65rem;
    color: #064e3b;
    background: #d1fae5;
    border-radius: 16px;
    font-size: .82rem;
    font-weight: 900;
    text-align: center;
}

.visit-modal-departure {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-top: 1rem;
    padding: .85rem 1rem;
    color: #0b3b82;
    background: #dbeafe;
    border: 1px solid #93c5fd;
    border-radius: 18px;
    font-weight: 800;
}

.visit-modal-departure i {
    color: var(--realtor-blue);
}

.visit-schedule-modal .modal-footer {
    border: 0;
    padding: 0 1.35rem 1.35rem;
}

@media (max-width: 991.98px) {
    .navbar-stage {
        min-height: 58px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-premium {
        width: auto;
        min-height: 54px;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
        border-radius: 18px;
        background: rgba(255, 255, 255, .94);
    }

    .floating-brand {
        position: relative;
        left: auto;
        top: auto;
        width: 170px;
        min-height: 52px;
        transform: none;
        box-shadow: none;
    }

    .floating-brand img { max-height: 48px; }

    .navbar-toggler {
        width: 46px;
        height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        box-shadow: none;
    }

    .mobile-nav-panel {
        position: fixed;
        top: 76px;
        left: 14px;
        right: 14px;
        z-index: 1040;
        display: none;
        flex-direction: column;
        gap: .45rem;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: .85rem;
        border: 1px solid rgba(226, 232, 240, .9);
        border-radius: 22px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 20px 48px rgba(15, 23, 42, .18);
        backdrop-filter: blur(16px);
    }

    .mobile-nav-panel.is-open {
        display: flex;
    }

    .mobile-nav-link,
    .mobile-nav-visit,
    .mobile-nav-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        border-radius: 16px;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-nav-link {
        color: #0f172a;
        background: #f8fafc;
    }

    .mobile-nav-cta {
        color: #fff;
        background: var(--realtor-green);
        box-shadow: 0 14px 28px rgba(16, 185, 129, .22);
    }

    .mobile-nav-visit {
        gap: .5rem;
        color: #fff;
        background: linear-gradient(135deg, #f59e0b, #ef4444);
        box-shadow: 0 14px 28px rgba(239, 68, 68, .22);
        animation: realtorFloat 1.75s ease-in-out infinite;
    }

    .navbar-shell.is-scrolled .floating-brand {
        width: 170px;
        min-height: 52px;
        padding: .4rem .6rem;
        background: rgba(2, 8, 23, .9);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(2, 8, 23, .28);
        backdrop-filter: blur(14px);
    }

    .navbar-shell.is-scrolled .floating-brand img {
        max-height: 42px;
    }

    .navbar-shell.is-scrolled .navbar-premium {
        background: rgba(2, 8, 23, .9);
    }

    .navbar-shell.is-scrolled .mobile-nav-panel {
        background: rgba(2, 8, 23, .96);
        border-color: rgba(255, 255, 255, .12);
    }

    .navbar-shell.is-scrolled .mobile-nav-link {
        color: rgba(255, 255, 255, .86);
        background: rgba(255, 255, 255, .08);
    }

    .mega-menu {
        position: static !important;
        width: 100%;
        transform: none;
        box-shadow: none;
        border: 1px solid var(--realtor-border);
        margin-top: .5rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-shell { top: 8px; }
    .navbar-premium { border-radius: 18px; }
    .hero-content { padding-top: 112px; }
    .hero-actions {
        gap: .75rem;
        margin-top: 1.25rem;
    }
    .hero-sales-primary {
        width: 100%;
    }
    .hero-price-cta,
    .hero-visit-cta {
        display: none;
    }
    .hero-stat {
        width: 100%;
        justify-content: center;
        border-radius: 18px;
    }
    .hero-close-note {
        display: none;
    }
    .hero-offer-marquee {
        display: none;
    }
    .mobile-sales-sticky { display: grid; }
    body { padding-bottom: 86px; }
    .visit-modal-benefits {
        grid-template-columns: 1fr;
    }
    .visit-schedule-modal .modal-dialog {
        margin: .75rem;
    }
    .section-pad { padding: 68px 0; }
    .contact-band { border-radius: 24px; }
    .guided-visit-band { border-radius: 24px; }
    .guided-visit-form { min-height: auto; }
    .departure-card { grid-template-columns: 1fr; }
    .guided-benefit { align-items: flex-start; }
}
