/* /Components/Layout/Footer.razor.rz.scp.css */
/* Footer Component Styles */

/* MudDivider styling for footer */
[b-7z56d5g0qk] .footer-divider {
    border-color: rgba(245, 255, 255, 0.1);
    margin: 0;
}

/* Contact info link styling */
.contactus a[b-7z56d5g0qk] {
    color: rgba(245, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contactus a:hover[b-7z56d5g0qk] {
    color: #FF385C;
}

/* Ensure social icons remain horizontally aligned */
.netsocials[b-7z56d5g0qk] {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

/* Responsive adjustments for better mobile footer */
@media (max-width: 768px) {
    .second-footer .d-flex[b-7z56d5g0qk] {
        text-align: center;
    }

    .netsocials[b-7z56d5g0qk] {
        justify-content: center !important;
    }
}
/* /Components/Layout/Header.razor.rz.scp.css */
/* Sticky Header - Pure CSS (No jQuery) */
.sticky-header[b-u68h86oj2n] {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

.sticky-header.scrolled[b-u68h86oj2n] {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile menu trigger */
.mmenu-trigger[b-u68h86oj2n] {
    display: none;
}

@media (max-width: 1199px) {
    .mmenu-trigger[b-u68h86oj2n] {
        display: block;
    }
}

/* Hamburger animation */
.hamburger[b-u68h86oj2n] {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover[b-u68h86oj2n] {
    opacity: 0.7;
}

.hamburger.is-active:hover[b-u68h86oj2n] {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner[b-u68h86oj2n],
.hamburger.is-active .hamburger-inner[b-u68h86oj2n]::before,
.hamburger.is-active .hamburger-inner[b-u68h86oj2n]::after {
    background-color: #000;
}

.hamburger-box[b-u68h86oj2n] {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner[b-u68h86oj2n] {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner[b-u68h86oj2n],
.hamburger-inner[b-u68h86oj2n]::before,
.hamburger-inner[b-u68h86oj2n]::after {
    width: 30px;
    height: 3px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner[b-u68h86oj2n]::before,
.hamburger-inner[b-u68h86oj2n]::after {
    content: "";
    display: block;
}

.hamburger-inner[b-u68h86oj2n]::before {
    top: -8px;
}

.hamburger-inner[b-u68h86oj2n]::after {
    bottom: -8px;
}

/* Collapse animation */
.hamburger--collapse .hamburger-inner[b-u68h86oj2n] {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner[b-u68h86oj2n]::after {
    top: -16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
                opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner[b-u68h86oj2n]::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
                transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner[b-u68h86oj2n] {
    transform: translate3d(0, -8px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner[b-u68h86oj2n]::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
                opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner[b-u68h86oj2n]::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
                transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-rb0zty8z7h] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-rb0zty8z7h] {
    flex: 1;
}

.sidebar[b-rb0zty8z7h] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-rb0zty8z7h] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-rb0zty8z7h]  a, .top-row[b-rb0zty8z7h]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-rb0zty8z7h]  a:hover, .top-row[b-rb0zty8z7h]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-rb0zty8z7h]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-rb0zty8z7h] {
        justify-content: space-between;
    }

    .top-row[b-rb0zty8z7h]  a, .top-row[b-rb0zty8z7h]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-rb0zty8z7h] {
        flex-direction: row;
    }

    .sidebar[b-rb0zty8z7h] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-rb0zty8z7h] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-rb0zty8z7h]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-rb0zty8z7h], article[b-rb0zty8z7h] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-em9fpki1wp],
.components-reconnect-repeated-attempt-visible[b-em9fpki1wp],
.components-reconnect-failed-visible[b-em9fpki1wp],
.components-pause-visible[b-em9fpki1wp],
.components-resume-failed-visible[b-em9fpki1wp],
.components-rejoining-animation[b-em9fpki1wp] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-retrying[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-failed[b-em9fpki1wp],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-em9fpki1wp] {
    display: block;
}


#components-reconnect-modal[b-em9fpki1wp] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-em9fpki1wp 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-em9fpki1wp 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-em9fpki1wp 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-em9fpki1wp]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-em9fpki1wp 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-em9fpki1wp {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-em9fpki1wp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-em9fpki1wp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-em9fpki1wp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-em9fpki1wp] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-em9fpki1wp] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-em9fpki1wp] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-em9fpki1wp] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-em9fpki1wp] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-em9fpki1wp] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-em9fpki1wp 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-em9fpki1wp] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-em9fpki1wp {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Properties/PropertyDetailModal.razor.rz.scp.css */
/* Shell styles for the property quick-view dialog.
   The body renders <PropertyDetailView /> which owns its own styling via utilities.css,
   so this file only handles the sticky header bar + scrollable body container. */

[b-f50gv1aua3] .property-detail-dialog {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

/* Full-screen height is supplied by the global `.ovo-dialog-full` rule
   (utilities.css) — this dialog carries that class too. This sheet only owns the
   rounded shell + the body's zero padding / horizontal-overflow clipping. */
[b-f50gv1aua3] .property-detail-dialog .mud-dialog {
    border-radius: 12px;
    overflow: hidden;
}

[b-f50gv1aua3] .property-detail-dialog .mud-dialog-content {
    padding: 0 !important;
    overflow-x: hidden;
}

[b-f50gv1aua3] .property-detail-dialog-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

[b-f50gv1aua3] .property-detail-dialog-body {
    padding: 24px 20px 32px;
}

@media (max-width: 768px) {
    [b-f50gv1aua3] .property-detail-dialog-body {
        padding: 16px 12px 24px;
    }

    [b-f50gv1aua3] .property-detail-dialog-header {
        padding: 10px 12px;
    }
}
/* /Components/Pages/Shared/ImageLightboxDialog.razor.rz.scp.css */
.lightbox-container[b-z17kp7yusk] {
    position: relative;
    min-height: 400px;
    /* Fill the now full-height dialog body so the image centres vertically. */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper[b-z17kp7yusk] {
    width: 100%;
    text-align: center;
}

.lightbox-image[b-z17kp7yusk] {
    max-width: 100%;
    /* Full-height dialog: let the image use most of the taller viewer. */
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-caption[b-z17kp7yusk] {
    margin-top: 16px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 4px;
    text-align: center;
}

.lightbox-navigation[b-z17kp7yusk] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.lightbox-nav-btn[b-z17kp7yusk] {
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.lightbox-nav-btn:hover:not(:disabled)[b-z17kp7yusk] {
    background: rgba(0, 0, 0, 0.7);
}

.lightbox-counter[b-z17kp7yusk] {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.cursor-pointer[b-z17kp7yusk] {
    cursor: pointer;
}
/* /Components/Pages/Shared/TypedTextAnimation.razor.rz.scp.css */
.typed-text-container[b-8oeatilphx] {
    display: inline-block;
}

.typed-text[b-8oeatilphx] {
    font-weight: inherit;
    color: inherit;
}

.typed-cursor[b-8oeatilphx] {
    font-weight: 300;
    color: inherit;
    animation: blink-b-8oeatilphx 1s step-end infinite;
}

.cursor-visible[b-8oeatilphx] {
    opacity: 1;
}

.cursor-hidden[b-8oeatilphx] {
    opacity: 0;
}

@keyframes blink-b-8oeatilphx {
    from, to {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
