/* =============================
   Margdarshan UI - Global Styles (Light Mode)
   Theme: Elegant, Trustworthy, Interactive (Glassmorphism)
   Framework: Bootstrap 5 compatible
   ============================= */
/* 1) CSS Variables - Light Theme */
:root, [data-theme="light"] {
    /* Brand Colors */
    --color-primary: #DBBCDF;
    /* Lavender */
    --color-secondary: #FFF;
    /* White panels */
    --color-info: #0099D2;
    --color-success: #00774E;
    --color-warning: #FFA500;
    --color-error: #CD2026;
    --color-neutral: #6C757D;
    /* Surfaces & Backgrounds */
    --color-bg: #FFF;
    --color-surface: #FFF;
    --color-surface-2: #F7F4F9;
    /* subtle primary tint */
    --color-surface-3: #ECF6FB;
    /* subtle info tint */
    --color-glass: rgba(255, 255, 255, 0.72);
    --color-glass-strong: rgba(255, 255, 255, 0.86);
    --color-border: #E6E7EB;
    --color-muted: #8A94A6;
    /* Text Colors */
    --text-strong: #212529;
    --text-body: #2C2F33;
    --text-muted: #6C757D;
    --text-inverse: #FFF;
    /* accessible on-color choices */
    --on-primary: #2B2130;
    /* dark plum for contrast on lavender */
    --on-info: #FFF;
    --on-success: #FFF;
    --on-warning: #2B2100;
    /* dark brown for warning on-color */
    --on-error: #FFF;
    --on-surface: #212529;
    /* Shadows & Radius */
    --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 1px rgba(16, 24, 40, 0.1);
    --shadow-md: 0 4px 8px rgba(16, 24, 40, 0.08), 0 2px 4px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 10px 20px rgba(16, 24, 40, 0.08), 0 6px 8px rgba(16, 24, 40, 0.06);
    --shadow-glass: 0 8px 30px rgba(31, 38, 135, 0.12);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    /* Spacing Scale */
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-9: 40px;
    --space-10: 48px;
    --space-12: 56px;
    --space-16: 64px;
    --space-20: 80px;
    /* Typography */
    --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --fs-root: 16px;
    /* Transitions */
    --transition-fast: 120ms ease-out;
    --transition-base: 200ms ease;
    --transition-slow: 320ms ease;
    /* Z-index scale */
    --z-header: 1000;
    --z-sticky: 1020;
    --z-overlay: 1100;
    --z-tooltip: 1200;
    --z-modal: 1300;
    /* Background Gradients */
    --app-gradient: linear-gradient(180deg, #FFF 0%, #F7F2FA 50%, #ECF6FB 100%);
    --panel-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
    /* Focus Rings */
    --focus-ring: 0 0 0 4px rgba(0, 153, 210, 0.25);
    --focus-ring-strong: 0 0 0 4px rgba(219, 188, 223, 0.45);
    /* Bootstrap Variable Mapping */
    --bs-primary: var(--color-primary);
    --bs-secondary: #6C757D;
    /* keep Bootstrap secondary semantic */
    --bs-info: var(--color-info);
    --bs-success: var(--color-success);
    --bs-warning: var(--color-warning);
    --bs-danger: var(--color-error);
    --bs-body-color: var(--text-body);
    --bs-body-bg: var(--color-bg);
    --bs-border-color: var(--color-border);
    --bs-link-color: var(--color-info)
    }
/* 2) Base Reset & Global Elements */
* {
    box-sizing: border-box
    }
html {
    font-size: var(--fs-root);
    -webkit-text-size-adjust: 100%
    }
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth
        }
    }
body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--app-gradient) fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
    }
img, svg, video, canvas {
    display: block;
    max-width: 100%;
    height: auto
    }
hr {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: var(--space-8) 0
    }
::selection {
    background: rgba(219, 188, 223, 0.35);
    color: var(--on-surface)
    }
/* Links */
a {
    color: var(--color-info);
    text-decoration: none
    }
a:hover {
    text-decoration: underline;
    text-underline-offset: 2px
    }
/* Focus visibility & Accessibility */
:focus {
    outline: none
    }
:focus-visible {
    outline: 2px solid transparent;
    box-shadow: var(--focus-ring);
    border-radius: 6px
    }
.visually-hidden, .u-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
    }
/* 3) Typography */
h1, .h1 {
    font-size: var(--fs-3xl);
    line-height: 1.2;
    color: var(--text-strong);
    margin: 0 0 var(--space-6);
    font-weight: 700
    }
h2, .h2 {
    font-size: var(--fs-2xl);
    line-height: 1.25;
    color: var(--text-strong);
    margin: 0 0 var(--space-5);
    font-weight: 700
    }
h3, .h3 {
    font-size: var(--fs-xl);
    line-height: 1.3;
    color: var(--text-strong);
    margin: 0 0 var(--space-4);
    font-weight: 600
    }
h4, .h4 {
    font-size: var(--fs-lg);
    line-height: 1.35;
    color: var(--text-strong);
    margin: 0 0 var(--space-4);
    font-weight: 600
    }
