/********** Template CSS **********/
:root {
    --primary: #f04405;
    --secondary: #76207f;
    --accent: #ff7a1a;
    --light: #fff7f0;
    --dark: #201024;
    --muted: #706673;
    --surface: #ffffff;
    --soft: #faf7fb;
    --border: rgba(118, 32, 127, .14);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.property-status-badge {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 2;
    min-height: 30px;
    padding: 6px 12px;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.property-detail-badges,
.admin-stock-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.property-detail-badges span,
.admin-stock-badges span,
.property-card-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    color: var(--secondary);
    background: rgba(118, 32, 127, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.property-featured-line,
.property-title-line {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.property-lead-card,
.property-trust-card {
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(118, 32, 127, .12);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
}

.property-lead-card h3,
.property-trust-card h4 {
    color: var(--dark);
    font-weight: 800;
}

.property-lead-card textarea {
    min-height: 130px;
}

.property-trust-card ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.property-trust-card li {
    margin-bottom: 10px;
    color: var(--muted);
}

.property-list-hero {
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .92), rgba(118, 32, 127, .78)),
        url("../img/header.jpg") center/cover;
    color: #ffffff;
}

.property-list-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    min-height: 360px;
    padding: 120px 0 54px;
}

.property-list-hero h1 {
    max-width: 760px;
    margin: 8px 0 14px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
}

.property-list-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.property-list-summary {
    display: grid;
    grid-template-columns: repeat(3, 112px);
    gap: 10px;
}

.property-list-summary div {
    min-height: 92px;
    padding: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
}

.property-list-summary strong,
.property-list-summary span {
    display: block;
}

.property-list-summary strong {
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
}

.property-list-summary span {
    margin-top: 8px;
    color: rgba(255, 255, 255, .76);
    font-size: 12px;
    font-weight: 700;
}

.property-browser {
    position: relative;
    z-index: 2;
    margin-top: -38px;
    padding-bottom: 30px;
}

.property-filter-panel {
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(32, 16, 36, .12);
}

.property-filter-main {
    display: grid;
    grid-template-columns: minmax(220px, 1.5fr) repeat(5, minmax(140px, 1fr));
    gap: 14px;
}

.property-filter-field label {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.property-filter-field .form-control,
.property-filter-field .form-select {
    min-height: 46px;
    border-color: var(--border);
    border-radius: 7px;
}

.property-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.property-state-strip {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.property-state-strip a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 800;
}

.property-state-strip a.active,
.property-state-strip a:hover {
    color: #ffffff;
    background: var(--secondary);
}

.property-state-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: var(--primary);
    background: #fff1e8;
    border-radius: 999px;
    font-size: 12px;
}

.property-results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.property-results-header h2 {
    margin: 4px 0 0;
    color: var(--dark);
    font-weight: 800;
}

.property-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.property-buyer-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
    overflow: hidden;
}

.property-buyer-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.property-buyer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.property-buyer-card:hover .property-buyer-media img {
    transform: scale(1.06);
}

.property-type-pill {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    padding: 6px 12px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.property-buyer-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.property-buyer-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.property-buyer-topline strong {
    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}

.property-buyer-topline span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.property-buyer-body h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.property-buyer-body h3 a {
    color: var(--dark);
}

.property-buyer-body h3 a:hover {
    color: var(--primary);
}

.property-buyer-location,
.property-buyer-address {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.property-buyer-location {
    display: flex;
    gap: 7px;
    color: var(--dark);
    font-weight: 700;
}

.property-buyer-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.property-buyer-facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 32px;
    padding: 6px 10px;
    color: var(--dark);
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.property-buyer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
}

.property-buyer-actions .btn {
    min-height: 42px;
    border-radius: 7px;
    font-weight: 800;
}

.property-empty-state,
.property-advisor-cta {
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
}

.property-empty-state {
    text-align: center;
}

.property-empty-state p {
    max-width: 620px;
    margin: 0 auto 20px;
    color: var(--muted);
}

.property-advisor-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .96), rgba(118, 32, 127, .9)),
        url("../img/call-to-action.jpg") center/cover;
    color: #ffffff;
}

.property-advisor-cta h2 {
    color: #ffffff;
    margin: 6px 0 10px;
}

