/* ==========================================================================
   Sygrisis Estate — Main Stylesheet
   Brand: Forest Green #365F3B | Olive #7CB342 | Warm White #FAFAF8 | Charcoal #1F2937
   ========================================================================== */

/* ── Variables ── */
:root {
    --green: #365F3B;
    --green-dark: #2d4f30;
    --olive: #7CB342;
    --olive-dark: #689F38;
    --warm-white: #FAFAF8;
    --charcoal: #1F2937;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --white: #FFFFFF;
    --radius-card: 20px;
    --radius-btn: 12px;
    --radius-input: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .07), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .09), 0 2px 6px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .07);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .18);
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --header-h: 70px;
    --header-h-hero: 132px;
    /* taller two-row header shown on the transparent/hero header (front page) */
    --container: 1480px;
}

/* ── Reset / Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background-color: var(--warm-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--charcoal);
}

p {
    margin: 0 0 1em;
}

p:last-child {
    margin-bottom: 0;
}

/* ── Container ── */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1rem;
}

@media (max-width: 614px) {
    .property-template-default.single .container {
        padding-inline: 0.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: 2rem;
    }
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.5rem;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none !important;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    white-space: nowrap;
}

.btn-green {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-olive {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
}

.btn-olive:hover {
    background: var(--olive-dark);
    border-color: var(--olive-dark);
}

.btn-outline-green {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.btn-outline-green:hover {
    background: var(--green);
    color: var(--white);
}

.btn-outline-white {
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    border-color: rgba(255, 255, 255, .4);
    backdrop-filter: blur(6px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .22);
}

.btn-facebook {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
    width: 100%;
    justify-content: center;
}

.btn-facebook:hover {
    background: #166FE5;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20b857;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ── Screen reader only ── */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .3s, box-shadow .3s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.603), transparent);
}

.header-solid .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background .3s, box-shadow .3s;
    background: linear-gradient(to bottom, rgb(19 57 52), #396d38);
}

.wp-block-group.gemh,
.sidebar-widget.widget-hotels {
    padding: 10px;
}



.site-header.scrolled {
    background: linear-gradient(to bottom, rgba(7, 85, 7, 0.644), #396d38);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .25);
}

.header-solid .site-content {
    padding-block: 2rem;
}

@media (min-width: 1024px) {
    .header-solid .site-header:before {
        z-index: -1;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(45deg, #0000005c, #8ef17647);
        height: 46px;
        width: 100vw;
    }

    .header-solid .site-content {
        padding-block: 7rem;
    }

    .site-header.scrolled:before {
        z-index: -1;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.184);
        height: 37px;
        width: 100vw;
    }
}



.header-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: .5rem 0.5rem;
    min-height: var(--header-h);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 1.75rem;
    row-gap: .625rem;
    transition: .5s;
}

@media (min-width: 1024px) {
    .header-inner {
        padding-inline: 2rem;
    }
}

header.scrolled .header-inner {
    padding-top: 5px;
    padding-bottom: 5px;
    row-gap: 0;
}


/* Logo */
.site-logo {
    order: 1;
    margin-right: auto;
}



.site-logo a,
.logo-text-link {
    display: flex;
    align-items: center;
    gap: .625rem;
    text-decoration: none !important;
    color: var(--white);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--olive);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.logo-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .05em;
    color: var(--white);
    line-height: 1.2;
}

.logo-text small {
    display: block;
    font-size: .625rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1;
}

.site-logo img {
    height: 50px;
    width: 180px;
    background: white;
    padding: 6px;
    border-radius: 8px;
}

/* Nav */
.primary-nav {
    order: 5;
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
    }

    /* Hero/transparent header: nav wraps onto its own full-width row below the top row */
    .primary-nav {
        flex-basis: 100%;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .14);
        margin-top: .625rem;
        padding-top: .625rem;
    }
}

.nav-menu li a {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color .2s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item>a {
    color: var(--white);
}

/* Mobile nav open state */
.nav-menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--green);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    gap: 0;
}

.nav-menu.is-open li a {
    display: block;
    padding: .625rem 1rem;
    border-radius: 8px;
}

.nav-menu.is-open li a:hover {
    background: rgba(255, 255, 255, .1);
}

/* Contact info: email + phone (top row on hero header, inline on solid header) */
.header-contact {
    display: none;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    order: 2;
}

@media (min-width: 1024px) {
    .header-contact {
        display: flex;
    }
}


.header-email,
.header-phone {
    display: flex;
    align-items: center;
    gap: .375rem;
    color: rgba(255, 255, 255, .75);
    font-size: .875rem;
    text-decoration: none !important;
    transition: color .2s;
    white-space: nowrap;
}