h5, .h5 {
    font-size: var(--fs-md);
    line-height: 1.4;
    color: var(--text-strong);
    margin: 0 0 var(--space-3);
    font-weight: 600
    }
h6, .h6 {
    font-size: var(--fs-sm);
    line-height: 1.45;
    color: var(--text-strong);
    margin: 0 0 var(--space-2);
    font-weight: 600
    }
p {
    margin: 0 0 var(--space-4)
    }
small, .text-small {
    font-size: var(--fs-xs)
    }
.lead {
    font-size: var(--fs-lg);
    color: var(--text-muted)
    }
.muted, .text-muted {
    color: var(--text-muted) !important
    }
/* 4) Layout & Containers */
.container-app {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: var(--space-4)
    }
.section {
    padding: var(--space-10) 0
    }
.section--tight {
    padding: var(--space-8) 0
    }
.section--loose {
    padding: var(--space-12) 0
    }
.grid {
    display: grid;
    gap: var(--space-6)
    }
.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
    }
.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
    }
.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
    }
@media (max-width: 991.98px) {
    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
        }
    }
@media (max-width: 767.98px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr
        }
    }
.flex {
    display: flex
    }
.inline-flex {
    display: inline-flex
    }
.flex-col {
    flex-direction: column
    }
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center
    }
.justify-between {
    justify-content: space-between
    }
.items-center {
    align-items: center
    }
.gap-2 {
    gap: var(--space-2)
    }
.gap-3 {
    gap: var(--space-3)
    }
.gap-4 {
    gap: var(--space-4)
    }
.gap-6 {
    gap: var(--space-6)
    }
.stack > * + * {
    margin-top: var(--space-4)
    }
.inline-stack > * + * {
    margin-left: var(--space-4)
    }
/* Sticky utilities */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky)
    }
.sticky-bottom {
    position: sticky;
    bottom: 0;
    z-index: var(--z-sticky)
    }
/* App Background Helpers */
.bg-app {
    background: var(--app-gradient) fixed
    }
.bg-surface {
    background-color: var(--color-surface) !important
    }
.bg-surface-2 {
    background-color: var(--color-surface-2) !important
    }
.bg-glass {
    background: var(--color-glass);
    backdrop-filter: saturate(150%) blur(12px);
    -webkit-backdrop-filter: saturate(150%) blur(12px);
    border: var(--glass-border)
    }
/* 5) Cards & Panels */
.card, .card-base {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden
    }
.card--glass, .panel--glass {
    background: var(--color-glass);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: var(--glass-border);
    box-shadow: var(--shadow-glass)
    }
.card__header {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border)
    }
.card__body {
    padding: var(--space-6)
    }
.card__footer {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--color-border)
    }
.card--hover {
    transition: transform var(--transition-base), box-shadow var(--transition-base)
    }
.card--hover:hover {
    transform: translatey(-2px);
    box-shadow: var(--shadow-md)
    }
/* Listing Card (real-estate style) */
.listing-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr
    }
.listing-card__media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden
    }
.listing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow)
    }
.listing-card:hover .listing-card__media img {
    transform: scale(1.05)
    }
.listing-card__badge {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4)
    }
.listing-card__content {
    padding: var(--space-5)
    }
/* 6) Navigation */
.app-navbar {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: var(--color-glass);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: var(--glass-border);
    box-shadow: var(--shadow-sm)
    }
.app-navbar .navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    color: var(--text-strong)
    }
.platform-logo {
    width: 36px;
    height: 36px;
    background: url(https://dsaishared.blob.core.windows.net/uxcceleratecontainer/projects/68a60e0fb931135a2eff3814/logos/logo_30e47c88-4caf-49f5-952d-cfec3fd637d0.PNG) center/contain no-repeat;
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06)
    }
.nav-link {
    color: var(--text-body);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    transition: background-color var(--transition-fast), color var(--transition-fast)
    }
.nav-link:hover {
    background: rgba(219, 188, 223, 0.18);
    color: var(--on-primary);
    text-decoration: none
    }
.nav-link.active {
    color: var(--on-primary);
    background: rgba(219, 188, 223, 0.28)
    }
/* Breadcrumbs */
.breadcrumb {
    background: transparent;
    margin-bottom: var(--space-4)
    }
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-border)
    }
/* 7) Buttons */
.btn {
    --btn-bg: var(--color-surface);
    --btn-fg: var(--text-body);
    --btn-bd: var(--color-border);
    --btn-bg-h: #F1F2F6;
    --btn-fg-h: var(--text-body);
    --btn-bd-h: var(--color-border);
    --btn-bg-a: #E9EAEE;
    --btn-fg-a: var(--text-body);
    --btn-shadow: var(--shadow-sm);
    border-radius: 12px;
    padding: 0.625rem 1rem;
    border: 1px solid var(--btn-bd);
    background: var(--btn-bg);
    color: var(--btn-fg);
    box-shadow: var(--btn-shadow);
    transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast)
    }
.btn:hover {
    background: var(--btn-bg-h);
    color: var(--btn-fg-h);
    border-color: var(--btn-bd-h);
    box-shadow: var(--shadow-md);
    transform: translatey(-1px)
    }