.property-advisor-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.property-advisor-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-hero {
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .94), rgba(118, 32, 127, .78)),
        url("../img/header.jpg") center/cover;
    color: #ffffff;
}

.blog-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 32px;
    align-items: end;
    min-height: 330px;
    padding: 112px 0 52px;
}

.blog-hero h1 {
    max-width: 760px;
    margin: 8px 0 14px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1.12;
}

.blog-hero p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.blog-hero-stat {
    min-height: 118px;
    padding: 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
}

.blog-hero-stat strong,
.blog-hero-stat span {
    display: block;
}

.blog-hero-stat strong {
    color: #ffffff;
    font-size: 38px;
    line-height: 1;
}

.blog-hero-stat span {
    margin-top: 10px;
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.blog-browser {
    position: relative;
    z-index: 2;
    margin-top: -36px;
    padding-bottom: 30px;
}

.blog-filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 260px auto;
    gap: 14px;
    align-items: end;
    padding: 22px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(32, 16, 36, .12);
}

.blog-filter-panel label {
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-filter-panel .form-control,
.blog-filter-panel .form-select {
    min-height: 46px;
    border-color: var(--border);
    border-radius: 7px;
}

.blog-filter-actions {
    display: flex;
    gap: 10px;
}

.blog-category-strip {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.blog-category-strip a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 14px;
    color: var(--dark);
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 800;
}

.blog-category-strip a.active,
.blog-category-strip a:hover {
    color: #ffffff;
    background: var(--secondary);
}

.blog-category-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: var(--primary);
    background: #fff1e8;
    border-radius: 999px;
    font-size: 12px;
}

.blog-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 0;
    margin-bottom: 42px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(32, 16, 36, .1);
    overflow: hidden;
}

.blog-feature-image {
    min-height: 420px;
    overflow: hidden;
}

.blog-feature-image img,
.blog-card-image img,
.blog-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.blog-feature-copy h2 {
    margin: 14px 0;
    color: var(--dark);
    font-size: 32px;
    line-height: 1.18;
}

.blog-feature-copy h2 a,
.blog-card h3 a {
    color: var(--dark);
}

.blog-feature-copy h2 a:hover,
.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-feature-copy p,
.blog-card-body p {
    color: var(--muted);
    line-height: 1.7;
}

.blog-meta-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 6px 12px;
    color: var(--secondary);
    background: rgba(118, 32, 127, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.blog-section-heading h2 {
    margin: 4px 0 0;
    color: var(--dark);
    font-weight: 800;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.blog-card-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
    overflow: hidden;
}

.blog-card-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-card-image img {
    transition: transform .45s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-image span {
    position: absolute;
    left: 14px;
    top: 14px;
    padding: 6px 10px;
    color: #ffffff;
    background: var(--secondary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.blog-card h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.blog-tags span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 9px;
    color: var(--secondary);
    background: rgba(118, 32, 127, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--primary);
    font-weight: 900;
}

.blog-empty-state,
.blog-advisor-cta,
.blog-sidebar-card {
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
}

.blog-empty-state {
    text-align: center;
}

.blog-empty-state p {
    max-width: 580px;
    margin: 0 auto 20px;
    color: var(--muted);
}

.blog-advisor-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .96), rgba(118, 32, 127, .88)),
        url("../img/call-to-action.jpg") center/cover;
}

.blog-advisor-cta h2 {
    color: #ffffff;
    margin: 6px 0 10px;
}

.blog-advisor-cta p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}

.blog-story-hero {
    padding: 120px 0 70px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .96), rgba(118, 32, 127, .82)),
        url("../img/header.jpg") center/cover;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.blog-back-link:hover {
    color: #ffffff;
}

.blog-story-heading {
    max-width: 920px;
}

.blog-story-heading h1 {
    margin: 16px 0;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.12;
}

.blog-story-heading .blog-card-meta {
    color: rgba(255, 255, 255, .8);
}

.blog-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.blog-story-main {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
    overflow: hidden;
}

.blog-story-image {
    max-height: 480px;
}

.blog-story-content {
    padding: 34px;
    color: var(--dark);
    font-size: 17px;
    line-height: 1.9;
}

.blog-story-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 96px;
}

.blog-sidebar-card h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
}

.blog-sidebar-card p {
    color: var(--muted);
    line-height: 1.7;
}

