/* Keydguri Public Site — #0000FF brand theme */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --brand: #0000FF;
    --brand-dark: #0000CC;
    --brand-darker: #000080;
    --brand-deep: #000033;
    --brand-light: #3333FF;
    --brand-pale: #EEF0FF;
    --brand-soft: #C4C8FF;
    --brand-glow: rgba(0, 0, 255, 0.15);
    --brand-shadow: rgba(0, 0, 255, 0.25);
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --surface: #FFFFFF;
    --surface-alt: #F8FAFC;
    --border: #E2E8F0;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 48px rgba(0, 0, 255, 0.12);
    --header-height: 72px;
    --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
    --text-on-dark: rgba(255, 255, 255, 0.92);
    --text-on-dark-muted: rgba(255, 255, 255, 0.72);
    --text-on-dark-subtle: rgba(255, 255, 255, 0.55);
}

body.public-site {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--surface-alt);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

body.public-site .btn-primary {
    --bs-btn-bg: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand-dark);
    --bs-btn-hover-border-color: var(--brand-dark);
    --bs-btn-active-bg: var(--brand-darker);
    --bs-btn-active-border-color: var(--brand-darker);
}

body.public-site .btn-outline-primary {
    --bs-btn-color: var(--brand);
    --bs-btn-border-color: var(--brand);
    --bs-btn-hover-bg: var(--brand);
    --bs-btn-hover-border-color: var(--brand);
}

body.public-site .text-primary {
    color: var(--brand) !important;
}

/* ── Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: var(--header-height);
    padding: 0 1.5rem;
    max-width: 1320px;
    margin: 0 auto;
}

.site-nav-links {
    justify-self: center;
}

.site-nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: end;
}

.nav-login {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-login:hover {
    color: var(--brand);
}

.btn-brand.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

.site-logo img {
    height: 2.75rem;
    width: auto;
    transition: opacity 0.2s ease;
}

.site-logo:hover img {
    opacity: 0.85;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.site-nav-link {
    position: relative;
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: var(--brand);
    background: var(--brand-pale);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-left: 1rem;
}

.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border: none;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--brand-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-brand:hover {
    color: #fff;
    background: var(--brand-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px var(--brand-shadow);
}

.btn-brand-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    background: transparent;
    border: 2px solid var(--brand);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-brand-outline:hover {
    color: #fff;
    background: var(--brand);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text-primary);
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem;
}

.mobile-offcanvas .mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-offcanvas .mobile-nav-link:hover {
    color: var(--brand);
}

.mobile-offcanvas .mobile-nav-link i {
    width: 20px;
    color: var(--brand);
}

@media (max-width: 991.98px) {
    .site-nav-links,
    .site-nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }
}

/* ── Section utilities ── */
.section-padding {
    padding: 5rem 0;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 999px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Hero (mockup: full-bleed image + centered search) ── */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4.5rem;
    color: #fff;
    text-align: center;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-section-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 60, 0.88) 0%, rgba(0, 0, 255, 0.55) 50%, rgba(0, 0, 40, 0.92) 100%),
        url('../images/hero-building.jpg') center / cover no-repeat;
    z-index: 0;
}

.hero-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto 2.25rem;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-tagline {
    font-size: clamp(1.0625rem, 2.5vw, 1.3125rem);
    line-height: 1.65;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 1.5rem;
    max-width: 620px;
    font-style: italic;
}

.hero-founder-bar {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem 0.75rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    text-align: left;
}

.hero-founder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-founder-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    padding-right: 0.5rem;
}

.hero-founder-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-founder-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    max-width: 560px;
}

.hero-search-widget {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: left;
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.search-tab {
    flex: 1;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-tab.active {
    color: var(--brand);
    background: var(--surface);
    box-shadow: inset 0 -2px 0 var(--brand);
}

.search-tab:hover:not(.active) {
    color: var(--text-primary);
}

.search-tab-panel {
    display: none;
    padding: 1.5rem;
}

.search-tab-panel.active {
    display: block;
}

.search-row {
    display: flex;
    gap: 0.75rem;
}

.search-row .form-control,
.search-row .form-select,
.search-row .hero-service-select {
    flex: 1;
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--text-primary);
    background-color: var(--surface);
    cursor: pointer;
}

.search-row .form-select,
.search-row .hero-service-select {
    appearance: auto;
    -webkit-appearance: menulist;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230000FF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 14px 10px;
}

.search-row .form-select:focus,
.search-row .hero-service-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
    outline: none;
}

.search-row .form-select option,
.search-row .hero-service-select option {
    color: var(--text-primary);
    padding: 0.5rem;
}

.search-row .btn-search-main {
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    white-space: nowrap;
}

.hero-search-card {
    position: relative;
    z-index: 1;
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero-search-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.hero-search-card .search-card-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.hero-search-card .form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.hero-search-card .form-control,
.hero-search-card .form-select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
}

.hero-search-card .form-control:focus,
.hero-search-card .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.hero-search-card .btn-search {
    width: 100%;
    padding: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
}

/* ── Stats ── */
.stats-section {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem;
}

.stat-card {
    background: var(--surface);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
}

/* ── Property cards ── */
.property-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.property-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.property-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-pale), var(--surface-alt));
    color: var(--brand-soft);
}

.property-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border-radius: 999px;
    box-shadow: 0 4px 12px var(--brand-shadow);
}

.property-card .card-body {
    padding: 1.25rem;
}

.property-card .card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.property-card .card-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.875rem;
}

.property-card .card-location i {
    color: var(--brand);
    margin-right: 0.25rem;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.property-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border-radius: 999px;
}

.property-feature i {
    color: var(--brand);
    font-size: 0.75rem;
}

.property-card .card-footer {
    padding: 0 1.25rem 1.25rem;
    background: transparent;
    border: none;
}

.property-card .btn-view {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

/* ── How it works ── */
.steps-section {
    background: var(--surface);
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    height: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface-alt);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
    border-color: var(--brand-soft);
    box-shadow: var(--shadow-md);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px var(--brand-shadow);
}