.btn:active {
    background: var(--btn-bg-a);
    color: var(--btn-fg-a);
    transform: translatey(0);
    box-shadow: var(--shadow-sm)
    }
.btn:focus-visible {
    box-shadow: var(--focus-ring)
    }
.btn:disabled, .btn.disabled {
    opacity: 0.6;
    pointer-events: none
    }
.btn-primary {
    --btn-bg: var(--color-primary);
    --btn-fg: var(--on-primary);
    --btn-bd: rgba(43, 33, 48, 0.08);
    --btn-bg-h: #d2aed7;
    --btn-bg-a: #caa0d0
    }
.btn-info {
    --btn-bg: var(--color-info);
    --btn-fg: var(--on-info);
    --btn-bd: rgba(0, 153, 210, 0.25);
    --btn-bg-h: #008bbb;
    --btn-bg-a: #007ea8
    }
.btn-success {
    --btn-bg: var(--color-success);
    --btn-fg: var(--on-success);
    --btn-bd: rgba(0, 119, 78, 0.25);
    --btn-bg-h: #006a46;
    --btn-bg-a: #005c3d
    }
.btn-warning {
    --btn-bg: var(--color-warning);
    --btn-fg: var(--on-warning);
    --btn-bd: rgba(255, 165, 0, 0.3);
    --btn-bg-h: #f29900;
    --btn-bg-a: #e68a00
    }
.btn-danger, .btn-error {
    --btn-bg: var(--color-error);
    --btn-fg: var(--on-error);
    --btn-bd: rgba(205, 32, 38, 0.25);
    --btn-bg-h: #b81b21;
    --btn-bg-a: #a3161a
    }
.btn-outline {
    background: transparent;
    border-style: dashed
    }
.btn-outline-primary {
    --btn-bg: transparent;
    --btn-fg: var(--on-primary);
    --btn-bd: var(--color-primary);
    --btn-bg-h: rgba(219, 188, 223, 0.12);
    --btn-bg-a: rgba(219, 188, 223, 0.24)
    }
.btn-ghost {
    background: transparent;
    border-color: transparent;
    box-shadow: none
    }
.btn-link {
    background: transparent;
    color: var(--color-info);
    border: 0;
    box-shadow: none;
    padding: 0
    }
.btn-sm {
    padding: 0.375rem 0.625rem;
    border-radius: 10px;
    font-size: var(--fs-sm)
    }
.btn-lg {
    padding: 0.875rem 1.25rem;
    border-radius: 14px;
    font-size: var(--fs-lg)
    }
.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border-radius: 12px
    }
.btn-icon.btn-sm {
    width: 2rem;
    height: 2rem;
    border-radius: 10px
    }
/* Favorite (heart) animation */
.heart-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    fill: currentColor;
    transition: transform var(--transition-fast), color var(--transition-fast)
    }
.favorite-toggle {
    color: var(--text-muted)
    }
.favorite-toggle.is-favorited {
    color: #E31B54
    }
.favorite-toggle.is-favorited .heart-icon {
    animation: heart-pop 320ms ease forwards
    }
@keyframes heart-pop {
    0% {
        transform: scale(0.8);
        } 60% {
        transform: scale(1.2);
        } 100% {
        transform: scale(1);
        }
    }
/* 8) Forms */
.form-label {
    font-weight: 600;
    color: var(--text-strong);
    margin-bottom: var(--space-2)
    }
.form-control, .form-select, textarea, input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="tel"], input[type="search"], input[type="date"], input[type="time"], input[type="url"] {
    background-color: var(--color-secondary);
    border: 1px solid var(--color-border);
    color: var(--text-body);
    border-radius: 12px;
    padding: 0.625rem 0.75rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base)
    }
.form-control::placeholder {
    color: #9AA3AF
    }
.form-control:focus, .form-select:focus, textarea:focus, input:focus {
    border-color: rgba(0, 153, 210, 0.45);
    box-shadow: 0 0 0 3px rgba(0, 153, 210, 0.18);
    outline: none
    }
.input-group-text {
    background: var(--color-surface-2);
    border-color: var(--color-border);
    border-radius: 12px;
    color: var(--text-muted)
    }
.form-text {
    color: var(--text-muted);
    font-size: var(--fs-sm)
    }
.is-invalid {
    border-color: rgba(205, 32, 38, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(205, 32, 38, 0.12) !important
    }
.is-valid {
    border-color: rgba(0, 119, 78, 0.55) !important;
    box-shadow: 0 0 0 3px rgba(0, 119, 78, 0.12) !important
    }
.invalid-feedback, .valid-feedback {
    font-size: var(--fs-sm)
    }
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 153, 210, 0.18);
    border-color: rgba(0, 153, 210, 0.45)
    }
.form-check-input:checked {
    background-color: var(--color-info);
    border-color: var(--color-info)
    }
/* Floating lead capture panel with micro-steps */
.floating-form {
    position: fixed;
    right: var(--space-6);
    bottom: var(--space-6);
    width: min(380px, calc(100% - 2 * var(--space-6)));
    background: var(--color-glass);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
    z-index: var(--z-overlay)
    }