.blog-related {
    margin-top: 42px;
}

.quicksala-hero {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .94), rgba(118, 32, 127, .76)),
        url("../img/header.jpg") center/cover;
}

.quicksala-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    min-height: 360px;
    padding: 118px 0 56px;
}

.quicksala-hero h1 {
    max-width: 760px;
    margin: 8px 0 14px;
    color: #ffffff;
    font-size: 48px;
    line-height: 1.1;
}

.quicksala-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
}

.quicksala-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.quicksala-form-card,
.quicksala-info-card,
.quicksala-empty,
.quicksala-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .08);
}

.quicksala-form-card {
    padding: 30px;
}

.quicksala-form-card h2,
.quicksala-market-header h2,
.quicksala-info-card h3,
.quicksala-empty h3 {
    color: var(--dark);
    font-weight: 800;
}

.quicksala-form-card p,
.quicksala-market-header p,
.quicksala-info-card span,
.quicksala-empty p {
    color: var(--muted);
}

.quicksala-info-card {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.quicksala-info-card div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
}

.quicksala-info-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
}

.quicksala-market-header {
    margin-bottom: 18px;
}

.quicksala-filter {
    display: grid;
    grid-template-columns: 240px minmax(180px, 1fr) auto auto;
    gap: 12px;
    margin-bottom: 22px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.quicksala-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
}

.quicksala-card {
    overflow: hidden;
}

.quicksala-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.quicksala-card div {
    padding: 18px;
}

.quicksala-card span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    color: var(--secondary);
    background: rgba(118, 32, 127, .1);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.quicksala-card h3 {
    margin: 12px 0 8px;
    color: var(--dark);
    font-size: 18px;
}

.quicksala-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 17px;
}

.quicksala-card p {
    color: var(--muted);
    line-height: 1.6;
}

.quicksala-empty {
    padding: 34px;
    text-align: center;
}

.quicksala-float {
    position: fixed;
    left: 24px;
    bottom: 28px;
    z-index: 996;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 10px 14px 10px 10px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(32, 16, 36, .22);
    text-decoration: none;
}

.quicksala-float:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.quicksala-float-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--primary);
    background: #ffffff;
    border-radius: 999px;
}

.quicksala-float-copy {
    display: grid;
    gap: 1px;
    line-height: 1.1;
}

.quicksala-float-copy strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
}