.step-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* ── Testimonials ── */
.testimonial-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #FBBF24;
    font-size: 0.875rem;
}

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.testimonial-location {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ── CTA ── */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
    position: relative;
    background: linear-gradient(165deg, #000018 0%, #000045 50%, #0000a8 100%);
    color: var(--text-on-dark-muted);
    padding: 4.5rem 0 0;
    overflow: hidden;
}

.site-footer-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 10% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 90% 100%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.site-footer-brand {
    max-width: 340px;
}

.site-footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.site-footer-logo img {
    height: 2.5rem;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer-quote {
    font-size: 0.9375rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-on-dark);
    margin-bottom: 0.625rem;
}

.site-footer-desc {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-on-dark-muted);
    margin-bottom: 1.25rem;
}

.site-footer-founder {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.site-footer-founder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand) !important;
    background: #fff;
    border-radius: 50%;
}

.site-footer-founder strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.site-footer-founder span {
    font-size: 0.75rem;
    color: var(--text-on-dark-subtle);
}

.site-footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    background: #25D366;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer-whatsapp:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.site-footer-col h6 {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.site-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer-links a {
    display: inline-block;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.site-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.site-footer-contact-list li {
    margin-bottom: 0.75rem;
}

.site-footer-contact-list a,
.site-footer-contact-static {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--text-on-dark-muted);
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.45;
}

.site-footer-contact-list a:hover {
    color: #fff;
}

.site-footer-contact-list i {
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 1.125rem;
    color: #93c5fd;
}

.site-footer-account-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.site-footer-account-links a {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-footer-account-links a:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.site-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.site-footer-bottom p {
    margin: 0;
    font-size: 0.8125rem;
    color: var(--text-on-dark-subtle);
}

.site-footer-belief {
    font-size: 0.75rem !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45) !important;
}

@media (max-width: 991.98px) {
    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .site-footer-brand {
        grid-column: span 2;
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-brand {
        grid-column: span 1;
    }
}

/* ── Scroll animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3.5rem 0 4rem;
    }

    .stats-section {
        margin-top: -2rem;
    }

    .section-padding {
        padding: 3.5rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ── Services strip ── */
.services-strip {
    padding: 2.5rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.75rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
    border-radius: var(--radius-lg);
    transition: background 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
    background: var(--brand-pale);
    transform: translateY(-2px);
    color: var(--brand);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
    color: var(--brand);
    background: var(--brand-pale);
    border: 2px solid var(--brand-soft);
    border-radius: 50%;
    transition: all 0.2s ease;
}

.service-item:hover .service-icon {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.service-item span {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* ── Section header row ── */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-header-row .section-title {
    margin-bottom: 0.25rem;
    text-align: left;
}

.section-header-row .section-subtitle {
    margin: 0;
    text-align: left;
}

.view-all-link {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* ── Property card (mockup grid) ── */
.property-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.property-status-badge {
    position: absolute;
    top: 0.875rem;
    left: 0.875rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border-radius: var(--radius-sm);
}

.property-card-body {
    padding: 1.125rem 1.25rem 1.25rem;
}

.property-card-body h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.property-card-body .property-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.375rem;
}

.property-card-body .property-location {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.property-card-body .property-features {
    display: flex;
    gap: 0.875rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.property-card-body .property-features i {
    color: var(--brand);
    margin-right: 0.2rem;
}

/* ── Featured properties (home) ── */
.featured-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--brand-pale) 45%, var(--surface-alt) 100%);
}

.featured-section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.featured-section-intro .section-subtitle {
    margin: 0;
    max-width: 520px;
    text-align: left;
}

.featured-section-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.featured-filter-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.375rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}

.featured-filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.featured-filter-tab:hover {
    color: var(--brand);
}

.featured-filter-tab.active {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 4px 12px var(--brand-shadow);
}

.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.featured-view-all:hover {
    color: var(--brand-dark);
}

.featured-properties-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.featured-property-card {
    min-width: 0;
    height: 100%;
}

.featured-property-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.featured-property-link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-soft);
    color: inherit;
}

.featured-property-media {
    position: relative;
    flex: 0 0 auto;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #dce4ff 0%, #eef2ff 100%);
}

.featured-property-media--fallback {
    background:
        linear-gradient(135deg, rgba(0, 0, 255, 0.12) 0%, rgba(0, 0, 255, 0.04) 100%),
        url('../images/hero-building.jpg') center / cover no-repeat;
}

.featured-property-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.featured-property-link:hover .featured-property-image {
    transform: scale(1.05);
}

.featured-property-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.featured-property-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    z-index: 2;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
}

.featured-badge--type {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 2px 8px rgba(0, 0, 255, 0.35);
}

.featured-badge--units {
    color: #fff;
    background: rgba(5, 150, 105, 0.92);
}

.featured-photo-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.55rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm);
}

.featured-property-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1.125rem 1.25rem 1.25rem;
    min-height: 180px;
}

.featured-property-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.featured-property-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.2;
}

.featured-property-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

.featured-property-verified i {
    color: #059669;
    font-size: 0.875rem;
}

.featured-property-title {
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 0.375rem;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-property-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.featured-property-location i {
    flex-shrink: 0;
    color: var(--brand);
}

.featured-property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.featured-property-specs span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-property-specs i {
    color: var(--brand);
    font-size: 0.9375rem;
}

.featured-property-action {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand);
    transition: gap 0.2s ease;
}

.featured-property-link:hover .featured-property-action {
    gap: 0.625rem;
}

.featured-property-action i {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.featured-property-link:hover .featured-property-action i {
    transform: translateX(2px);
}

.featured-section-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.featured-section-foot p {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.featured-section-foot p i {
    color: var(--brand);
}

.featured-foot-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.featured-foot-link:hover {
    text-decoration: underline;
}

.featured-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-xl);
}

.featured-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    font-size: 2rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
}

.featured-empty h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.featured-empty p {
    max-width: 420px;
    margin: 0 auto 1.5rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.featured-empty-btn {
    color: var(--brand) !important;
}

@media (max-width: 991.98px) {
    .featured-section-header {
        grid-template-columns: 1fr;
    }

    .featured-section-actions {
        align-items: flex-start;
    }

    .featured-properties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .featured-properties-grid {
        grid-template-columns: 1fr;
    }

    .featured-property-media {
        height: 200px;
    }

    .featured-filter-tabs {
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .featured-filter-tab {
        flex: 1;
        text-align: center;
    }

    .featured-section-foot {
        flex-direction: column;
        text-align: center;
    }
}

/* ── Page hero (inner pages) ── */
.page-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    color: #fff;
    text-align: center;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.45);
}