.floating-form__header {
    padding: var(--space-5) var(--space-6);
    border-bottom: var(--glass-border)
    }
.floating-form__body {
    padding: var(--space-5) var(--space-6)
    }
.floating-form__footer {
    padding: var(--space-4) var(--space-6);
    border-top: var(--glass-border);
    display: flex;
    gap: var(--space-3);
    justify-content: flex-end
    }
.stepper {
    display: flex;
    align-items: center;
    gap: var(--space-2)
    }
.stepper__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D5D8E0
    }
.stepper__dot.is-active {
    background: var(--color-info)
    }
@media (max-width: 575.98px) {
    .floating-form {
        left: var(--space-4);
        right: var(--space-4);
        width: auto;
        bottom: var(--space-4)
        }
    }
/* 9) Search Bar & Auto-suggest */
.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.5rem 0.75rem;
    box-shadow: var(--shadow-sm)
    }
.search-bar .search-icon {
    color: var(--text-muted);
    width: 1.25rem;
    height: 1.25rem
    }
.search-bar .search-input {
    flex: 1;
    border: 0;
    outline: none;
    background: transparent;
    padding: 0 0.25rem;
    min-width: 120px
    }
.search-bar .btn {
    border-radius: var(--radius-full)
    }
.autosuggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--color-glass-strong);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: var(--z-overlay)
    }
.autosuggest__item {
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-3)
    }
.autosuggest__item:hover, .autosuggest__item[aria-selected="true"] {
    background: rgba(219, 188, 223, 0.16)
    }
/* Filter chips */
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(219, 188, 223, 0.18);
    color: var(--on-primary);
    border: 1px solid rgba(219, 188, 223, 0.45);
    border-radius: 9999px;
    font-size: var(--fs-sm);
    transition: background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base)
    }
.chip:hover {
    background: rgba(219, 188, 223, 0.28)
    }
.chip--selected {
    background: rgba(0, 153, 210, 0.12);
    color: var(--color-info);
    border-color: rgba(0, 153, 210, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 153, 210, 0.12)
    }
.chip__close {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-muted)
    }
/* 10) Tabs */
.tabs {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    padding: 4px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm)
    }
.tab {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 8px 14px;
    border-radius: 10px;
    color: var(--text-body);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-base), color var(--transition-base)
    }
.tab:hover {
    background: rgba(219, 188, 223, 0.18)
    }
.tab[aria-selected="true"], .tab.is-active {
    background: rgba(219, 188, 223, 0.28);
    color: var(--on-primary)
    }
/* 11) Sticky Action Bar (Comparison Tool) */
.sticky-action-bar {
    position: fixed;
    left: 50%;
    transform: translatex(-50%);
    bottom: var(--space-6);
    width: min(960px, calc(100% - 2 * var(--space-6)));
    background: var(--color-glass);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    z-index: var(--z-overlay)
    }
.sticky-action-bar__items {
    display: flex;
    gap: var(--space-3);
    overflow: auto;
    scrollbar-width: thin
    }
@media (max-width: 575.98px) {
    .sticky-action-bar {
        width: calc(100% - 2 * var(--space-4));
        bottom: var(--space-4);
        padding: var(--space-3) var(--space-4)
        }
    }
/* 12) Dual View: Map + List */
.dual-view {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: start
    }
.dual-view__map, .dual-view__list {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
    }
.dual-view__map {
    position: sticky;
    top: calc(60px + var(--space-4));
    height: calc(100vh - 120px)
    }
.dual-toggle {
    display: inline-flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    padding: 4px;
    border-radius: 12px
    }
.dual-toggle .btn {
    border-radius: 10px
    }
@media (max-width: 991.98px) {
    .dual-view {
        grid-template-columns: 1fr
        }
    .dual-view__map {
        position: relative;
        height: 340px;
        top: auto
        }
    }
/* 13) Property Detail: Masonry Gallery */
.masonry {
    column-count: 3;
    column-gap: var(--space-4)
    }
.masonry__item {
    break-inside: avoid;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
    }
@media (max-width: 991.98px) {
    .masonry {
        column-count: 2
        }
    }
@media (max-width: 575.98px) {
    .masonry {
        column-count: 1
        }
    }
/* 14) Parallax Featured Carousel (CSS-only hint) */
.parallax-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center
    }
@media (max-width: 991.98px) {
    .parallax-section {
        background-attachment: scroll
        }
    }
/* 15) Badges & Status */
.badge {
    display: inline-block;
    padding: 0.35em 0.6em;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600
    }
.badge-primary {
    background: rgba(219, 188, 223, 0.25);
    color: var(--on-primary);
    border: 1px solid rgba(219, 188, 223, 0.4)
    }
.badge-info {
    background: rgba(0, 153, 210, 0.14);
    color: var(--color-info);
    border: 1px solid rgba(0, 153, 210, 0.45)
    }
.badge-success {
    background: rgba(0, 119, 78, 0.14);
    color: var(--color-success);
    border: 1px solid rgba(0, 119, 78, 0.45)
    }