.header-email:hover,
.header-phone:hover {
    color: var(--white);
}

/* Header right (CTA) */
.header-right {
    display: none;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    order: 3;
}

@media (min-width: 1024px) {
    .header-right {
        display: flex;
    }
}


.header-cta {
    font-size: .8125rem;
    padding: .5rem 1rem;
}

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    margin-left: auto;
    order: 4;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.hamburger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.menu-toggle.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
    position: relative;
    /* Explicit height so Swiper absolute children fill correctly.
       overflow: clip keeps Swiper contained while still allowing
       the search-card-wrap (which uses z-index) to appear above. */
    height: 85vh;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    overflow: clip;
    /* modern: clips without creating scroll context */
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
}

/* Fallback for browsers that don't support overflow:clip */
@supports not (overflow: clip) {
    .hero {
        overflow: hidden;
    }

    /* Lift search card above clip boundary via stacking context trick */
    .search-card-wrap {
        position: fixed !important;
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .65) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 8rem;
    width: 100vw;
    max-width: var(--container);
}


@media (max-width: 768px) {
    .hero__content {
        padding-top: 80px;
    }
}

.hero__eyebrow {
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px black;
    width: 80%;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1rem;
    max-width: 680px;
    text-shadow: 0 0 10px black;
}

.hero__subtitle {
    color: rgb(228, 228, 228);
    font-size: 19px;
    max-width: 520px;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 0 10px black;
}



.hero__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* ── Search Card ──
   Sits outside .hero (overflow:clip), pulled up with negative margin. */
.search-card-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1060px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    margin-top: -72px;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero__subtitle {
        color: rgba(255, 255, 255, 0.781);
        font-size: 14px;
        max-width: 520px;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .search-card-wrap {
        padding-inline: 0.5rem;
    }
}

.search-card {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
    /* overflow: hidden; */
}

.search-tabs {
    display: flex;
    border-bottom: 1px solid var(--gray-100);
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .375rem;
    padding: .9375rem 1rem;
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-400);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: color .2s, border-color .2s;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .search-tab {
        padding: 6px;
    }
}

.search-tab--active,
.search-tab:hover {
    color: var(--charcoal);
}

.search-tab--active {
    color: var(--green);
    border-bottom-color: var(--green);
}

.search-form {
    padding: 1.25rem;
}

.search-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
}

@media (min-width: 768px) {
    .search-fields {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.search-label {
    display: block;
    font-size: .6875rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: .375rem;
}

.search-input-wrap {
    position: relative;
}

.search-input-icon {
    position: absolute;
    left: .75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--olive);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: .625rem .75rem .625rem 2.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-input);
    font-family: var(--font-body);
    font-size: .875rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}

.search-input:focus {
    border-color: var(--green);
}

.location-suggest-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 40;
    background: var(--white);
    /* border: 1px solid var(--gray-200); */
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
    max-height: 260px;
    overflow-y: auto;
}

.location-suggest-item {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    color: var(--charcoal);
    padding: .6rem .8rem;
    font-family: var(--font-body);
    font-size: .84rem;
    border-bottom: 1px solid var(--gray-100);
}

.location-suggest-item:last-child {
    border-bottom: 0;
}

.location-suggest-item:hover,
.location-suggest-item.is-active {
    background: var(--green);
    color: var(--white);
}

.search-select {
    width: 100%;
    padding: .625rem .75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-input);
    font-family: var(--font-body);
    font-size: .875rem;
    color: var(--charcoal);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2rem;
}

.search-select:focus {
    border-color: var(--green);
}

.search-input-row {
    display: flex;
    gap: .5rem;
}

.search-input-row .search-select {
    flex: 1;
    min-width: 0;
}

.search-submit {
    padding: .625rem 1rem;
    flex-shrink: 0;
}

.search-card-spacer {
    height: 90px;
    background: var(--warm-white);
}

.site-content {
    padding-block: 1rem;
}

@media (min-width: 768px) {
    .search-card-spacer {
        height: 80px;
    }

    .site-content {
        padding-block: 4rem;
    }

}

/* ══════════════════════════════════════════
   LAYOUT — CONTENT + SIDEBAR
══════════════════════════════════════════ */

.wp-singular.page-template-default .site-content {
    padding-block: 9rem;
}

.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-sidebar-wrap {
        grid-template-columns: 1fr 300px;
    }
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.section-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--charcoal);
}

.section-subtitle {
    margin-top: .25rem;
    color: var(--gray-500);
    font-size: .875rem;
}

.section-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--green);
    font-size: .875rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none !important;
    flex-shrink: 0;
}

.section-link:hover {
    text-decoration: underline !important;
}