.quicksala-float-copy small {
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Brand interface revamp */
html {
    scroll-behavior: smooth;
}

body {
    color: #2f2632;
    background: #f8f4f8;
    font-family: "Heebo", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar .nav-link,
.btn {
    font-family: "Inter", Arial, sans-serif;
}

a {
    color: var(--primary);
}

a:hover {
    color: var(--secondary);
}

.site-shell {
    max-width: 100%;
    overflow-x: hidden;
}

.container-xxl,
.container {
    max-width: 1180px;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.btn {
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none !important;
}

.btn-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #c93400;
    --bs-btn-hover-border-color: #c93400;
    --bs-btn-active-bg: #b92f00;
    --bs-btn-active-border-color: #b92f00;
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #c93400;
    border-color: #c93400;
}

.btn-secondary,
.btn-warning {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--secondary);
    --bs-btn-border-color: var(--secondary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #5a1761;
    --bs-btn-hover-border-color: #5a1761;
    color: #ffffff !important;
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover,
.btn-warning:hover {
    background: #5a1761;
    border-color: #5a1761;
}

.btn-outline-primary {
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: rgba(240, 68, 5, .55);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--secondary);
    --bs-btn-hover-border-color: var(--secondary);
    color: var(--primary);
    border-color: rgba(240, 68, 5, .55);
}

.btn-outline-primary:hover {
    color: #ffffff;
    background: var(--secondary);
    border-color: var(--secondary);
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-family: "Inter", Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--primary);
    border-radius: 10px;
}

.nav-bar {
    position: sticky;
    top: 0;
    margin-top: 0;
    padding: 14px 3rem;
    background: rgba(255, 255, 255, .82) !important;
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 84px;
    border: 1px solid rgba(118, 32, 127, .12);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 18px 45px rgba(32, 16, 36, .08);
}

.navbar-light .navbar-brand {
    height: auto;
    padding: 0;
}

.brand-logo {
    width: min(220px, 52vw);
    height: auto;
    display: block;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 20px;
    padding: 31px 0;
    color: #302034;
    font-size: 13px;
    font-weight: 800;
    text-transform: none;
}

.navbar-light .navbar-nav .nav-link::after {
    color: var(--secondary);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
    min-width: 230px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 6px !important;
    box-shadow: 0 18px 50px rgba(32, 16, 36, .14);
}

.dropdown-item {
    border-radius: 4px;
    color: #39283d;
    font-size: 14px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #ffffff;
    background: var(--secondary);
}

.hero-section {
    position: relative;
    min-height: 620px;
    background:
        linear-gradient(120deg, rgba(255, 247, 240, .98) 0%, rgba(255, 255, 255, .96) 47%, rgba(118, 32, 127, .08) 100%);
}

.hero-copy {
    padding: 72px 6vw 58px;
}

.hero-copy h1 {
    max-width: 620px;
    color: var(--dark);
    font-size: clamp(38px, 4.3vw, 58px);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero-headline {
    min-height: 5.4em;
}

.hero-headline-text {
    display: inline-block;
    transition: opacity .28s ease, transform .28s ease;
}

.hero-headline-text.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.hero-copy p {
    max-width: 570px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .me-3 {
    margin-right: 0 !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-top: 42px;
}

.hero-stats div {
    padding: 18px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(118, 32, 127, .12);
    border-radius: 8px;
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-family: "Inter", Arial, sans-serif;
    font-size: 28px;
    line-height: 1;
}

.hero-stats span {
    display: block;
    margin-top: 7px;
    color: #5f5363;
    font-size: 13px;
    line-height: 1.4;
}

.hero-carousel,
.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item,
.hero-carousel .owl-carousel-item {
    height: 620px;
}

.hero-carousel img,
.header-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-carousel .owl-nav {
    left: 32px;
    flex-direction: row;
    gap: 12px;
    top: auto;
    bottom: 30px;
    transform: none;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next,
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    background: var(--primary);
    border-radius: 50%;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover,
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}

.brand-strip {
    padding: 38px 0;
    color: #ffffff;
    background: linear-gradient(90deg, var(--primary), var(--secondary) 58%, var(--accent));
}

.brand-strip h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 42px);
}

.brand-strip p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
}

.about-img {
    border-radius: 8px;
}

.about-img::before {
    left: -36%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 22px 55px rgba(32, 16, 36, .16);
}

.property-item,
.team-item,
.testimonial-item .bg-white,
.media-cta {
    border: 1px solid var(--border);
    border-radius: 8px !important;
    box-shadow: 0 18px 48px rgba(32, 16, 36, .08);
}

.property-item {
    height: 100%;
    background: #ffffff;
}

.property-item .position-relative {
    aspect-ratio: 4 / 3;
}

.property-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.property-item .bg-primary {
    background: var(--secondary) !important;
    border-radius: 4px !important;
}

.property-item .p-4 {
    min-height: 160px;
}

.property-item a.d-block {
    color: var(--dark);
    line-height: 1.35;
}

.property-item a.d-block:hover {
    color: var(--primary);
}

.property-item .border-top,
.property-item .border-end,
.testimonial-carousel .testimonial-item .border {
    border-color: rgba(118, 32, 127, .14) !important;
}

.media-cta {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .94), rgba(118, 32, 127, .92)),
        url("../img/call-to-action.jpg") center/cover;
}

.media-cta .section-kicker,
.media-cta h1,
.media-cta p {
    color: #ffffff;
}

.quick-tv {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
    gap: 24px;
    align-items: center;
}

.quick-tv .youtube-video {
    grid-row: span 4;
    grid-column: 2;
}

.youtube-video iframe {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    border-radius: 8px;
}

.team-item {
    background: #ffffff;
}

.team-item img {
    width: 100%;
    aspect-ratio: 4 / 4.25;
    object-fit: cover;
}

.team-item .btn {
    color: var(--secondary);
}

.team-item .btn:hover {
    background: var(--primary);
}

.testimonial-item.bg-light {
    background: transparent !important;
}

.footer {
    color: rgba(255, 255, 255, .68);
    background:
        linear-gradient(135deg, rgba(32, 16, 36, .98), rgba(68, 18, 74, .96)),
        radial-gradient(circle at top right, rgba(240, 68, 5, .28), transparent 38%);
}