.badge-warning {
    background: rgba(255, 165, 0, 0.18);
    color: var(--on-warning);
    border: 1px solid rgba(255, 165, 0, 0.5)
    }
.badge-error {
    background: rgba(205, 32, 38, 0.14);
    color: var(--color-error);
    border: 1px solid rgba(205, 32, 38, 0.45)
    }
/* 16) Alerts */
.alert {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm)
    }
.alert-info {
    background: linear-gradient(180deg, rgba(0, 153, 210, 0.06), rgba(0, 153, 210, 0.02));
    border-color: rgba(0, 153, 210, 0.35);
    color: #0B556E
    }
.alert-success {
    background: linear-gradient(180deg, rgba(0, 119, 78, 0.06), rgba(0, 119, 78, 0.02));
    border-color: rgba(0, 119, 78, 0.35);
    color: #0A4B33
    }
.alert-warning {
    background: linear-gradient(180deg, rgba(255, 165, 0, 0.12), rgba(255, 165, 0, 0.04));
    border-color: rgba(255, 165, 0, 0.45);
    color: #5A3B00
    }
.alert-danger {
    background: linear-gradient(180deg, rgba(205, 32, 38, 0.08), rgba(205, 32, 38, 0.02));
    border-color: rgba(205, 32, 38, 0.35);
    color: #7B161A
    }
/* 17) Tables */
.table-clean {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
    }
.table-clean th, .table-clean td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border)
    }
.table-clean th {
    text-align: left;
    color: var(--text-strong);
    background: rgba(0, 0, 0, 0.02)
    }
.table-clean tr:hover td {
    background: rgba(219, 188, 223, 0.08)
    }
/* 18) Modals/Overlays */
.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: var(--z-overlay);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base)
    }
.backdrop.is-open {
    opacity: 1;
    pointer-events: auto
    }
.modal-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%);
    min-width: min(720px, calc(100% - 2 * var(--space-6)));
    background: var(--color-glass-strong);
    border: var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass);
    z-index: var(--z-modal);
    opacity: 0;
    transition: opacity var(--transition-base), transform var(--transition-base)
    }
.modal-panel.is-open {
    opacity: 1;
    transform: translate(-50%, -50%)
    }
/* 19) Progress, Loaders, Skeleton */
.progress {
    height: 8px;
    background: #EFF1F5;
    border-radius: 9999px;
    overflow: hidden
    }
.progress-bar {
    height: 100%;
    background: var(--color-info);
    border-radius: inherit;
    transition: width var(--transition-slow)
    }
.skeleton {
    position: relative;
    background: linear-gradient(90deg, #EEF1F6 25%, #F6F8FB 37%, #EEF1F6 63%);
    background-size: 400% 100%;
    animation: shimmer 1200ms ease-in-out infinite;
    border-radius: 8px
    }
@keyframes shimmer {
    0% {
        background-position: 200% 0;
        } 100% {
        background-position: -200% 0;
        }
    }
/* 20) Disclosures (Progressive Disclosure) */
.disclosure__content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-slow), opacity var(--transition-slow), margin var(--transition-slow);
    opacity: 0.6;
    overflow: hidden
    }
.disclosure[aria-expanded="true"] .disclosure__content {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: var(--space-3)
    }
/* 21) Utilities - Spacing (complement to Bootstrap) */
.u-m-0 {
    margin: 0 !important
    }
.u-mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
    }
.u-p-0 {
    padding: 0 !important
    }
.u-px-4 {
    padding-left: var(--space-4) !important;
    padding-right: var(--space-4) !important
    }
.u-py-4 {
    padding-top: var(--space-4) !important;
    padding-bottom: var(--space-4) !important
    }
/* Utilities - Width & Max Width */
.u-w-full {
    width: 100% !important
    }
.u-max-w-sm {
    max-width: 480px !important
    }
.u-max-w-md {
    max-width: 720px !important
    }
.u-max-w-lg {
    max-width: 960px !important
    }
.u-max-w-xl {
    max-width: 1200px !important
    }
/* Utilities - Text & Colors */
.text-strong {
    color: var(--text-strong) !important
    }
.text-primary {
    color: var(--on-primary) !important
    }
.text-info {
    color: var(--color-info) !important
    }
.text-success {
    color: var(--color-success) !important
    }
.text-warning {
    color: var(--on-warning) !important
    }
.text-error {
    color: var(--color-error) !important
    }
.bg-primary-soft {
    background: rgba(219, 188, 223, 0.16) !important
    }
.bg-info-soft {
    background: rgba(0, 153, 210, 0.12) !important
    }
.bg-success-soft {
    background: rgba(0, 119, 78, 0.12) !important
    }
.bg-warning-soft {
    background: rgba(255, 165, 0, 0.18) !important
    }
.bg-error-soft {
    background: rgba(205, 32, 38, 0.12) !important
    }
.border {
    border: 1px solid var(--color-border) !important
    }
.border-0 {
    border: 0 !important
    }
.rounded-sm {
    border-radius: var(--radius-sm) !important
    }
.rounded {
    border-radius: var(--radius-md) !important
    }