/* ══════════════════════════════════════════
   PROPERTY CARDS
══════════════════════════════════════════ */
.property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (max-width: 599px) {
    .property-grid.property-grid--mobile-swiper {
        display: block;
        gap: 0;
        max-width: 95vw;
    }

    .property-grid.property-grid--mobile-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }

    .property-grid.property-grid--mobile-swiper .swiper-slide {
        height: auto;
    }

    .property-grid.property-grid--mobile-swiper .property-card {
        height: 100%;
        margin: 0;
    }
}

@media (min-width: 600px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-grid--3col {
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .property-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .property-grid--3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    transition: box-shadow .3s, border-color .3s, transform .3s;
}

.property-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(54, 95, 59, .2);
    transform: translateY(-2px);
}

.property-card__image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 200px;
    background: var(--gray-100);
    text-decoration: none !important;
}

.property-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.property-card:hover .property-card__img {
    transform: scale(1.05);
}

.property-card__badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    gap: .375rem;
}

.badge {
    display: inline-block;
    padding: .2rem .625rem;
    border-radius: 6px;
    font-size: .6875rem;
    font-weight: 700;
    width: 100px;
    letter-spacing: .05em;
    position: relative;
    /* top: 35px;
    z-index: 1;
    left: 20px; */

}

.property-card__badges .badge {
    top: 0;
    z-index: 1;
    left: 0;
}

.badge--type {
    background: var(--green);
    color: var(--white);
}

.badge--status {
    background: var(--olive);
    color: var(--white);
}

.property-card__wishlist {
    position: absolute;
    top: .75rem;
    right: .75rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: background .2s, color .2s;
}

.property-card__wishlist:hover {
    background: var(--white);
    color: #ef4444;
}

.property-card__wishlist.is-liked {
    color: #ef4444;
}

.property-card__body {
    padding: 1rem;
}

.property-card__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .25rem;
}

.property-card__title {
    font-size: .9375rem;
    font-weight: 600;
    margin-bottom: .375rem;
    line-height: 1.4;
}

.property-card__title a {
    color: var(--charcoal);
    text-decoration: none !important;
}

.property-card__title a:hover {
    color: var(--green);
}

.property-card__location {
    display: flex;
    align-items: center;
    gap: .3rem;
    color: var(--gray-400);
    font-size: .75rem;
    margin-bottom: .75rem;
}

.property-card__meta {
    display: flex;
    align-items: center;
    gap: .875rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray-100);
    padding-top: .75rem;
    font-size: .75rem;
    color: var(--gray-500);
}