.footer-logo {
    width: 210px;
    max-width: 100%;
}

.footer .btn.btn-social:hover,
.footer .copyright a,
.footer .footer-menu a:hover,
.footer .btn.btn-link:hover {
    color: var(--accent) !important;
}

.back-to-top {
    right: 24px;
    bottom: 24px;
    background: var(--primary);
    border-color: var(--primary);
}

.quickmann-chat {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 10000;
    font-family: "Heebo", Arial, sans-serif;
}

.quickmann-launcher {
    position: relative;
    width: 72px;
    height: 72px;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #fff1e9);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(32, 16, 36, .24);
}

.quickmann-launcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.14);
}

.quickmann-pulse {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 16px;
    height: 16px;
    background: #25d366;
    border: 3px solid #ffffff;
    border-radius: 50%;
}

.quickmann-panel {
    position: absolute;
    right: 0;
    bottom: 86px;
    width: min(310px, calc(100vw - 32px));
    max-height: min(520px, calc(100vh - 132px));
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(118, 32, 127, .16);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(32, 16, 36, .24);
    transform: translateY(16px) scale(.96);
    transform-origin: bottom right;
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease;
}

.quickmann-chat.is-open .quickmann-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.quickmann-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.quickmann-avatar {
    width: 42px;
    height: 42px;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    flex: 0 0 auto;
}

.quickmann-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.12);
}

.quickmann-header strong,
.quickmann-header span {
    display: block;
    line-height: 1.2;
}

.quickmann-header strong {
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
}

.quickmann-header span {
    margin-top: 3px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
}

.quickmann-close {
    width: 32px;
    height: 32px;
    margin-left: auto;
    color: #ffffff;
    background: rgba(255, 255, 255, .16);
    border: 0;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
}

.quickmann-messages {
    max-height: 260px;
    padding: 12px;
    overflow-y: auto;
    background: linear-gradient(180deg, #fff7f0, #ffffff);
}

.quickmann-message {
    max-width: 90%;
    margin-bottom: 8px;
    padding: 9px 11px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.45;
}

.quickmann-message.bot {
    color: #312035;
    background: #ffffff;
    border: 1px solid rgba(118, 32, 127, .12);
}

.quickmann-message.user {
    margin-left: auto;
    color: #ffffff;
    background: var(--secondary);
}

.quickmann-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.quickmann-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 2px 0 8px;
}

.quickmann-links a {
    color: #ffffff;
    background: var(--primary);
    border-radius: 999px;
    padding: 6px 9px;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
}

.quickmann-links a:hover {
    color: #ffffff;
    background: var(--secondary);
}

.quickmann-suggestions span {
    flex: 0 0 100%;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.quickmann-suggestions button {
    color: var(--secondary);
    background: #ffffff;
    border: 1px solid rgba(118, 32, 127, .2);
    border-radius: 999px;
    padding: 6px 8px;
    font-size: 11px;
    font-weight: 700;
}

.quickmann-form {
    display: flex;
    gap: 6px;
    padding: 9px;
    background: #ffffff;
    border-top: 1px solid rgba(118, 32, 127, .12);
}

.quickmann-form input {
    min-width: 0;
    flex: 1;
    padding: 9px 10px;
    border: 1px solid rgba(118, 32, 127, .2);
    border-radius: 6px;
    outline: 0;
}

.quickmann-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(240, 68, 5, .12);
}