.page-breadcrumb span:last-child {
    color: #fff;
    font-weight: 600;
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    margin: 0 auto;
}

/* ── Properties listing (premium) ── */
.listing-type-strip {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.listing-type-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.375rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 520px;
    margin: 0 auto;
}

.listing-type-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.listing-type-tab:hover {
    color: var(--brand);
    background: var(--brand-pale);
}

.listing-type-tab.active {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 4px 14px var(--brand-shadow);
}

.listing-layout {
    padding: 2.5rem 0 4rem;
}

.filter-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.filter-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.filter-panel-head h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 800;
}

.filter-panel-head h5 i {
    color: var(--brand);
}

.filter-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--surface-alt);
    border-radius: 50%;
    color: var(--text-primary);
}

.filter-field {
    margin-bottom: 1rem;
}

.filter-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.filter-input-wrap {
    position: relative;
}

.filter-input-wrap > i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    pointer-events: none;
    z-index: 1;
}

.filter-input-wrap .form-control,
.filter-input-wrap .form-select {
    padding-left: 2.5rem;
    min-height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.filter-input-wrap .form-control:focus,
.filter-input-wrap .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.filter-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-row-2 .filter-field {
    margin-bottom: 0;
}

.filter-row-2 + .filter-field,
.filter-row-2 {
    margin-bottom: 1rem;
}

.bedroom-pills {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.bedroom-pill {
    flex: 1;
    min-width: 44px;
    padding: 0.5rem 0.625rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

.bedroom-pill.active {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.filter-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px var(--brand-shadow);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.filter-apply-btn:hover {
    transform: translateY(-1px);
}

.filter-clear-btn {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
}

.filter-clear-btn:hover {
    color: var(--brand);
}

.listing-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.listing-results-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.listing-results-info h2 {
    font-size: 1.375rem;
    font-weight: 800;
    margin: 0;
}

.listing-count-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 999px;
}

.listing-results-actions {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.listing-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-pale);
    border: 1px solid var(--brand-soft);
    border-radius: var(--radius-md);
}

.listing-sort-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--text-primary);
}

.listing-view-toggle {
    display: flex;
    padding: 0.25rem;
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.view-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.view-toggle-btn.active,
.view-toggle-btn:hover {
    color: var(--brand);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.active-filter-chip {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.active-filter-clear {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    margin-left: 0.25rem;
}

.listing-results-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.property-list-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.property-list-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-soft);
}

.property-list-inner {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
}

.property-list-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 160px;
}

.property-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-list-card:hover .property-list-image img {
    transform: scale(1.05);
}

.property-list-content h5 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.property-list-location {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.property-list-location i {
    color: var(--brand);
}

.property-list-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
}

.property-list-specs i {
    color: var(--brand);
    margin-right: 0.2rem;
}

.property-list-pricing {
    text-align: right;
    padding-right: 0.5rem;
    min-width: 140px;
}

.property-list-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.property-list-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand);
    transition: gap 0.2s ease;
}

.property-list-card:hover .property-list-cta {
    gap: 0.5rem;
}

.listing-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-xl);
}

.listing-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
}

.listing-empty h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.listing-empty p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
}

.filter-backdrop.is-visible {
    display: block;
}

@media (max-width: 991.98px) {
    .filter-panel {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(320px, 88vw);
        z-index: 1050;
        border-radius: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .filter-panel.is-open {
        transform: translateX(0);
    }

    .property-list-inner {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-list-image {
        height: 200px;
    }

    .property-list-pricing {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0;
    }

    .listing-type-tabs {
        max-width: 100%;
    }

    .listing-type-tab span,
    .listing-type-tab {
        font-size: 0.8125rem;
        padding: 0.625rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .listing-results-actions {
        width: 100%;
        justify-content: space-between;
    }
}

/* ── Why choose ── */
.why-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.why-section--premium {
    padding: 5.5rem 0;
    background: linear-gradient(128deg, #00001a 0%, #000052 42%, #0000b3 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-section--premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 0% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse 60% 45% at 100% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.why-premium-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 3.5rem;
    align-items: center;
}

.why-section--premium .section-eyebrow {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-premium-title {
    font-size: clamp(1.875rem, 4.5vw, 2.625rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.125rem;
    color: #fff;
}

.why-premium-lead {
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin-bottom: 1.75rem;
    max-width: 500px;
}

.why-premium-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.why-premium-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: var(--text-on-dark) !important;
}

.why-premium-checklist i {
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 1.125rem;
    color: #93c5fd !important;
}

.why-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff !important;
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.why-premium-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.125rem;
}

.why-premium-card {
    padding: 1.625rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.why-premium-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.why-premium-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.125rem;
}

.why-premium-card-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.12);
}

.why-premium-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.375rem;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
}

.why-premium-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: #fff;
}

.why-premium-card p {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-on-dark-muted);
    margin-bottom: 1.125rem;
}

.why-premium-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-premium-card-stat strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}

.why-premium-card-stat span {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-on-dark-subtle);
}

.why-card {
    text-align: center;
    padding: 2rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: box-shadow 0.25s ease;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
}

.why-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 991.98px) {
    .why-premium-shell {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .why-premium-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Trust bar ── */
.trust-bar {
    padding: 2.5rem 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-bar h6 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.app-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    background: #111;
    border-radius: var(--radius-sm);
    text-decoration: none;
    line-height: 1.2;
}

.store-badge i {
    font-size: 1.25rem;
}

.store-badge span {
    display: flex;
    flex-direction: column;
}

.store-badge small {
    font-size: 0.625rem;
    font-weight: 500;
    opacity: 0.8;
}

/* ── About page (premium) ── */
.about-stats-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.about-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
}

.about-stat-item:hover {
    transform: translateY(-3px);
}

.about-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.about-stat-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.about-intro-section {
    padding: 4rem 0;
}

.about-section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-intro-content p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-checklist i {
    color: var(--brand);
    font-size: 1.25rem;
}

/* Safety: dark sections must never inherit light-theme checklist colors */
.why-section--premium .about-checklist li,
.why-section--premium .why-premium-checklist li {
    color: var(--text-on-dark) !important;
}

.why-section--premium .about-checklist i,
.why-section--premium .why-premium-checklist i {
    color: #93c5fd !important;
}

.about-intro-visual {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-intro-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-intro-badge i {
    font-size: 1.75rem;
    color: var(--brand);
}

.about-intro-badge strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.about-intro-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-mission-section {
    padding: 0 0 4rem;
}

.about-mission-card,
.about-vision-card {
    height: 100%;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.about-mission-card {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.about-vision-card {
    background: var(--surface);
    box-shadow: var(--shadow-md);
}

.about-mission-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
}

.about-mission-card .about-mission-icon {
    color: var(--brand);
    background: rgba(255, 255, 255, 0.95);
}

.about-vision-card .about-mission-icon {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 6px 16px var(--brand-shadow);
}

.about-mission-card h3,
.about-vision-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.about-mission-card p,
.about-vision-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.92;
}

.about-vision-card p {
    color: var(--text-secondary);
    opacity: 1;
}

.about-services-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-service-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-soft);
}