.prop-meta-item {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.prop-details-link {
    margin-left: auto;
    color: var(--green);
    font-weight: 600;
    font-size: .75rem;
    text-decoration: none !important;
}

.prop-details-link:hover {
    text-decoration: underline !important;
}

/* ══════════════════════════════════════════
   MAP BANNER
══════════════════════════════════════════ */
.map-banner {
    background: var(--green);
    border-radius: var(--radius-card);
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .map-banner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.map-banner__title {
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .625rem;
}

.map-banner__desc {
    color: rgba(255, 255, 255, .72);
    font-size: .9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* ══════════════════════════════════════════
   SERVICES STRIP
══════════════════════════════════════════ */
.services-strip {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-item {
    text-align: center;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(54, 95, 59, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-bottom: .75rem;
    color: var(--green);
}

.service-title {
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .375rem;
}

.service-desc {
    font-size: .75rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   INFO CARDS (Legal + Valuation)
══════════════════════════════════════════ */
.two-col-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .two-col-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.info-card__header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
}

.info-card__icon {
    width: 36px;
    height: 36px;
    background: rgba(54, 95, 59, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.info-card__title {
    font-size: 1rem;
    font-weight: 700;
}

.info-card__intro {
    color: var(--gray-500);
    font-size: .875rem;
    margin-bottom: 1rem;
}

.info-card__list {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 1.25rem;
}

.info-card__list li {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .875rem;
    color: var(--charcoal);
}

.info-card__list li svg {
    color: var(--olive);
    flex-shrink: 0;
}

.info-card__steps {
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 1.25rem;
    list-style: none;
    padding: 0;
}

.info-card__steps li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    color: var(--charcoal);
    counter-increment: steps;
}

.info-card__steps li::before {
    content: counter(steps);
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    font-size: .6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card__link {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    color: var(--green);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none !important;
}

.info-card__link:hover {
    text-decoration: underline !important;
}

/* ══════════════════════════════════════════
   WHY GRID
══════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    transition: border-color .2s, box-shadow .2s;
}

.why-card:hover {
    border-color: rgba(54, 95, 59, .3);
    box-shadow: var(--shadow-md);
}

.why-card__icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1rem;
    transition: background .2s;
}

.why-card:hover .why-card__icon {
    background: var(--olive);
}

.why-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.why-card__desc {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.why-card__link {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    color: var(--green);
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none !important;
}

.why-card__link:hover {
    text-decoration: underline !important;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.section--testimonials {
    background: var(--gray-100);
    padding-block: 4rem;
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

@media (min-width: 600px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.375rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .75rem;
    color: var(--olive);
}

.testimonial-quote {
    font-size: .9rem;
    color: #4B5563;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .625rem;
    border-top: 1px solid var(--gray-100);
    padding-top: .75rem;
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.testimonial-role {
    color: var(--gray-400);
    font-size: .75rem;
}

/* ══════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════ */
.widget-area {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.widget-title {
    font-size: .875rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--charcoal);
    padding: 1rem 1rem .75rem;
    border-bottom: 1px solid var(--gray-100);
    margin: 0;
}

/* Facebook */
.fb-widget-header {
    background: #1877F2;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--white);
    font-size: .875rem;
    font-weight: 600;
}

.fb-widget-body {
    padding: 1rem;
}

.fb-widget-placeholder {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.fb-page-info {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.fb-page-avatar {
    width: 44px;
    height: 44px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.fb-page-info strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.fb-page-info small {
    color: var(--gray-400);
    font-size: .75rem;
}

.fb-cover-thumb {
    border-radius: 10px;
    overflow: hidden;
    height: 90px;
    background: var(--gray-100);
}

.fb-cover-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Opportunities */
.widget-prop-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.widget-prop-item {
    display: flex;
    gap: .75rem;
    text-decoration: none !important;
    color: inherit;
}

.widget-prop-item:hover .widget-prop-title {
    color: var(--green);
}

.widget-prop-thumb {
    width: 64px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--gray-100);
}

.widget-prop-thumb--placeholder {
    background: var(--gray-200);
}

.widget-prop-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.widget-prop-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    margin-bottom: .25rem;
    transition: color .2s;
}

.widget-prop-price {
    font-size: .875rem;
    font-weight: 700;
    color: var(--green);
}

.widget-view-all {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--green);
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none !important;
    padding-top: .25rem;
}

.widget-view-all:hover {
    text-decoration: underline !important;
}

/* Businesses */
.widget-biz-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.widget-biz-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.widget-biz-icon {
    width: 36px;
    height: 36px;
    background: rgba(54, 95, 59, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.widget-biz-item strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.widget-biz-item small {
    color: var(--gray-400);
    font-size: .75rem;
}

/* Hotels */
.widget-hotel-list {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.widget-hotel-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.widget-hotel-item strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
}

.widget-hotel-item small {
    color: var(--gray-400);
    font-size: .75rem;
}

.widget-hotel-stars {
    display: flex;
    gap: 1px;
    color: var(--olive);
}

/* SYEK */
.syek-badge-full {
    padding: 1.25rem;
    text-align: center;
}

.syek-icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-inline: auto;
    margin-bottom: .75rem;
}

.syek-badge-full h4 {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: .375rem;
}

.syek-badge-full p {
    font-size: .75rem;
    color: var(--gray-400);
    line-height: 1.5;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding-block: 3.5rem;
}

.footer-inner {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
    .footer-inner {
        padding-inline: 2rem;
    }
}

/* ── Newsletter Subscribe Box ── */
.newsletter-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
    .newsletter-box {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.newsletter-box__text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .25rem;
}

.newsletter-box__text p {
    font-size: .875rem;
    color: rgba(255, 255, 255, .55);
    margin: 0;
}

.newsletter-form {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 900px) {
    .newsletter-form {
        width: 420px;
    }
}

.newsletter-form__row {
    display: flex;
    gap: .625rem;
}

.newsletter-form__input {
    flex: 1;
    min-width: 0;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: .875rem;
    outline: none;
    transition: border-color .2s, background .2s;
}

.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.newsletter-form__input:focus {
    border-color: var(--olive);
    background: rgba(255, 255, 255, .12);
}

.newsletter-form__submit {
    border-radius: 999px;
    padding: .7rem 1.4rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.newsletter-form__accept {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    margin-top: .625rem;
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    cursor: pointer;
}

.newsletter-form__accept input {
    margin-top: .2rem;
    accent-color: var(--olive);
    flex-shrink: 0;
}

.newsletter-form__accept a {
    color: rgba(255, 255, 255, .8);
    text-decoration: underline;
}

.newsletter-form__feedback {
    margin: .5rem 0 0;
    font-size: .8125rem;
    color: var(--olive);
    min-height: 1em;
}

.newsletter-form__feedback.is-error {
    color: #f28b82;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand {
    grid-column: span 2;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .625rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--olive);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.footer-logo strong {
    display: block;
    font-family: var(--font-display);
    font-size: .8125rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.footer-logo small {
    display: block;
    font-size: .625rem;
    color: rgba(255, 255, 255, .4);
}

.footer-desc {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: .625rem;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none !important;
    transition: background .2s;
}

.social-fb:hover {
    background: #1877F2;
}

.social-wa:hover {
    background: #25D366;
}

.social-email:hover {
    background: var(--green);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: .875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-nav li a {
    color: rgba(255, 255, 255, .5);
    font-size: .8125rem;
    text-decoration: none !important;
    transition: color .2s;
}

.footer-nav li a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .5);
}

.footer-contact li svg {
    color: var(--olive);
    flex-shrink: 0;
    margin-top: .1em;
}

.footer-contact li a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none !important;
    transition: color .2s;
}

.footer-contact li a:hover {
    color: var(--white);
}

.syek-badge {
    margin-top: 1.5rem;
}

.syek-label {
    display: block;
    font-size: .75rem;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

.syek-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1.5px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    padding: .5rem .875rem;
}

.syek-pill svg {
    color: var(--olive);
}

.syek-pill strong {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
}

.syek-pill small {
    display: block;
    font-size: .625rem;
    color: rgba(255, 255, 255, .3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .375rem;
    text-align: center;
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: .8125rem;
    color: rgba(255, 255, 255, .3);
}

.footer-tagline {
    font-size: .75rem;
    color: rgba(255, 255, 255, .2);
}

/* ══════════════════════════════════════════
   SINGLE PROPERTY
══════════════════════════════════════════ */
.single-property-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2rem;
}

@media (min-width: 1024px) {
    .single-property-wrap {
        grid-template-columns: 1fr 360px;
        align-items: start;
    }
}

.property-gallery {
    border-radius: var(--radius-card);
    margin-bottom: 1.5rem;
    position: relative;
}

.property-gallery__hero-wrap {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    background: #0f1720;
}

.property-gallery__hero {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.property-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(12, 23, 33, .55);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
}

.property-gallery__nav--prev {
    left: 12px;
}

.property-gallery__nav--next {
    right: 12px;
}

.property-gallery__nav:hover {
    background: rgba(12, 23, 33, .82);
}

.property-gallery__fullscreen-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 95, 51, 0.7);
    color: #fff;
    padding: 20px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .03em;
    cursor: pointer;
    z-index: 2;
}

.property-gallery__fullscreen-btn:hover {
    background: rgba(12, 23, 33, .9);
}

.property-gallery__thumbs-wrap {
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    gap: .4rem;
    align-items: center;
    margin-top: .75rem;
}

.property-gallery__thumb-nav {
    height: 86px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
    color: var(--charcoal);
    font-size: 18px;
    cursor: pointer;
}

.property-gallery__thumb-nav:hover {
    background: var(--gray-100);
}

.property-gallery__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100px;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: .25rem;
}

.property-gallery__thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    aspect-ratio: 1 / 1;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.property-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-gallery__thumb.is-active {
    border-color: var(--green);
}

.property-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 13, 19, .94);
    display: none;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 2rem 1.2rem 1rem;
}

/* CSS specificity alone can't beat the [hidden] attribute reliably across
   browsers when combined with `display: grid`, so visibility is driven by
   this explicit class toggled from JS instead of relying on [hidden]. */
.property-gallery-lightbox.is-visible {
    display: grid;
}

.property-gallery-lightbox__image {
    width: min(94vw, 1400px);
    height: min(82vh, 880px);
    object-fit: contain;
    display: block;
    transform-origin: center center;
    transition: transform .18s ease;
    cursor: zoom-in;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.property-gallery-lightbox__image.is-zoomed {
    cursor: grab;
}

.property-gallery-lightbox__image.is-panning {
    cursor: grabbing;
}

.property-gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.property-gallery-lightbox__nav--prev {
    left: 1.2rem;
}

.property-gallery-lightbox__nav--next {
    right: 1.2rem;
}

.property-gallery-lightbox__nav:hover {
    background: rgba(255, 255, 255, .34);
}

.property-gallery-lightbox__close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.property-gallery-lightbox__thumbs {
    width: min(94vw, 1200px);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86px;
    gap: .5rem;
    overflow-x: auto;
    padding-block: .5rem;
}

.property-gallery-lightbox__thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.property-gallery-lightbox__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-gallery-lightbox__thumb.is-active {
    border-color: var(--olive);
}

.property-single-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.property-single-header>div {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.property-single-title {
    font-size: 1.625rem;
    font-weight: 800;
}

.property-single-location {
    display: flex;
    align-items: center;
    gap: .375rem;
    color: var(--gray-500);
    font-size: .9375rem;
}

.property-single-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    white-space: nowrap;
}

.property-stats {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    margin-bottom: 1.5rem;
    justify-content: center;
}

.property-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .25rem;
    color: var(--green);
}

.property-stat span {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
}

.property-stat small {
    font-size: .75rem;
    color: var(--gray-400);
}

.property-description {
    margin-bottom: 2rem;
}

.property-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.property-map-section {
    margin-bottom: 2rem;
}

/* Enquiry Panel */
.enquiry-panel {
    position: sticky;
    top: calc(var(--header-h) + 4rem);
}

.enquiry-panel__inner {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--gray-100);
    padding: 1.5rem;
}

.enquiry-price {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .375rem;
}

.enquiry-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: .875rem;
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: .375rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: .625rem .875rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}

/* ══════════════════════════════════════════
   SINGLE PROPERTY — modernized polish
══════════════════════════════════════════ */
.single-property__main {
    min-width: 0;
}

.property-single-header {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem 1.75rem;
}

.property-stat {
    background: var(--warm-white);
    border-radius: 14px;
    padding: 10px;
    min-width: 32%;
}

.property-stat svg {
    color: var(--olive);
}

.property-description,
.similar-properties-section {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
}

.property-amenities {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    margin-bottom: 2rem;
}

.property-amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    gap: 5px;
    margin-top: .5rem;
}