.quickmann-form button {
    color: #ffffff;
    background: var(--primary);
    border: 0;
    border-radius: 6px;
    padding: 0 11px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .property-list-hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        min-height: auto;
        padding: 96px 0 54px;
    }

    .property-list-hero h1 {
        font-size: 34px;
    }

    .property-list-summary {
        grid-template-columns: repeat(3, 1fr);
    }

    .property-list-summary div {
        min-height: 78px;
        padding: 12px;
    }

    .property-filter-main {
        grid-template-columns: 1fr;
    }

    .property-filter-actions,
    .property-filter-actions .btn {
        width: 100%;
    }

    .property-results-header,
    .property-advisor-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-results-header .btn,
    .property-advisor-actions,
    .property-advisor-actions .btn {
        width: 100%;
    }

    .property-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-buyer-body {
        padding: 16px;
    }

    .property-buyer-actions {
        grid-template-columns: 1fr;
    }

    .blog-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
        padding: 96px 0 52px;
    }

    .blog-hero h1,
    .blog-story-heading h1 {
        font-size: 34px;
    }

    .blog-hero-stat {
        min-height: 82px;
    }

    .blog-filter-panel {
        grid-template-columns: 1fr;
    }

    .blog-filter-actions,
    .blog-filter-actions .btn {
        width: 100%;
    }

    .blog-feature-card,
    .blog-story-layout,
    .blog-card-grid-compact {
        grid-template-columns: 1fr;
    }

    .blog-feature-image {
        min-height: 240px;
    }

    .blog-feature-copy,
    .blog-story-content {
        padding: 22px;
    }

    .blog-feature-copy h2 {
        font-size: 26px;
    }

    .blog-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-advisor-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-advisor-cta .btn {
        width: 100%;
    }

    .blog-story-sidebar {
        position: static;
    }

    .quicksala-hero-inner,
    .property-advisor-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .quicksala-hero-inner {
        min-height: auto;
        padding: 96px 0 52px;
    }

    .quicksala-hero h1 {
        font-size: 34px;
    }

    .quicksala-split,
    .quicksala-filter {
        grid-template-columns: 1fr;
    }

    .quicksala-form-card {
        padding: 22px;
    }

    .quicksala-filter .btn,
    .quicksala-hero .btn {
        width: 100%;
    }

    .quicksala-float {
        left: 12px;
        right: auto;
        bottom: 12px;
        min-height: 52px;
        max-width: calc(100vw - 110px);
        padding: 8px 11px 8px 8px;
    }

    .quicksala-float-icon {
        width: 34px;
        height: 34px;
    }

    .quicksala-float-copy strong {
        font-size: 12px;
    }

    .quicksala-float-copy small {
        font-size: 11px;
        white-space: nowrap;
    }

    .nav-bar {
        padding: 0;
    }

    .navbar {
        border-radius: 0;
    }

    .navbar-light .navbar-nav {
        padding: 14px 0;
        border-top: 1px solid var(--border);
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 11px 0;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-copy {
        padding: 70px 24px 46px;
    }

    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item,
    .hero-carousel .owl-carousel-item {
        height: 420px;
    }

    .quick-tv {
        grid-template-columns: 1fr;
    }

    .quick-tv .youtube-video {
        grid-row: auto;
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 178px;
    }

    .hero-copy {
        padding: 54px 18px 36px;
    }

    .hero-copy h1 {
        font-size: 38px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item,
    .hero-carousel .owl-carousel-item {
        height: 320px;
    }

    .brand-strip {
        padding: 30px 0;
    }

    .quickmann-chat {
        right: 12px;
        bottom: 76px;
    }

    .quickmann-launcher {
        width: 62px;
        height: 62px;
    }

    .quickmann-panel {
        bottom: 74px;
        width: min(292px, calc(100vw - 24px));
        max-height: min(430px, calc(100vh - 108px));
    }

    .quickmann-messages {
        max-height: 215px;
        padding: 10px;
    }

    .quickmann-header {
        padding: 9px 10px;
    }

    .quickmann-avatar {
        width: 38px;
        height: 38px;
    }

    .quickmann-form {
        padding: 8px;
    }
}

/* Mobile app polish */
@media (max-width: 767.98px) {
    body {
        background: #f6f3f7;
    }

    .site-shell {
        background: #f6f3f7 !important;
    }

    .nav-bar {
        position: sticky;
        top: 0;
        padding: 0 !important;
        background: rgba(255, 255, 255, .96) !important;
        box-shadow: 0 12px 28px rgba(32, 16, 36, .08);
        backdrop-filter: blur(16px);
    }

    .navbar {
        min-height: 66px;
        padding: 0 14px !important;
        border: 0;
        border-radius: 0 0 14px 14px;
        box-shadow: none;
    }

    .brand-logo {
        width: 160px;
        max-height: 46px;
        object-fit: contain;
    }

    .navbar-toggler {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 1px solid rgba(118, 32, 127, .16);
        border-radius: 12px;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(240, 68, 5, .14);
    }

    .navbar-collapse {
        margin: 8px 0 12px;
        padding: 10px;
        background: #ffffff;
        border: 1px solid rgba(118, 32, 127, .1);
        border-radius: 14px;
        box-shadow: 0 18px 36px rgba(32, 16, 36, .1);
    }

    .navbar-light .navbar-nav {
        padding: 0;
        border-top: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 12px 10px;
        border-radius: 10px;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        background: #fff3ec;
    }

    .dropdown-menu {
        padding: 6px;
        background: #fff7f0;
        border: 0;
        border-radius: 12px;
        box-shadow: none;
    }

    .dropdown-item {
        border-radius: 9px;
    }

    .hero-section {
        min-height: auto;
        background: #f6f3f7;
    }

    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item,
    .hero-carousel .owl-carousel-item {
        height: 255px;
    }

    .hero-carousel img {
        border-radius: 0 0 22px 22px;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
        margin: -24px 12px 0;
        padding: 24px 18px 20px;
        background: #ffffff;
        border: 1px solid rgba(118, 32, 127, .08);
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(32, 16, 36, .11);
    }

    .hero-copy h1 {
        font-size: 32px;
        line-height: 1.12;
    }

    .hero-headline {
        min-height: auto;
    }

    .hero-copy p {
        font-size: 15px;
        line-height: 1.65;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .btn {
        min-height: 46px;
        border-radius: 12px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .hero-stats div {
        padding: 10px 8px;
        border-radius: 12px;
    }

    .hero-stats strong {
        font-size: 20px;
    }

    .hero-stats span {
        font-size: 11px;
        line-height: 1.25;
    }

    .brand-strip {
        margin: 14px 12px 22px;
        padding: 22px 0;
        border-radius: 18px;
    }

    .container-xxl.py-5 {
        padding-top: 2rem !important;
        padding-right: 12px !important;
        padding-bottom: 2rem !important;
        padding-left: 12px !important;
    }

    .container-xxl.py-5 > .container {
        max-width: 100%;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .section-kicker {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .property-item,
    .team-item,
    .testimonial-item .bg-white,
    .about-img,
    .media-cta {
        border-radius: 16px !important;
        box-shadow: 0 12px 30px rgba(32, 16, 36, .08);
    }

    .property-item .p-4 {
        min-height: auto;
        padding: 16px !important;
    }

    .row.g-4 > .col-lg-3.col-md-6,
    .row.g-4 > .col-lg-4.col-md-6 {
        width: 100%;
        max-width: 100%;
    }

    .property-item .d-flex.border-top {
        flex-wrap: wrap;
    }

    .property-item small {
        min-width: 50%;
        font-size: 12px;
    }

    .quick-tv {
        gap: 14px;
    }

    .quick-tv h1 {
        font-size: 26px;
    }

    .footer {
        margin-top: 2rem !important;
        border-radius: 22px 22px 0 0;
    }

    .quickmann-chat {
        right: 10px;
        bottom: 70px;
    }

    .quickmann-panel {
        bottom: 66px;
        width: min(270px, calc(100vw - 22px));
        max-height: min(372px, calc(100vh - 96px));
    }

    .quickmann-header {
        gap: 8px;
        padding: 8px 9px;
    }

    .quickmann-avatar {
        width: 34px;
        height: 34px;
    }

    .quickmann-header strong {
        font-size: 13px;
    }

    .quickmann-header span {
        font-size: 11px;
    }

    .quickmann-close {
        width: 28px;
        height: 28px;
        font-size: 22px;
    }

    .quickmann-messages {
        max-height: 158px;
        padding: 9px;
    }

    .quickmann-message {
        max-width: 94%;
        padding: 8px 9px;
        font-size: 12px;
    }

    .quickmann-suggestions button,
    .quickmann-links a {
        font-size: 10px;
        padding: 5px 7px;
    }

    .quickmann-form {
        padding: 7px;
    }

    .quickmann-form input {
        padding: 8px 9px;
        font-size: 13px;
    }

    .quickmann-form button {
        padding: 0 9px;
        font-size: 13px;
    }

    .back-to-top {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .hero-copy h1 {
        font-size: 29px;
    }

    .hero-carousel,
    .hero-carousel .owl-stage-outer,
    .hero-carousel .owl-stage,
    .hero-carousel .owl-item,
    .hero-carousel .owl-carousel-item {
        height: 235px;
    }
}