.about-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.about-service-card:hover .about-service-icon {
    color: #fff;
    background: var(--brand);
}

.about-service-card h4 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.about-service-card p {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about-service-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand);
    transition: gap 0.2s ease;
}

.about-service-card:hover .about-service-link {
    gap: 0.375rem;
}

.about-values-section {
    padding: 4rem 0;
}

.about-value-card {
    text-align: center;
    padding: 2rem 1.25rem;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-soft);
}

.about-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
}

.about-value-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.about-team-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.about-team-card {
    text-align: center;
    padding: 2.5rem 1.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.about-team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: 50%;
    box-shadow: 0 8px 20px var(--brand-shadow);
}

.about-team-card h5 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.375rem;
}

.about-team-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 999px;
}

.about-team-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.about-cta-section {
    padding: 0 0 4rem;
}

.about-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-cta-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.about-cta-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.5rem;
    max-width: 480px;
    line-height: 1.65;
}

.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

.about-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.about-cta-outline:hover {
    color: var(--brand);
    background: #fff;
    border-color: #fff;
}

.about-cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.25);
}

.about-cta-visual i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991.98px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-cta-buttons {
        justify-content: center;
    }

    .about-cta-visual {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .about-stats-grid,
    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-visual img {
        height: 260px;
    }

    .about-cta-card {
        padding: 2rem 1.5rem;
    }
}

/* Legacy about classes (keep for compatibility) */
.content-section {
    padding: 4rem 0;
}

.content-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
}

.mission-card {
    background: linear-gradient(135deg, var(--brand), var(--brand-darker));
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
}

.mission-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    height: 100%;
    transition: box-shadow 0.25s ease;
}

.team-card:hover {
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: 50%;
}

/* ── Contact page (premium) ── */
.contact-quick-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.contact-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-quick-item:hover:not(.contact-quick-item--static) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-soft);
}

.contact-quick-item--static {
    cursor: default;
}

.contact-quick-item--whatsapp:hover {
    border-color: rgba(37, 211, 102, 0.4);
}

.contact-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    font-size: 1.375rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
}

.contact-quick-item--whatsapp .contact-quick-icon {
    color: #fff;
    background: #25D366;
}

.contact-quick-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.contact-quick-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    word-break: break-word;
}

.contact-page-section {
    padding: 3rem 0 4rem;
}

.contact-form-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-form-panel-head {
    margin-bottom: 1.75rem;
}

.contact-form-panel-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.25rem 0 0.5rem;
    color: var(--text-primary);
}

.contact-form-panel-head p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.contact-field-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-wrap > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    font-size: 1.125rem;
    pointer-events: none;
    z-index: 1;
}

.contact-input-wrap .form-control,
.contact-input-wrap .form-select {
    padding-left: 2.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    min-height: 48px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input-wrap--textarea .form-control {
    padding-left: 1rem;
    min-height: auto;
}

.contact-input-wrap .form-control:focus,
.contact-input-wrap .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 20px var(--brand-shadow);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px var(--brand-shadow);
}

.contact-alert {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.contact-alert i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-alert strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
}

.contact-alert p {
    margin: 0;
    font-size: 0.875rem;
}

.contact-alert--success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
}

.contact-alert--error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.contact-side-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-whatsapp-card {
    padding: 1.75rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-xl);
    text-align: center;
}

.contact-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: #fff;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-whatsapp-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.contact-hours-card,
.contact-links-card {
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-hours-card h4,
.contact-links-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-hours-card h4 i {
    color: var(--brand);
}

.contact-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.contact-hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-hours-list span {
    color: var(--text-secondary);
}

.contact-hours-list strong {
    color: var(--text-primary);
    font-weight: 700;
}

.contact-link-tiles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link-tile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--surface-alt);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-link-tile:hover {
    color: var(--brand);
    background: var(--brand-pale);
    border-color: var(--brand-soft);
}

.contact-link-tile > i:first-child {
    color: var(--brand);
    font-size: 1.25rem;
}

.contact-link-tile > i:last-child {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.contact-map-section {
    padding: 0 0 4rem;
}

.contact-map-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-map-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.25rem 0 0.75rem;
}

.contact-map-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.contact-map-content .section-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.contact-map-content .btn-brand-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.contact-map-content .btn-brand-outline:hover {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}

.contact-map-embed {
    position: relative;
    min-height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

@media (max-width: 991.98px) {
    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-card {
        grid-template-columns: 1fr;
    }

    .contact-map-embed {
        min-height: 240px;
    }

    .contact-map-embed iframe {
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 1.5rem;
    }
}

/* ── FAQ accordion ── */
.faq-section .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 1rem 1.25rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--brand-pale);
    color: var(--brand);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    color: var(--brand);
    background: #fff;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.hero-btn-primary:hover {
    color: var(--brand-dark);
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .property-list-inner {
        grid-template-columns: 1fr;
    }

    .property-list-image {
        height: 180px;
    }

    .site-nav {
        grid-template-columns: 1fr auto;
    }

    .site-nav-links {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-row {
        flex-direction: column;
    }

    .trust-bar .container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Property details page ── */
.property-detail-page {
    padding: 1.5rem 0 5rem;
}

.property-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.property-detail-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.property-detail-breadcrumb a:hover {
    color: var(--brand);
}

.property-detail-breadcrumb .sep {
    color: var(--text-muted);
}

.property-detail-breadcrumb span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.property-gallery {
    margin-bottom: 1.5rem;
}

.property-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-alt);
    margin-bottom: 0.75rem;
}

.property-gallery-main .carousel-item img,
.property-gallery-placeholder {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.property-gallery-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-soft);
    background: linear-gradient(135deg, var(--brand-pale), var(--surface-alt));
}