.property-amenities__item {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: 7px;
    background: var(--warm-white);
    border-radius: 12px;
}

.property-amenities__icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(124, 179, 66, .12);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-amenities__label {
    font-size: .875rem;
    color: var(--charcoal);
    font-weight: 500;
    line-height: 14px;
}

.property-description h2,
.property-section-title {
    position: relative;
    padding-left: .875rem;
}

.property-description h2::before,
.property-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: .15em;
    bottom: .15em;
    width: 4px;
    border-radius: 4px;
    background: var(--olive);
}

.enquiry-panel__inner {
    position: relative;
    overflow: hidden;
}

.enquiry-panel__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--olive), var(--green));
}

.enquiry-title {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.property-gallery__fullscreen-btn {
    backdrop-filter: blur(4px);
}

/* ══════════════════════════════════════════
   SHARED FEEDBACK MODAL (Request Sent / Newsletter)
══════════════════════════════════════════ */
.feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.feedback-modal.is-visible {
    display: flex;
}

.feedback-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 19, .55);
}

.feedback-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
}

.feedback-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.feedback-modal__close:hover {
    background: var(--gray-200);
}

.feedback-modal__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(124, 179, 66, .12);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-modal__icon--error {
    background: rgba(220, 53, 69, .1);
    color: #dc3545;
}