.rounded-lg {
    border-radius: var(--radius-lg) !important
    }
.rounded-xl {
    border-radius: var(--radius-xl) !important
    }
.rounded-full {
    border-radius: var(--radius-full) !important
    }
.shadow-sm {
    box-shadow: var(--shadow-sm) !important
    }
.shadow {
    box-shadow: var(--shadow-md) !important
    }
.shadow-lg {
    box-shadow: var(--shadow-lg) !important
    }
/* Utilities - Display & Visibility */
.u-hidden {
    display: none !important
    }
.u-block {
    display: block !important
    }
.u-inline {
    display: inline !important
    }
.u-inline-block {
    display: inline-block !important
    }
/* Utilities - Position */
.u-relative {
    position: relative !important
    }
.u-absolute {
    position: absolute !important
    }
.u-fixed {
    position: fixed !important
    }
/* Utilities - Alignment */
.u-center {
    display: grid;
    place-items: center
    }
/* Utilities - Transitions & Interactions */
.transition-base {
    transition: all var(--transition-base)
    }
.hover-raise {
    transition: transform var(--transition-base), box-shadow var(--transition-base)
    }
.hover-raise:hover {
    transform: translatey(-2px);
    box-shadow: var(--shadow-md)
    }
/* 22) CTA Button */
.cta-button {
    position: relative;
    isolation: isolate
    }
.cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(80% 50% at 50% 0%, rgba(255, 255, 255, 0.45), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none
    }
.cta-button:hover::after {
    opacity: 1
    }
/* 23) Key Info Bar / KPI Cards */
.kpi-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: var(--space-2)
    }
.kpi-card__value {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-strong)
    }
.kpi-card__trend.up {
    color: var(--color-success)
    }
.kpi-card__trend.down {
    color: var(--color-error)
    }
/* 24) Comparison Tray */
.comparison-tray {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-glass);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-top: var(--glass-border);
    box-shadow: 0 -8px 20px rgba(31, 38, 135, 0.08);
    z-index: var(--z-sticky);
    padding: var(--space-4) var(--space-6);
    display: none
    }
.comparison-tray.is-visible {
    display: block
    }
/* 25) Tabs for Detail Pages */
.detail-tabs {
    display: flex;
    gap: var(--space-2);
    border-bottom: 1px solid var(--color-border)
    }
.detail-tabs .detail-tab {
    padding: 12px 10px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: color var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
    border-radius: 8px 8px 0 0
    }
.detail-tabs .detail-tab:hover {
    color: var(--on-primary);
    background: rgba(219, 188, 223, 0.18)
    }
.detail-tabs .detail-tab.is-active {
    color: var(--on-primary);
    border-color: var(--color-primary)
    }
/* 26) Image Helpers */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover
    }
.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain
    }
/* 27) Pagination Controls */
.pagination-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2)
    }
.page-button {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--text-body);
    transition: background var(--transition-base), border-color var(--transition-base)
    }
.page-button:hover {
    background: rgba(219, 188, 223, 0.18)
    }
.page-button.is-active {
    background: rgba(219, 188, 223, 0.28);
    color: var(--on-primary);
    border-color: rgba(219, 188, 223, 0.5)
    }
/* 28) Toolcards / Feature Cards */
.tool-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    display: grid;
    gap: var(--space-3);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base)
    }
.tool-card:hover {
    box-shadow: var(--shadow-md);
    transform: translatey(-2px)
    }
/* 29) Keyframes - Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(12px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
@keyframes spin {
    to {
        transform: rotate(360deg);
        }
    }
.fade-in {
    animation: fade-in 300ms ease forwards
    }
.slide-up {
    animation: slide-up 360ms ease forwards
    }
.spin {
    animation: spin 1s linear infinite
    }
/* 30) Map Container Styling */
.map-container {
    width: 100%;
    height: 100%;
    background: #F7F9FC
    }
/* 31) Toast (simple) */
.toast {
    background: var(--color-glass-strong);
    border: var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    padding: var(--space-4) var(--space-5);
    display: inline-flex;
    gap: var(--space-3);
    align-items: center
    }
/* 32) Tooltip (attribute-based) */
[data-tooltip] {
    position: relative
    }
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translatex(-50%);
    background: #111827;
    color: #fff;
    font-size: 12px;
    padding: 6px 8px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity var(--transition-fast), transform var(--transition-fast)
    }
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translatex(-50%) translatey(-2px)
    }
/* 33) Progress Indicators */
.step-indicator {
    display: flex;
    gap: var(--space-2)
    }
.step-indicator .step {
    width: 24px;
    height: 4px;
    border-radius: 9999px;
    background: #E5E7EB
    }
.step-indicator .step.is-active {
    background: var(--color-info)
    }
/* 34) Forms - Terms & Errors */
.inline-validation {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--color-error)
    }
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3)
    }
/* 35) Hero / Promo Banner */
.promo-banner {
    position: relative;
    border-radius: var(--radius-xl);
    background: var(--panel-gradient);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-glass);
    overflow: hidden
    }