.property-gallery-main .carousel-control-prev,
.property-gallery-main .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    opacity: 1;
    margin: 0 1rem;
}

.property-gallery-main .carousel-control-prev-icon,
.property-gallery-main .carousel-control-next-icon {
    filter: invert(18%) sepia(98%) saturate(7500%) hue-rotate(240deg);
    width: 1.25rem;
    height: 1.25rem;
}

.property-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.property-gallery-thumb {
    flex: 0 0 88px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.65;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.property-gallery-thumb.active,
.property-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--brand);
}

.property-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-detail-header {
    margin-bottom: 1.25rem;
}

.property-detail-header h1 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.property-detail-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.property-detail-location i {
    color: var(--brand);
}

.property-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.property-detail-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--brand);
    border-radius: var(--radius-sm);
}

.property-detail-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1;
}

.property-detail-price small {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.property-detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-detail-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.property-detail-chip i {
    color: var(--brand);
}

.property-detail-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.property-detail-block h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.property-detail-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

.property-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}

.property-spec-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.property-spec-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.property-spec-item span {
    color: var(--text-secondary);
    text-align: right;
}

.property-amenity {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    margin: 0 0.375rem 0.375rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--brand-pale);
    border-radius: 999px;
}

.property-amenity i {
    color: var(--brand);
}

.availability-panel {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.availability-panel-head {
    padding: 1rem 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.availability-panel-body {
    padding: 1.25rem;
    background: var(--surface);
}

.availability-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .availability-stats {
        grid-template-columns: repeat(6, 1fr);
    }
}

.availability-stat-box {
    text-align: center;
    padding: 0.875rem 0.5rem;
    background: var(--surface-alt);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.availability-stat-box .num {
    font-size: 1.375rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.availability-stat-box .lbl {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.availability-alert {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.availability-alert.success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.availability-alert.warning {
    background: #FFFBEB;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.unit-filter-group .btn {
    font-size: 0.8125rem;
    font-weight: 600;
}

.unit-card-modern {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.125rem;
    height: 100%;
    transition: box-shadow 0.2s ease;
}

.unit-card-modern:hover {
    box-shadow: var(--shadow-md);
}

.unit-card-modern .unit-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0;
}

.unit-card-modern .unit-price {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--brand);
}

/* Sidebar */
.property-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.property-action-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.property-action-card .sidebar-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 0.25rem;
}

.property-action-card .sidebar-price-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #fff;
    background: #25D366;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    color: #fff;
    background: #1DA851;
    transform: translateY(-1px);
}

.btn-call-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--brand);
    background: var(--surface);
    border: 2px solid var(--brand);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-call-outline:hover {
    color: #fff;
    background: var(--brand);
}

.property-sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 1.25rem 0;
}

.property-sidebar h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.landlord-info-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.landlord-info-row i {
    color: var(--brand);
    width: 18px;
}

.property-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.1);
    gap: 0.75rem;
}

.property-mobile-bar a {
    flex: 1;
    text-align: center;
}

@media (max-width: 991.98px) {
    .property-gallery-main .carousel-item img,
    .property-gallery-placeholder {
        height: 280px;
    }

    .property-mobile-bar {
        display: flex;
    }

    .property-detail-page {
        padding-bottom: 6rem;
    }

    .property-sidebar {
        position: static;
    }

    .property-specs-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .property-mobile-bar,
    .property-sidebar .property-action-card form,
    .site-header,
    .site-footer,
    .trust-bar {
        display: none !important;
    }
}

/* ── Property showcase (premium hero gallery) ── */
.property-showcase {
    margin-bottom: 2rem;
}

.property-showcase-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--brand-deep);
    min-height: 340px;
}

.property-showcase-frame .carousel,
.property-showcase-single {
    height: 100%;
}

.property-showcase-frame .carousel-item img,
.property-showcase-single img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.property-showcase-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 51, 0.88) 0%, rgba(0, 0, 51, 0.35) 45%, transparent 100%);
    pointer-events: none;
}

.property-showcase-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 2rem 1.75rem;
    color: #fff;
    z-index: 2;
}

.property-showcase-caption h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    margin: 0.5rem 0 0.375rem;
    line-height: 1.2;
}

.property-showcase-location {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.88);
}

.property-showcase-frame .carousel-control-prev,
.property-showcase-frame .carousel-control-next {
    z-index: 3;
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1;
    margin: 0 1rem;
}

.property-detail-body {
    padding-bottom: 3rem;
}