.feedback-modal__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.feedback-modal__message {
    font-size: .9rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.feedback-modal__ok {
    width: 100%;
}

/* ══════════════════════════════════════════
   NEWSLETTER PROMPT MODAL (after enquiry success)
══════════════════════════════════════════ */
.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.newsletter-modal.is-visible {
    display: flex;
}

.newsletter-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 19, .55);
}

.newsletter-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
}

.newsletter-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.newsletter-modal__close:hover {
    background: var(--gray-200);
}

.newsletter-modal__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(124, 179, 66, .12);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-modal__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.newsletter-modal__message {
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.newsletter-modal__input {
    width: 100%;
    padding: .7rem .9rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .9rem;
    margin-bottom: .75rem;
    outline: none;
    transition: border-color .2s;
}

.newsletter-modal__input:focus {
    border-color: var(--olive);
}

.newsletter-modal__accept {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    text-align: left;
    font-size: .75rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    cursor: pointer;
}

.newsletter-modal__accept input {
    margin-top: .2rem;
    accent-color: var(--olive);
    flex-shrink: 0;
}

.newsletter-modal__accept a {
    color: var(--green);
    text-decoration: underline;
}

.newsletter-modal__actions {
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

/* ══════════════════════════════════════════
   NEWSLETTER UNSUBSCRIBE PAGE
══════════════════════════════════════════ */
.unsubscribe-page {
    max-width: 480px;
    margin: 4rem auto;
    text-align: center;
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    padding: 2.5rem 2rem;
}

.unsubscribe-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.unsubscribe-page h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.unsubscribe-page p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--green);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.enquiry-actions {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-top: .875rem;
}

/* ══════════════════════════════════════════
   FILTER BAR (Archive)
══════════════════════════════════════════ */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.filter-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    align-items: end;
}

@media (min-width: 768px) {
    .filter-fields {
        grid-template-columns: repeat(3, 1fr) auto;
    }


}