.promo-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 65% at 20% 0%, rgba(219, 188, 223, 0.25), transparent 60%), radial-gradient(80% 50% at 80% 0%, rgba(0, 153, 210, 0.18), transparent 60%);
    pointer-events: none
    }
/* 36) Key Metrics Summary */
.key-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4)
    }
@media (max-width: 991.98px) {
    .key-metrics {
        grid-template-columns: repeat(2, 1fr)
        }
    }
@media (max-width: 575.98px) {
    .key-metrics {
        grid-template-columns: 1fr
        }
    }
/* 37) Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0
    }
.comparison-table th, .comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left
    }
.comparison-table thead th {
    position: sticky;
    top: 0;
    background: var(--color-surface);
    z-index: 1
    }
.comparison-table tr:hover td {
    background: rgba(0, 0, 0, 0.02)
    }
/* 38) Breadcrumb-like pill */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 9999px;
    background: #F3F4F6;
    color: #374151;
    border: 1px solid #E5E7EB;
    font-size: var(--fs-sm)
    }
/* 39) Map/List Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px
    }
.switch input {
    opacity: 0;
    width: 0;
    height: 0
    }
.switch__slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #E5E7EB;
    transition: background var(--transition-base);
    border-radius: 9999px
    }
.switch__slider::before {
    content: "";
    position: absolute;
    height: 22px;
    width: 22px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-sm)
    }
.switch input:checked + .switch__slider {
    background: var(--color-info)
    }
.switch input:checked + .switch__slider::before {
    transform: translatex(22px)
    }
/* 40) Price/ROI Tag */
.price-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.04);
    font-weight: 600
    }
/* 41) Action Menus */
.menu {
    background: var(--color-glass-strong);
    border: var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-glass);
    padding: 6px;
    min-width: 180px
    }
.menu__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text-body);
    text-decoration: none
    }
.menu__item:hover {
    background: rgba(219, 188, 223, 0.18)
    }
/* 42) Key Info Bar (top) */
.key-info-bar {
    background: var(--color-glass);
    border-bottom: var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: var(--z-header)
    }
/* 43) Breadcrumb header */
.page-header {
    display: grid;
    gap: var(--space-2);
    padding: var(--space-6) 0
    }
/* 44) Link Buttons */
.link-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-info);
    font-weight: 600
    }
.link-button:hover {
    text-decoration: underline
    }
/* 45) Forms - Range/Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #E5E7EB;
    border-radius: 9999px;
    outline: none
    }
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-info);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(0, 153, 210, 0.15)
    }
input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-info);
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(0, 153, 210, 0.15);
    border: 0
    }
/* 46) Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
    margin-top: var(--space-5)
    }
/* 47) Tables - Responsive Wrap */
.table-responsive {
    overflow: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg)
    }
/* 48) Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--color-border)
    }
/* 49) Logo placement utility */
.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-weight: 700;
    color: var(--text-strong)
    }
/* 50) Cards - Elevated Glass Panel */
.glass-panel {
    background: var(--color-glass);
    border: var(--glass-border);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glass)
    }
/* 51) Real-estate style sticky CTA on property detail */
.property-cta {
    position: sticky;
    top: calc(60px + var(--space-4));
    z-index: var(--z-sticky);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-5)
    }
/* 52) WCAG - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important
        }
    }
/* 53) Link States - Accessibility */
a:focus-visible {
    box-shadow: var(--focus-ring);
    border-radius: 6px
    }
a:active {
    opacity: 0.9
    }
/* 54) Forms - Date Range Picker (generic) */
.date-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-3);
    align-items: center
    }
.date-range .separator {
    color: var(--text-muted)
    }
/* 55) Tag List */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 9999px;
    background: #F3F4F6;
    color: #374151;
    font-size: 12px
    }
.tag--info {
    background: rgba(0, 153, 210, 0.12);
    color: var(--color-info)
    }
.tag--success {
    background: rgba(0, 119, 78, 0.12);
    color: var(--color-success)
    }
/* 56) Compare Checkbox */
.compare-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    background: var(--color-surface)
    }
.compare-checkbox input {
    transform: translatey(1px)
    }
/* 57) Price Trend Chart placeholder */
.chart-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm)
    }
/* 58) Notifications / Pill button */
.pill-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(219, 188, 223, 0.18);
    color: var(--on-primary);
    border: 1px solid rgba(219, 188, 223, 0.5)
    }
/* 59) Link variants */
.link-muted {
    color: var(--text-muted)
    }
.link-muted:hover {
    color: var(--text-strong)
    }
/* 60) Breadcrumb path */
.path {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-muted)
    }
.path a {
    color: inherit
    }
.path a:hover {
    color: var(--text-strong)
    }
/* 61) Avatar */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    background: #E5E7EB;
    overflow: hidden;
    display: inline-block
    }
/* 62) Divider text */
.divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--space-4);
    color: var(--text-muted)
    }
.divider::before, .divider::after {
    content: "";
    height: 1px;
    background: var(--color-border);
    display: block
    }
/* 63) Breadcrumb-like chips row (filters) */
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2)
    }
/* 64) Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3)
    }
/* 65) Results Summary & Sorter */
.results-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
    padding: var(--space-4) 0
    }