.property-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.125rem 0.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.highlight-item i {
    font-size: 1.375rem;
    color: var(--brand);
    margin-bottom: 0.375rem;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.highlight-item small {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.property-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.property-feature-tile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
}

.property-feature-tile i {
    color: var(--brand);
    font-size: 1.125rem;
}

/* Booking card */
.booking-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.booking-card-head {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
    color: #fff;
}

.booking-price {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.booking-meta {
    font-size: 0.8125rem;
    opacity: 0.88;
    margin-top: 0.25rem;
}

.booking-card-body {
    padding: 1.25rem;
    background: var(--surface);
}

.booking-landlord {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.booking-landlord h6 {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.booking-landlord .landlord-name {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.booking-inquiry {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.booking-inquiry h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

body.public-site a.btn-whatsapp,
body.public-site a.btn-call-outline {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9375rem 1rem;
    margin-bottom: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none !important;
    border-radius: var(--radius-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.public-site a.btn-whatsapp {
    color: #fff !important;
    background: #25D366 !important;
    border: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

body.public-site a.btn-whatsapp:hover {
    color: #fff !important;
    background: #1DA851 !important;
    transform: translateY(-2px);
}

body.public-site a.btn-call-outline {
    color: var(--brand) !important;
    background: var(--surface) !important;
    border: 2px solid var(--brand) !important;
}

body.public-site a.btn-call-outline:hover {
    color: #fff !important;
    background: var(--brand) !important;
}

body.public-site a.btn-whatsapp.btn-whatsapp-sm {
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .property-showcase-frame .carousel-item img,
    .property-showcase-single img {
        height: 300px;
    }

    .property-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-features-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

    .property-showcase-caption {
        padding: 1.25rem;
    }

    .units-section-head {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

/* Landlord card (main content) */
.landlord-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.landlord-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.landlord-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand);
    background: linear-gradient(135deg, var(--brand-pale), #fff);
    border: 2px solid var(--brand-soft);
    border-radius: 50%;
}

.landlord-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.landlord-card-content .landlord-name {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.landlord-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landlord-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.landlord-contact-link:hover {
    color: var(--brand);
}

.landlord-contact-link i {
    color: var(--brand);
    font-size: 1.125rem;
}

.booking-note {
    margin: 0.875rem 0 0;
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: var(--brand-pale);
    border-radius: var(--radius-sm);
    line-height: 1.5;
}

.booking-note i {
    color: var(--brand);
    margin-right: 0.25rem;
}

/* Units section polish */
.units-section {
    padding: 1.75rem !important;
}

.units-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.units-section-head h4 {
    margin-bottom: 0.25rem;
}

.units-section-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.unit-card-modern {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    height: 100%;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.unit-card-modern.unit-available {
    border-color: rgba(37, 211, 102, 0.35);
    background: linear-gradient(to bottom, #fff, #f0fdf4);
}

.unit-card-modern.unit-available:hover {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.12);
}

.unit-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
}

.unit-card-modern .unit-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--text-primary);
}

.unit-card-modern .unit-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.2;
}

.unit-card-modern .unit-price small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.unit-status-pill {
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 999px;
    white-space: nowrap;
}

.unit-status-available {
    color: #065F46;
    background: #D1FAE5;
}

.unit-status-occupied,
.unit-status-reserved,
.unit-status-maintenance,
.unit-status-unavailable {
    color: var(--text-secondary);
    background: var(--surface-alt);
}

.unit-amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.unit-amenities i {
    color: var(--brand);
    margin-right: 0.2rem;
}

.btn-back-properties {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-back-properties:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.booking-inquiry .form-control {
    border-radius: var(--radius-sm);
    border-color: var(--border);
    font-size: 0.875rem;
}

.booking-inquiry .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.booking-inquiry h5 {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.booking-inquiry h5 i {
    color: var(--brand);
}

body.public-site .property-mobile-bar {
    display: none;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0));
}

body.public-site .property-mobile-bar .property-mobile-book {
    margin-bottom: 0 !important;
    font-size: 1rem;
    padding: 1rem;
}

@media (max-width: 991.98px) {
    body.public-site .property-mobile-bar {
        display: flex;
    }
}

/* ── Units showcase (premium list) ── */
.units-showcase {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.units-showcase-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.75rem 1.75rem 1.25rem;
    background: linear-gradient(135deg, var(--brand-pale) 0%, var(--surface) 100%);
    border-bottom: 1px solid var(--border);
}

.units-showcase-intro h3 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0.25rem 0 0.375rem;
}

.units-showcase-intro p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.units-filter-tabs {
    display: inline-flex;
    padding: 0.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    gap: 0.25rem;
}

.units-filter-tab {
    padding: 0.5rem 1.125rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-secondary);
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-check:checked + .units-filter-tab {
    color: #fff;
    background: var(--brand);
    box-shadow: 0 4px 12px var(--brand-shadow);
}

.units-list {
    padding: 0.5rem;
}

.unit-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.unit-row.is-hidden {
    display: none;
}

.unit-row--available {
    border-color: rgba(0, 0, 255, 0.15);
    background: linear-gradient(90deg, rgba(238, 240, 255, 0.6) 0%, var(--surface) 40%);
}

.unit-row--available:hover {
    border-color: var(--brand-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.unit-row-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.375rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.unit-row--available .unit-row-icon {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 6px 16px var(--brand-shadow);
}

.unit-row-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.unit-row-title-row h4 {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text-primary);
}

.unit-row-status {
    padding: 0.2rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
}

.unit-row-status--available {
    color: #065F46;
    background: #D1FAE5;
}

.unit-row-status--occupied,
.unit-row-status--reserved,
.unit-row-status--maintenance,
.unit-row-status--unavailable {
    color: var(--text-muted);
    background: var(--surface-alt);
}

.unit-row-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.unit-row-specs i {
    color: var(--brand);
    margin-right: 0.25rem;
    font-size: 1rem;
    vertical-align: middle;
}

.unit-row-pricing {
    text-align: right;
    min-width: 100px;
}

.unit-row-price {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--brand);
    line-height: 1.1;
}

.unit-row-period {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-top: 0.125rem;
}

.unit-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 130px;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    background: #25D366;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.unit-book-btn:hover {
    color: #fff !important;
    background: #1DA851;
    transform: translateY(-1px);
}

.unit-book-btn i {
    font-size: 1.125rem;
}

.unit-book-disabled {
    display: inline-block;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface-alt);
    border-radius: var(--radius-md);
}

@media (max-width: 767.98px) {
    .unit-row {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }

    .unit-row-pricing {
        grid-column: 2;
        text-align: left;
    }

    .unit-row-action {
        grid-column: 1 / -1;
    }

    .unit-book-btn {
        width: 100%;
    }

    .units-showcase-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── How It Works page ── */
.hiw-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.hiw-quick-strip {
    padding: 0 0 3rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.hiw-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.hiw-quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.hiw-quick-item:hover {
    border-color: var(--brand-soft);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: inherit;
}

.hiw-quick-item--whatsapp:hover {
    border-color: #25D366;
}

.hiw-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    font-size: 1.375rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
}

.hiw-quick-item--whatsapp .hiw-quick-icon {
    color: #25D366;
    background: rgba(37, 211, 102, 0.12);
}

.hiw-quick-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.125rem;
}

.hiw-quick-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-primary);
}

.hiw-system-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.hiw-system-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hiw-system-diagram {
    position: relative;
    min-height: 340px;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.hiw-diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    text-align: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 32px var(--brand-shadow);
    z-index: 2;
}

.hiw-diagram-center i {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.hiw-diagram-center strong {
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.2;
}

.hiw-diagram-center span {
    font-size: 0.6875rem;
    opacity: 0.85;
}

.hiw-diagram-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    max-width: 180px;
}

.hiw-diagram-node i {
    font-size: 1.25rem;
    color: var(--brand);
}

.hiw-diagram-node strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
}

.hiw-diagram-node span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.hiw-diagram-node--public {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.hiw-diagram-node--landlord {
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
}

.hiw-diagram-node--tenant {
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
}

.hiw-diagram-node--admin {
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
}

.hiw-flow-section {
    padding: 5rem 0;
    background: var(--surface);
}

.hiw-flow-track {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.hiw-flow-step {
    flex: 1 1 0;
    min-width: 150px;
    text-align: center;
    padding: 1.5rem 1rem;
}

.hiw-flow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-md);
}

.hiw-flow-icon--whatsapp {
    color: #25D366;
    background: rgba(37, 211, 102, 0.12);
}

.hiw-flow-step h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hiw-flow-step p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.hiw-flow-connector {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    color: var(--brand-soft);
    font-size: 1.25rem;
}

.hiw-journey-section {
    padding: 5rem 0;
}

.hiw-journey-section--tenant {
    background: var(--surface-alt);
}

.hiw-journey-section--landlord {
    background: var(--surface);
}

.hiw-journey-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hiw-journey-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
}

.hiw-journey-link:hover {
    color: var(--brand-dark);
}

.hiw-step-card {
    height: 100%;
    padding: 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hiw-journey-section--tenant .hiw-step-card {
    background: var(--surface);
}

.hiw-step-card:hover {
    border-color: var(--brand-soft);
    box-shadow: var(--shadow-md);
}

.hiw-step-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.hiw-step-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-pale);
    -webkit-text-stroke: 1px var(--brand-soft);
}