@media (min-width: 1024px) {
    .filter-fields {
        grid-template-columns: repeat(5, 1fr) auto;
    }
}

.filter-input,
.filter-select {
    width: 100%;
    padding: .625rem .75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .875rem;
    color: var(--charcoal);
    background: var(--white);
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--green);
}

.filter-submit {
    padding: .625rem 1.25rem;
}

.archive-header {
    margin-bottom: 1.25rem;
}

.archive-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.no-results-wrap {
    text-align: center;
    padding: 3rem 1rem;
}

.no-results {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.property-map-fullscreen {
    margin-top: 2rem;
    background: var(--white);
}

.property-map-fullscreen__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1rem;
}

.property-map-fullscreen__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.property-map-fullscreen__frame {
    width: 90%;
    height: 40vh;
    min-height: 400px;
    border: 0;
    display: block;
    margin: 20px auto;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .property-gallery__hero {
        height: 300px;
    }

    .property-amenities__grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(40%, 1fr));
        margin-top: .5rem;
    }

    .property-gallery__thumbs-wrap {
        grid-template-columns: 32px 1fr 32px;
    }

    .property-gallery__thumb-nav {
        height: 36px;
    }

    .property-gallery-lightbox__nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .property-map-fullscreen__topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-map-fullscreen__frame {
        min-height: 70vh;
        height: 70vh;
    }
}

/* ══════════════════════════════════════════
   BLOG / POSTS
══════════════════════════════════════════ */
.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-card {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.post-card__thumb {
    display: block;
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}

.post-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.post-card__thumb:hover img {
    transform: scale(1.04);
}

.post-card__body {
    padding: 1.25rem;
}

.post-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .625rem;
}

.post-card__title a {
    color: var(--charcoal);
    text-decoration: none !important;
}

.post-card__title a:hover {
    color: var(--green);
}

.post-card__excerpt {
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   PAGE / SINGLE POST
══════════════════════════════════════════ */
.page-header {
    margin-bottom: 1.5rem;
}

.page-title {
    font-size: 1.875rem;
    font-weight: 800;
}

.entry-content {
    font-size: .9375rem;
    line-height: 1.75;
    color: var(--gray-700);
}

.entry-content h2 {
    font-size: 1.375rem;
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.entry-content h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: .625rem;
}

.entry-content p {
    margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1em;
    list-style: revert;
}

.entry-content img {
    border-radius: 10px;
    margin-block: 1.5rem;
}

.single-post {
    background: var(--white);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    border: 1.5px solid var(--gray-100);
}

.single-post__thumb {
    margin: -2rem -2rem 1.5rem;
}

.single-post__thumb img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.single-post__title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.single-post__meta {
    color: var(--gray-400);
    font-size: .875rem;
    margin-bottom: 1.5rem;
}

.single-post__meta span {
    margin-right: 1rem;
}

/* ══════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════ */
.nav-links {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .875rem;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    color: var(--charcoal);
    text-decoration: none !important;
    transition: background .2s, border-color .2s, color .2s;
}

.nav-links a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.nav-links .current {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ══════════════════════════════════════════
   FALLBACK NAV
══════════════════════════════════════════ */
.fallback-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    list-style: none;
}

.fallback-nav li a {
    color: rgba(255, 255, 255, .8);
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: color .2s;
}

.fallback-nav li a:hover {
    color: var(--white);
}

/* ══════════════════════════════════════════
   SIMILAR PROPERTIES
══════════════════════════════════════════ */
.similar-properties-section {
    margin-top: 2.5rem;
}

/* ══════════════════════════════════════════
   SINGLE PROPERTY V2 (desktop gallery workspace)
══════════════════════════════════════════ */
.single-property-viewport {
    margin-top: 124px;
    min-height: calc(100vh - var(--header-h));
    background: #f2edf7;
}

.single-property-layout {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) minmax(360px, 520px);
    height: calc(100vh - var(--header-h));
}

.single-property-layout.single-image {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.single-property-thumbs {
    background: #fff;
    overflow-y: auto;
    display: grid;
    gap: .2rem;
    align-content: start;
}

.single-property-layout.single-image .single-property-thumbs {
    display: none;
}

.single-property-thumb,
.single-property-thumb.property-gallery__thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, .08);
    aspect-ratio: 4 / 3;
    height: 150px;
}

@media (max-width:768px) {

    .single-property-thumb,
    .single-property-thumb.property-gallery__thumb {
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
        border: 2px solid transparent;
        background: rgba(255, 255, 255, .08);
        aspect-ratio: 4 / 3;
        height: 100px;
    }


}