/* 66) Simple rating */
.star {
    color: #F8B400
    }
/* 67) CTA banner floating */
.cta-float {
    position: fixed;
    left: 50%;
    transform: translatex(-50%);
    bottom: 24px;
    z-index: var(--z-overlay)
    }
/* 68) Footer links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3)
    }
.footer-links a {
    color: var(--text-muted)
    }
.footer-links a:hover {
    color: var(--text-strong)
    }
/* 69) Onboarding Wizard */
.wizard {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm)
    }
.wizard__header {
    padding: var(--space-5) var(--space-6);
    border-bottom: 1px solid var(--color-border)
    }
.wizard__body {
    padding: var(--space-6)
    }
.wizard__footer {
    padding: var(--space-5) var(--space-6);
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center
    }
/* 70) Real Estate - amenities list */
.amenities {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3) var(--space-6)
    }
@media (max-width: 575.98px) {
    .amenities {
        grid-template-columns: 1fr
        }
    }
.amenity {
    display: flex;
    align-items: center;
    gap: var(--space-3)
    }
/* 71) Pricing tags */
.pricing {
    display: flex;
    align-items: baseline;
    gap: var(--space-2)
    }
.pricing .current {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-strong)
    }
.pricing .old {
    text-decoration: line-through;
    color: var(--text-muted)
    }
/* 72) Sticky header shadow on scroll (helper class) */
.header--elevated {
    box-shadow: var(--shadow-md) !important
    }
/* 73) Breadcrumb chip style header bar */
.key-info-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(219, 188, 223, 0.18);
    color: var(--on-primary);
    border: 1px solid rgba(219, 188, 223, 0.45);
    border-radius: var(--radius-full);
    padding: 6px 12px
    }
/* 74) Simple accordion */
.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    cursor: pointer
    }
.accordion__content {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows var(--transition-slow), opacity var(--transition-slow);
    opacity: 0.7
    }
.accordion.is-open .accordion__content {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: var(--space-4)
    }
/* 75) Breadcrumb subtext */
.subtext {
    font-size: var(--fs-sm);
    color: var(--text-muted)
    }
/* 76) Buttons - subtle */
.btn-subtle {
    --btn-bg: rgba(0, 0, 0, 0.04);
    --btn-fg: var(--text-body);
    --btn-bd: rgba(0, 0, 0, 0.06);
    --btn-bg-h: rgba(0, 0, 0, 0.06);
    --btn-bg-a: rgba(0, 0, 0, 0.08)
    }
/* 77) Link badge */
.badge-link {
    color: var(--color-info);
    background: rgba(0, 153, 210, 0.12);
    border: 1px solid rgba(0, 153, 210, 0.4)
    }
/* 78) Tag cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2)
    }
/* 79) Hero header with parallax bg */
.hero {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    color: var(--text-strong);
    background: var(--panel-gradient)
    }
.hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 75% at 10% -20%, rgba(219, 188, 223, 0.25), transparent 60%), radial-gradient(90% 65% at 90% 0%, rgba(0, 153, 210, 0.2), transparent 60%);
    mix-blend-mode: normal
    }
.hero__content {
    position: relative;
    padding: var(--space-10) var(--space-8)
    }
/* 80) Simple breadcrumb list header */
.list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-4) 0
    }
/* 81) Map marker badge */
.marker-badge {
    padding: 4px 8px;
    border-radius: 9999px;
    background: var(--color-info);
    color: #fff;
    font-size: 12px;
    box-shadow: var(--shadow-sm)
    }
/* 82) Summary panel */
.summary-panel {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm)
    }
/* 83) Floating compare button */
.compare-fab {
    position: fixed;
    right: var(--space-6);
    bottom: calc(var(--space-6) + 64px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-info);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-overlay);
    transition: transform var(--transition-base), box-shadow var(--transition-base)
    }
.compare-fab:hover {
    transform: translatey(-2px);
    box-shadow: 0 12px 24px rgba(0, 153, 210, 0.35)
    }
/* 84) Breadcrumb action chips */
.action-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2)
    }
/* 85) Tabs content area */
.tab-panel {
    animation: fade-in 240ms ease
    }
/* 86) Section titles */
.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    margin-bottom: var(--space-4)
    }
/* 87) Footer newsletter */
.newsletter {
    display: grid;
    gap: var(--space-3);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-5)
    }
/* 88) Cards - media header */
.card-media {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-4);
    align-items: center
    }
@media (max-width: 575.98px) {
    .card-media {
        grid-template-columns: 1fr
        }
    }
/* 89) Elevated outline */
.outline-elevated {
    border: 1px solid rgba(219, 188, 223, 0.45);
    box-shadow: 0 0 0 6px rgba(219, 188, 223, 0.12)
    }
/* 90) General helpers */
.nowrap {
    white-space: nowrap
    }
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
    }
/* 91) Print adjustments */
@media print {
    .app-navbar, .sticky-action-bar, .comparison-tray, .floating-form, .compare-fab {
        display: none !important
        }
    body {
        background: #fff !important
        }
    }