.hiw-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius-md);
}

.hiw-step-card--landlord .hiw-step-icon {
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
}

.hiw-step-card h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
}

.hiw-step-card p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.hiw-step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
}

.hiw-step-link:hover {
    color: var(--brand-dark);
}

.hiw-portals-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--brand-pale) 0%, var(--surface) 100%);
}

.hiw-portals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.hiw-portal-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hiw-portal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.hiw-portal-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
}

.hiw-portal-icon--public {
    color: var(--brand);
    background: var(--brand-pale);
}

.hiw-portal-icon--landlord {
    color: #1a1a2e;
    background: rgba(26, 26, 46, 0.08);
}

.hiw-portal-icon--tenant {
    color: #059669;
    background: rgba(5, 150, 105, 0.1);
}

.hiw-portal-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hiw-portal-card > p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.hiw-portal-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hiw-portal-card li {
    position: relative;
    padding-left: 1.375rem;
    margin-bottom: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.hiw-portal-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--brand);
    border-radius: 50%;
}

.hiw-faq-section {
    background: var(--surface-alt);
}

@media (max-width: 991.98px) {
    .hiw-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hiw-portals-grid {
        grid-template-columns: 1fr;
    }

    .hiw-system-diagram {
        min-height: 300px;
        margin-bottom: 1rem;
    }

    .hiw-diagram-node {
        max-width: 150px;
        padding: 0.625rem 0.75rem;
    }

    .hiw-diagram-node--landlord {
        right: 0;
    }

    .hiw-diagram-node--admin {
        left: 0;
    }
}

@media (max-width: 575.98px) {
    .hiw-quick-grid {
        grid-template-columns: 1fr;
    }

    .hiw-flow-track {
        flex-direction: column;
        align-items: stretch;
    }

    .hiw-flow-connector {
        justify-content: center;
        padding: 0;
        transform: rotate(90deg);
    }

    .hiw-flow-step {
        min-width: 0;
    }

    .about-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .about-cta-buttons {
        justify-content: center;
    }

    .about-cta-visual {
        display: none;
    }
}

/* ── Brand pitch & investor content ── */
.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.125rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

/* ── Home services showcase ── */
.home-services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f0f4ff 0%, var(--surface) 40%, var(--surface-alt) 100%);
    position: relative;
}

.home-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-soft), transparent);
}

.home-services-section--compact {
    padding: 3.5rem 0;
}

.home-services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.home-services-title {
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.home-services-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.home-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-soft);
    color: inherit;
}

.home-service-card-icon {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.home-service-card-icon > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius-md);
    box-shadow: 0 8px 20px var(--brand-shadow);
}

.home-service-num {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-pale);
    -webkit-text-stroke: 1px var(--brand-soft);
}

.home-service-card h3 {
    font-size: 1.0625rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.home-service-card p {
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 1.25rem;
}

.home-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: auto;
}

.home-service-card:hover .home-service-link {
    gap: 0.5rem;
}

@media (max-width: 991.98px) {
    .hero-founder-bar {
        flex-direction: column;
        text-align: center;
        border-radius: var(--radius-lg);
        padding: 1.25rem;
    }

    .hero-founder-text {
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
}

.brand-pitch-strip {
    padding: 2rem 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.brand-pitch-inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.brand-pitch-tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.brand-pitch-sub {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.brand-pitch-founder {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

.cta-belief {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
}

.site-footer-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.about-problem-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.about-problem-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.about-problem-card--owners {
    border-color: rgba(220, 38, 38, 0.15);
    background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}

.about-problem-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.about-problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--text-secondary);
}

.about-problem-list i {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--brand);
}

.about-problem-card--owners .about-problem-list i {
    color: #dc2626;
}

.about-solution-section {
    padding: 4rem 0;
    background: var(--surface);
}

.about-solution-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--brand-pale);
    border: 1px solid var(--brand-soft);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    height: 100%;
}

.about-solution-item i {
    color: var(--brand);
    font-size: 1.25rem;
}

.about-solution-goal {
    text-align: center;
    max-width: 640px;
    margin: 2rem auto 0;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-pale);
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-soft);
}

.about-market-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--brand-pale) 0%, var(--surface) 100%);
}

.about-market-grid {
    display: grid;
    gap: 0.75rem;
}

.about-market-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.about-market-item i {
    color: var(--brand);
    font-size: 1.125rem;
}

.about-growth-section {
    padding: 4rem 0;
    background: var(--surface-alt);
}

.about-growth-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--brand);
}

.about-growth-phase {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand);
}