.single-property-thumb.property-gallery__thumb.is-active {
    border-color: #fff;
}

.single-property-thumb--empty {
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.single-property-preview {
    position: relative;
    background: linear-gradient(180deg, #d0d1d1 30%, #ffffff 70%);
    overflow: hidden;
}

.single-property-preview__image,
.single-property-preview .property-gallery__hero {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.single-property-preview__nav.property-gallery__nav {
    width: 44px;
    height: 44px;
    background: rgba(17, 24, 39, .62);
}

.single-property-preview__fullscreen {
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
}

@media (max-width:768px) {

    .single-property-details__quick-actions {
        display: none !important;
    }

    .single-property-preview__fullscreen {
        bottom: 10px;
    }
}

.single-property-preview__empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .85);
    font-size: 1.125rem;
    font-weight: 700;
}

.single-property-details {
    background: #efe8f5;
    border-left: 1px solid rgba(49, 36, 69, .08);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.single-property-details__scroll {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem 1.2rem 5.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-property-head,
.property-description,
.property-info-card,
.property-amenities,
.similar-properties-section,
.property-map-inline {
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(49, 36, 69, .1);
    border-radius: 16px;
    box-shadow: none;
    margin: 0;
    padding: 1rem;
}

.single-property-head__badges {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .8rem;
}

.single-property-head .property-single-title {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.single-property-head .property-single-price {
    margin-top: .6rem;
    font-size: 1.95rem;
}

.property-stats {
    margin: 0;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(49, 36, 69, .1);
    border-radius: 16px;
    box-shadow: none;
    justify-content: flex-start;

}

.property-stat {
    background: #f9f6fc;
    border: 1px solid rgba(49, 36, 69, .08);
}

.property-info-list {
    display: grid;
    gap: .55rem;
}

.property-info-list div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .75rem;
    padding-bottom: .45rem;
    border-bottom: 1px dashed rgba(49, 36, 69, .14);
}

.property-info-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.property-info-list span {
    font-size: .8125rem;
    color: #6f6482;
}

.property-info-list strong {
    font-size: .9rem;
    color: #2f2a3f;
    text-align: right;
}

.property-map-inline__frame {
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 12px;
}

.single-property-details .property-grid.property-grid--3col {
    grid-template-columns: 1fr;
    gap: .85rem;
}

.single-property-details .property-card {
    border-radius: 12px;
}

.single-property-details__sticky {
    position: sticky;
    bottom: 0;
    z-index: 2;
    background: #efe8f5;
    border-top: 1px solid rgba(49, 36, 69, .12);
    padding: .9rem 1.1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.single-property-details__quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.single-property-details__quick-actions .btn {
    min-width: 0;
    padding-inline: .6rem;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.enquiry-modal.is-visible {
    display: flex;
}

.enquiry-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 19, .58);
}

.enquiry-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 460px);
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
}

.enquiry-modal__close {
    position: absolute;
    top: .65rem;
    right: .65rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.enquiry-modal__close:hover {
    background: var(--gray-200);
}

@media (max-width: 1200px) {
    .single-property-layout {
        grid-template-columns: 200px minmax(0, 1fr) minmax(360px, 520px);
    }

    .single-property-layout.single-image {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    }
}

@media (max-width: 1023px) {
    .single-property-viewport {
        margin-top: calc(var(--header-h));
        min-height: auto;
        background: transparent;
        /* padding: 0 .6rem 1rem; */
    }

    .single-property-layout {
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: .7rem;
    }

    .single-property-thumbs {
        order: 2;
        background: transparent;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(92px, 24vw);
        gap: .55rem;
    }

    .single-property-preview {
        order: 1;
        /* border-radius: 14px; */
    }

    .single-property-preview__image,
    .single-property-preview .property-gallery__hero {
        height: 44vh;
        min-height: 260px;
    }

    .single-property-details {
        order: 3;
        border-left: 0;
        border-radius: 14px;
        overflow: hidden;
    }

    .single-property-details__scroll {
        padding: 6px 6px 2rem;
        overflow: visible;
    }

    .single-property-details__sticky {
        padding: .75rem .85rem calc(.85rem + env(safe-area-inset-bottom));
    }

    .single-property-details .property-grid.property-grid--3col {
        grid-template-columns: 1fr;
    }

    .single-property-details__sticky {
        position: fixed;
        bottom: 60px;
        width: 98vw;
        left: 0;
    }
}

img.property-gallery__hero.single-property-preview__image.background_blur {
    object-fit: cover !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: blur(8px);
    opacity: 0.8;
    pointer-events: none;
}


@media (max-width: 768px) {
     .single-property-layout.single-image {
        grid-template-columns: 1fr;
    }
}