.about-growth-card h4 {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-growth-card ul {
    padding-left: 1.125rem;
    margin: 0;
}

.about-growth-card li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-team-card--featured {
    text-align: center;
    padding: 2.5rem 2rem;
}

.about-team-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.about-team-contact a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.about-team-contact a:hover {
    text-decoration: underline;
}

.about-cta-belief {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.signup-brand-intro {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Auth pages (login / signup) ── */
.auth-page {
    padding: 2.5rem 0 4rem;
    min-height: calc(100vh - var(--header-height) - 120px);
    background: linear-gradient(180deg, var(--brand-pale) 0%, var(--surface-alt) 45%, var(--surface) 100%);
}

.auth-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.auth-page-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2.5rem;
    background: linear-gradient(145deg, #000018 0%, #000055 55%, #0000cc 100%);
    color: #fff;
    position: relative;
}

.auth-page-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.auth-page-brand > * {
    position: relative;
    z-index: 1;
}

.auth-brand-logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.auth-brand-logo img {
    height: 2.25rem;
    width: auto;
    filter: brightness(0) invert(1);
}

.auth-brand-eyebrow {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.auth-brand-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    color: #fff;
}

.auth-brand-tagline {
    font-size: 0.9375rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-on-dark-muted);
    margin-bottom: 2rem;
    max-width: 360px;
}

.auth-brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.auth-brand-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-on-dark);
}

.auth-brand-features i {
    font-size: 1.125rem;
    color: #93c5fd;
}

.auth-brand-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    padding: 0.75rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.auth-brand-whatsapp:hover {
    color: #fff !important;
    background: #25D366;
    transform: translateY(-1px);
}

.auth-page-form-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2rem;
}

.auth-card {
    width: 100%;
}

.auth-card-head {
    margin-bottom: 1.75rem;
}

.auth-card-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.auth-card-head p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.auth-alert {
    display: flex;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.auth-alert i {
    font-size: 1.375rem;
    flex-shrink: 0;
}

.auth-alert strong {
    display: block;
    font-weight: 700;
    margin-bottom: 0.125rem;
}

.auth-alert p {
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-alert--error i {
    color: #dc2626;
}

.auth-field {
    margin-bottom: 1.25rem;
}

.auth-field-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.auth-role-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
}

.auth-role-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.75rem;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-role-tab input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.auth-role-tab i {
    font-size: 1.375rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.auth-role-tab.is-active,
.auth-role-tab:has(input:checked) {
    color: var(--brand);
    background: var(--brand-pale);
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.auth-role-tab.is-active i,
.auth-role-tab:has(input:checked) i {
    color: var(--brand);
}

.auth-input-wrap {
    position: relative;
}

.auth-input-wrap > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.125rem;
    color: var(--text-muted);
    pointer-events: none;
    z-index: 1;
}

.auth-input-wrap .form-control {
    padding: 0.8125rem 1rem 0.8125rem 2.75rem;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.auth-input-wrap .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.auth-form-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.auth-remember {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
}

.auth-remember input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--brand);
}

.auth-forgot {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.auth-forgot:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9375rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: none;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px var(--brand-shadow);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px var(--brand-shadow);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.auth-signup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.75rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    background: var(--brand-pale);
    border: 1px solid var(--brand-soft);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.auth-signup-btn:hover {
    color: #fff;
    background: var(--brand);
    border-color: var(--brand);
}

.auth-signup-btn--landlord:hover {
    background: var(--brand-dark);
}

.auth-admin-link {
    margin: 1.5rem 0 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.auth-admin-link a {
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
}

.auth-admin-link a:hover {
    color: var(--brand);
}

.auth-back-home {
    margin: 1.5rem 0 0;
    text-align: center;
}

.auth-back-home a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
}

.auth-back-home a:hover {
    color: var(--brand);
}

.auth-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.auth-page-shell--wide {
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    max-width: 1200px;
}

.auth-page-form-wrap--scroll {
    max-height: calc(100vh - var(--header-height) - 5rem);
    overflow-y: auto;
}

.auth-page-brand--tenant::before {
    background: radial-gradient(ellipse 70% 50% at 10% 100%, rgba(147, 197, 253, 0.25) 0%, transparent 60%);
}

.auth-page-brand--landlord::before {
    background: radial-gradient(ellipse 70% 50% at 90% 0%, rgba(167, 139, 250, 0.2) 0%, transparent 55%);
}

.auth-brand-note {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1rem;
    margin: 0 0 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    line-height: 1.5;
}

.auth-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.auth-alert--success i {
    color: #059669;
}

.auth-form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.75rem 0 1rem;
    padding-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.auth-form-section-title:first-of-type {
    margin-top: 0;
}

.auth-form-section-title i {
    font-size: 1rem;
    color: var(--brand);
}

.auth-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
}

.auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1rem;
}

.auth-form-grid .auth-field {
    margin-bottom: 1rem;
}

.auth-field--full {
    grid-column: 1 / -1;
}

.auth-input-wrap--textarea .form-control,
.auth-input-wrap--textarea textarea {
    padding: 0.8125rem 1rem;
    min-height: 4.5rem;
    resize: vertical;
}

.auth-input-wrap--select .form-select {
    padding: 0.8125rem 1rem 0.8125rem 2.75rem;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.auth-input-wrap--select .form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}

.auth-terms {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin: 1rem 0 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.auth-terms input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--brand);
}

.auth-terms--muted {
    color: var(--text-muted);
}

.auth-requirements {
    margin: 1.25rem 0;
    padding: 1rem 1.125rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    background: var(--surface-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    line-height: 1.55;
}

.auth-requirements strong {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.auth-requirements ul {
    margin: 0;
    padding-left: 1.125rem;
}

.auth-requirements li {
    margin-bottom: 0.25rem;
}

.auth-submit-btn--landlord {
    background: linear-gradient(135deg, #1e1b4b, var(--brand));
}

.auth-submit-btn--block {
    text-decoration: none;
}

.auth-signup-switch {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.auth-signup-switch a {
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
}

.auth-signup-switch a:hover {
    text-decoration: underline;
}

.auth-signup-switch-sep {
    margin: 0 0.5rem;
    color: var(--text-muted);
}

@media (max-width: 991.98px) {
    .auth-page-shell--wide {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .auth-page-form-wrap--scroll {
        max-height: none;
        overflow: visible;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
    }

    .auth-page-shell {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .auth-page-brand {
        padding: 2rem 1.75rem;
    }

    .auth-brand-whatsapp {
        margin-top: 1rem;
    }

    .auth-page-form-wrap {
        padding: 2rem 1.75rem;
    }
}

@media (max-width: 575.98px) {
    .auth-page {
        padding: 1.5rem 0 3rem;
    }

    .auth-page-shell {
        border-radius: var(--radius-lg);
    }

    .auth-signup-row {
        grid-template-columns: 1fr;
    }

    .auth-role-tabs {
        grid-template-columns: 1fr;
    }
}
