.flat-slider.home-3 {
    position: relative;
    overflow: hidden;
}

.flat-slider.home-3 .container {
    position: relative;
    z-index: 2;
}

.flat-slider.home-3 .slider-content {
    position: relative;
    z-index: 2;
}


/* Main search wrapper */

.home-3 .vf-property-search {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1210px;
    margin-top: 42px;
}


/* Tabs */

.home-3 .vf-property-search__tabs {
    display: inline-flex;
    align-items: stretch;
    min-width: 300px;
    padding: 0 18px;
    background: #ffffff;
    border-radius: 17px 17px 0 0;
}

.home-3 .vf-property-search__tab {
    position: relative;
    min-width: 90px;
    /* height: 74px; */
    padding: 20px 15px;
    border: 0;
    background: transparent;
    color: #6f6f6f;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.home-3 .vf-property-search__tab::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 2px;
    background: transparent;
    transition: background-color 0.3s ease;
}

.home-3 .vf-property-search__tab:hover,
.home-3 .vf-property-search__tab.active {
    color: #151515;
}

.home-3 .vf-property-search__tab.active::after {
    background: #151515;
}


/* Search form */

.home-3 .vf-property-search__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 50px;
    align-items: center;
    column-gap: 18px;
    width: 100%;
    /* min-height: 118px; */
    padding: 12px;
    background: #ffffff;
    border-radius: 0 16px 16px 16px;
    box-shadow: 0 20px 60px rgba(10, 24, 50, 0.16);
}


/* Search input */

.home-3 .vf-property-search__input-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    /* height: 70px; */
    padding: 10px;
    background: #f6f6f6;
    border-radius: 15px;
}

.home-3 .vf-property-search__home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-right: 16px;
    color: #121212;
}

.home-3 .vf-property-search__input-wrap input {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #181818;
    font-size: 13px;
    font-weight: 400;
}

.home-3 .vf-property-search__input-wrap input::placeholder {
    color: #252525;
    opacity: 1;
}


/* Advanced button */

.home-3 .vf-property-search__advanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* height: 70px; */
    padding: 10px;
    border: 0;
    background: transparent;
    color: #171717;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 12px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}

.home-3 .vf-property-search__advanced:hover,
.home-3 .vf-property-search__advanced.is-open {
    background: #f6f6f6;
    color: #c49c53;
}


/* Search button */

.home-3 .vf-property-search__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c49c53;
    color: #ffffff;
    cursor: pointer;
    /* box-shadow: 0 12px 28px rgba(239, 98, 79, 0.28); */
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-3 .vf-property-search__submit:hover {
    background: #c49c53;
    color: #ffffff;
    transform: translateY(-2px);
    /* box-shadow: 0 16px 34px rgba(239, 98, 79, 0.38); */
}


/* Advanced fields */

.home-3 .vf-property-search__advanced-fields {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding-top: 22px;
    margin-top: 4px;
    border-top: 1px solid #eeeeee;
}

.home-3 .vf-property-search__advanced-fields.is-visible {
    display: grid;
}

.home-3 .vf-property-search__field label {
    display: block;
    margin-bottom: 8px;
    color: #191919;
    font-size: 13px;
    font-weight: 600;
}

.home-3 .vf-property-search__field input,
.home-3 .vf-property-search__field select {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    outline: none;
    background: #f8f8f8;
    color: #202020;
    font-size: 14px;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
}

.home-3 .vf-property-search__field input:focus,
.home-3 .vf-property-search__field select:focus {
    border-color: #c49c53;
    background: #ffffff;
}


/* Categories */

.home-3 .vf-property-search__categories {
    margin-top: 32px;
}

.home-3 .vf-property-search__categories > p {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.home-3 .vf-property-search__categories .categories-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
}

.home-3 .vf-property-search__categories .categories-list a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.home-3 .vf-property-search__categories .categories-list a:hover {
    color: #c49c53;
    transform: translateY(-2px);
}

.home-3 .vf-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.home-3 .vf-category-icon i {
    font-size: 17px;
}

.home-3 .vf-property-search__categories .categories-list a:hover
.vf-category-icon {
    background: #c49c53;
    color: #ffffff;
    transform: scale(1.05);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .home-3 .vf-property-search__form {
        grid-template-columns: minmax(0, 1fr) auto 64px;
    }

    .home-3 .vf-property-search__submit {
        width: 64px;
        height: 64px;
    }

    .home-3 .vf-property-search__input-wrap,
    .home-3 .vf-property-search__advanced {
        height: 64px;
    }
}


@media (max-width: 991px) {

    .home-3 .vf-property-search {
        margin-top: 35px;
    }

    .home-3 .vf-property-search__form {
        grid-template-columns: minmax(0, 1fr) 64px;
        padding: 20px;
    }

    .home-3 .vf-property-search__advanced {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: flex-start;
        height: 48px;
        padding: 0 10px;
        margin-top: 5px;
    }

    .home-3 .vf-property-search__submit {
        grid-column: 2;
        grid-row: 1;
    }

    .home-3 .vf-property-search__advanced-fields {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 767px) {

    .home-3 .vf-property-search {
        margin-top: 30px;
    }

    .home-3 .vf-property-search__tabs {
        width: 100%;
        min-width: 0;
        padding: 0 8px;
    }

    .home-3 .vf-property-search__tab {
        flex: 1;
        min-width: 0;
        height: 62px;
        font-size: 15px;
    }

    .home-3 .vf-property-search__form {
        grid-template-columns: minmax(0, 1fr) 56px;
        column-gap: 10px;
        min-height: auto;
        padding: 14px;
        border-radius: 0 0 15px 15px;
    }

    .home-3 .vf-property-search__input-wrap {
        height: 56px;
        padding: 0 15px;
        border-radius: 11px;
    }

    .home-3 .vf-property-search__home-icon {
        margin-right: 10px;
    }

    .home-3 .vf-property-search__input-wrap input {
        font-size: 14px;
    }

    .home-3 .vf-property-search__submit {
        width: 56px;
        height: 56px;
    }

    .home-3 .vf-property-search__advanced {
        font-size: 14px;
    }

    .home-3 .vf-property-search__advanced-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-3 .vf-property-search__categories {
        margin-top: 24px;
    }

    .home-3 .vf-property-search__categories .categories-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 17px 12px;
    }

    .home-3 .vf-property-search__categories .categories-list a {
        gap: 9px;
        font-size: 14px;
    }

    .home-3 .vf-category-icon {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }
}


@media (max-width: 430px) {

    .home-3 .vf-property-search__input-wrap input::placeholder {
        font-size: 12px;
    }

    .home-3 .vf-property-search__categories .categories-list {
        grid-template-columns: 1fr 1fr;
    }
}



/* =====================================================
   FOUNDER'S NOTE SECTION
===================================================== */

.re-founder-section {
    padding: 60px 0;
    background: #f7f5f0;
}

.re-founder-section *,
.re-founder-section *::before,
.re-founder-section *::after {
    box-sizing: border-box;
}

.re-founder-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;

    width: 100%;
    height: 500px;

    overflow: hidden;

    border-radius: 22px;
}


/* =====================================================
   LEFT IMAGE
===================================================== */

.re-founder-image {
    position: relative;

    width: 100%;
    height: 500px;

    overflow: hidden;

    background: #d8d2c8;
}

.re-founder-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.7s ease;
}

.re-founder-wrapper:hover .re-founder-image img {
    transform: scale(1.03);
}

.re-founder-image::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(9, 27, 51, 0.01) 38%,
            rgba(9, 27, 51, 0.16) 70%,
            rgba(9, 27, 51, 0.7) 100%
        );
}


/* =====================================================
   EXPERIENCE BADGE
===================================================== */

.re-founder-experience {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;

    display: flex;
    align-items: center;
    gap: 9px;

    width: 178px;

    padding: 11px 13px;

    background: #ffffff;

    border-radius: 11px;

    box-shadow:
        0 12px 28px rgba(20, 18, 13, 0.14);
}

.re-founder-experience strong {
    color: #c49c53;

    font-size: 27px;
    font-weight: 500;
    line-height: 1;
}

.re-founder-experience span {
    max-width: 76px;

    color: #1b1b1b;

    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}


/* =====================================================
   IMAGE CAPTION
===================================================== */

.re-founder-image-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    z-index: 3;

    padding-top: 10px;

    border-top:
        1px solid rgba(255, 255, 255, 0.35);

    color: rgba(255, 255, 255, 0.88);

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* =====================================================
   RIGHT CONTENT
===================================================== */

.re-founder-content {
    position: relative;
    isolation: isolate;

    display: flex;
    align-items: center;

    width: 100%;
    height: 500px;
    min-width: 0;

    padding: 30px 40px 30px 46px;

    overflow: hidden;

    background: #c49c53;
    color: #ffffff;
}

.re-founder-content::before {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;

    width: 190px;
    height: 190px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    transform: translate(44%, -44%);
}

.re-founder-content::after {
    content: attr(data-bg-text);

    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;

    transform: translate(-50%, -50%);

    color: rgba(255, 255, 255, 0.06);

    font-size: clamp(70px, 9vw, 125px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 5px;

    white-space: nowrap;

    pointer-events: none;
    user-select: none;
}

.re-founder-content > div {
    position: relative;
    z-index: 2;

    width: 100%;
}


/* =====================================================
   SUBHEADING
===================================================== */

.re-founder-content .text-subtitle {
    margin-bottom: 9px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.re-founder-content h2 {
    max-width: 500px;

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 40px !important;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -1px;
}


/* =====================================================
   QUOTE
===================================================== */

.re-founder-quote-mark {
    position: relative;
    z-index: 2;

    height: 34px;

    margin: 0;

    color: rgba(255, 255, 255, 0.95);

    font-family: Georgia, serif;
    font-size: 62px;
    line-height: 0.9;
}

.re-founder-quote {
    position: relative;
    z-index: 2;

    max-width: 520px;

    margin: 0 0 20px;
    padding: 0;

    border: 0;

    color: rgba(255, 255, 255, 0.96);

    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}


/* =====================================================
   FOUNDER DETAILS
===================================================== */

.re-founder-details {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;

    margin-top: 7px;
    padding-top: 14px;

    border-top:
        1px solid rgba(255, 255, 255, 0.25);
}

.re-founder-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.re-founder-name strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 500;
}

.re-founder-name span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
}


/* =====================================================
   BUTTON
===================================================== */

.re-founder-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 43px;

    padding: 0 17px;

    border:
        1px solid rgba(255, 255, 255, 0.78);

    border-radius: 50px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 500;

    text-decoration: none;
    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.re-founder-btn:hover {
    background: #ffffff;
    color: #a87f37;

    transform: translateY(-2px);
}


/* =====================================================
   SMALL DESKTOP
===================================================== */

@media (max-width: 1199px) and (min-width: 992px) {

    .re-founder-wrapper {
        grid-template-columns: 47% 53%;
        height: 410px;
    }

    .re-founder-image,
    .re-founder-content {
        height: 480px;
    }

    .re-founder-content {
        padding: 28px 32px 28px 36px;
    }

    .re-founder-content h2 {
        font-size: 31px;
    }

    .re-founder-quote {
        font-size: 17px;
    }

    .re-founder-btn {
        padding: 0 14px;

        font-size: 12px;
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .re-founder-section {
        padding: 50px 0;
    }

    .re-founder-wrapper {
        grid-template-columns: 1fr;

        height: auto;

        border-radius: 18px;
    }

    .re-founder-image {
        height: 400px;
    }

    .re-founder-content {
        height: auto;

        padding: 38px;
    }

    .re-founder-content h2 {
        max-width: 620px;

        font-size: 34px;
    }

    .re-founder-quote {
        max-width: 620px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .re-founder-section {
        padding: 40px 0;
    }

    .re-founder-image {
        height: 340px;
    }

    .re-founder-content {
        padding: 32px 23px;
    }

    .re-founder-content .text-subtitle {
        margin-bottom: 8px;
    }

    .re-founder-content h2 {
        margin-bottom: 10px;

        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -0.6px;
    }

    .re-founder-quote-mark {
        height: 34px;

        font-size: 61px;
    }

    .re-founder-quote {
        margin-bottom: 13px;

        font-size: 17px;
        line-height: 1.42;
    }

    .re-founder-details {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;

        margin-top: 6px;
        padding-top: 15px;
    }

    .re-founder-btn {
        width: 100%;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .re-founder-image {
        height: 300px;
    }

    .re-founder-experience {
        top: 12px;
        left: 12px;

        width: 168px;

        padding: 9px 11px;
    }

    .re-founder-experience strong {
        font-size: 24px;
    }

    .re-founder-experience span {
        font-size: 10px;
    }

    .re-founder-image-caption {
        left: 15px;
        right: 15px;
        bottom: 13px;

        font-size: 8px;
    }

    .re-founder-content {
        padding: 28px 18px;
    }

    .re-founder-content h2 {
        font-size: 27px;
    }

    .re-founder-quote-mark {
        height: 31px;

        font-size: 56px;
    }

    .re-founder-quote {
        font-size: 16px;
    }

    .re-founder-name strong {
        font-size: 15px;
    }

    .re-founder-name span {
        font-size: 11px;
    }
}




/* =====================================================
   REAL ESTATE WHY CHOOSE SECTION
===================================================== */

.re-why-section {
    padding: 70px 0;
    /* margin-bottom: 100px; */
    background: #f5f1e9;
}

.re-why-grid {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(500px, 1.8fr) minmax(210px, 1fr);
    align-items: center;
    gap: 38px;
}


/* Side columns */

.re-why-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 65px;
}

.re-why-item {
    position: relative;
}

.re-why-number {
    display: block;
    margin-bottom: 14px;
    color: #c49c53;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.re-why-item h3 {
    margin: 0 0 5px;
    color: #211b29;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.5px;
    /* text-transform: uppercase; */
}

.re-why-item p {
    margin: 0;
    color: #5e5861;
    font-size: 16px;
    line-height: 1.75;
}


/* Center image composition */

.re-why-images {
    position: relative;
    min-height: 510px;
}

.re-why-image {
    position: absolute;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(30, 25, 20, 0.12);
}

.re-why-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.re-why-image:hover img {
    transform: scale(1.05);
}

.re-why-image-first {
    top: 0;
    left: 0;
    width: 57%;
    height: 435px;
    z-index: 1;
}

.re-why-image-second {
    right: 0;
    bottom: 0;
    width: 57%;
    height: 435px;
    z-index: 2;
}


/* Small gold decorative line */

.re-why-image-first::after,
.re-why-image-second::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 55px;
    height: 2px;
    background: #c49c53;
}


/* Responsive */

@media (max-width: 1199px) {

    .re-why-grid {
        grid-template-columns: 220px minmax(420px, 1fr) 220px;
        gap: 25px;
    }

    .re-why-item h3 {
        font-size: 21px;
    }

    .re-why-item p {
        font-size: 15px;
    }
}


@media (max-width: 991px) {

    .re-why-section {
        padding: 80px 0;
    }

    .re-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px 35px;
    }

    .re-why-images {
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        max-width: 680px;
        min-height: 500px;
        margin: 0 auto;
    }

    .re-why-column {
        gap: 40px;
    }
}


@media (max-width: 767px) {

    .re-why-section {
        padding: 60px 0;
    }

    .re-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .re-why-images {
        grid-column: auto;
        min-height: 430px;
    }

    .re-why-column {
        gap: 32px;
    }

    .re-why-image-first {
        width: 66%;
        height: 350px;
    }

    .re-why-image-second {
        width: 66%;
        height: 350px;
    }

    .re-why-item {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(196, 156, 83, 0.28);
    }

    .re-why-item h3 {
        font-size: 22px;
    }
}


@media (max-width: 480px) {

    .re-why-images {
        min-height: 350px;
    }

    .re-why-image {
        border-radius: 12px;
    }

    .re-why-image-first,
    .re-why-image-second {
        width: 70%;
        height: 285px;
    }

    .re-why-number {
        font-size: 26px;
    }

    .re-why-item h3 {
        font-size: 20px;
    }

    .re-why-item p {
        font-size: 15px;
        line-height: 1.7;
    }
}



/* Property card share button */
.flat-recommended .homelengo-box .archive-top {
    position: relative;
}

.flat-recommended .property-share-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;

    width: 38px;
    height: 38px;
    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: rgba(20, 20, 20, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    cursor: pointer;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.flat-recommended .property-share-btn:hover {
    color: #ffffff;
    background: #c49c53;
    border-color: #c49c53;
    transform: translateY(-2px);
}

.flat-recommended .property-share-btn svg {
    display: block;
    pointer-events: none;
}

.flat-recommended .property-share-btn.is-copied {
    background: #c49c53;
    border-color: #c49c53;
}

@media (max-width: 575px) {
    .flat-recommended .property-share-btn {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }
}



/* =====================================================
   ABOUT STATS SECTION
===================================================== */

.re-about-stats-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    background: #f7f7f7;
}

.re-about-stats-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 49% 51%;
    min-height: 610px;
}


/* =====================================================
   LEFT IMAGE
===================================================== */

.re-about-stats-image {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    border-radius: 7px 0 0 7px;
}

.re-about-stats-image img {
    width: 100%;
    height: 100%;
    min-height: 610px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.re-about-stats-wrap:hover .re-about-stats-image img {
    transform: scale(1.025);
}


/* =====================================================
   RIGHT TOP CONTENT
===================================================== */

.re-about-stats-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 55px 260px 30px;
    background: transparent;
}

.re-about-stats-content p {
    max-width: 500px;
    margin: 0;
    color: #6f6f6f;
    font-size: 16px;
    line-height: 1.7;
}


/* =====================================================
   OVERLAPPING STATISTICS CARD
===================================================== */

.re-about-stats-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;

    width: 80%;
    overflow: hidden;

    background: #ffffff;
    border-radius: 14px;
    /* box-shadow: 0 22px 55px rgba(22, 22, 22, 0.10); */
}

.re-about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 42px 40px 38px;
}

.re-about-stat-item {
    position: relative;
    padding: 0 34px;
}

.re-about-stat-item:first-child {
    padding-left: 0;
}

.re-about-stat-item:last-child {
    padding-right: 0;
}

.re-about-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: calc(100% - 8px);
    background: rgba(0, 0, 0, 0.07);
}

.re-about-stat-item strong {
    display: block;
    margin-bottom: 15px;
    color: #111111;
    font-size: 35px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -1px;
}

.re-about-stat-item p {
    margin: 0;
    color: #737373;
    font-size: 16px;
    line-height: 1.55;
}


/* =====================================================
   BOTTOM BAR
===================================================== */

.re-about-stats-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    min-height: 64px;
    padding: 12px 28px;

    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.re-about-stats-message {
    display: flex;
    align-items: center;
    gap: 14px;
}

.re-about-stats-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    overflow: hidden;
    border-radius: 50%;
    background: #f2f2f2;
}

.re-about-stats-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.re-about-stats-message span {
    color: #242424;
    font-size: 15px;
    font-style: italic;
    line-height: 1.4;
}

.re-about-stats-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #0096ff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.re-about-stats-link:hover {
    color: #c49c53;
    transform: translateX(3px);
}


/* =====================================================
   RESPONSIVE — LAPTOP
===================================================== */

@media (max-width: 1199px) {

    .re-about-stats-wrap {
        grid-template-columns: 48% 52%;
    }

    .re-about-stats-content {
        padding: 115px 35px 255px 35px;
    }

    .re-about-stats-card {
        width: 78%;
    }

    .re-about-stats-grid {
        padding: 36px 30px 32px;
    }

    .re-about-stat-item {
        padding: 0 22px;
    }
}


/* =====================================================
   RESPONSIVE — TABLET
===================================================== */

@media (max-width: 991px) {

    .re-about-stats-section {
        padding: 80px 0;
    }

    .re-about-stats-wrap {
        display: block;
        min-height: auto;
    }

    .re-about-stats-image {
        min-height: 520px;
        border-radius: 12px 12px 0 0;
    }

    .re-about-stats-image img {
        min-height: 520px;
    }

    .re-about-stats-content {
        padding: 55px 30px 40px;
    }

    .re-about-stats-content h2 {
        max-width: 720px;
    }

    .re-about-stats-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 50px);
        margin: -35px auto 0;
    }

    .re-about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 34px;
    }

    .re-about-stat-item {
        padding: 0 26px;
    }

    .re-about-stat-item:first-child,
    .re-about-stat-item:nth-child(3) {
        padding-left: 0;
    }

    .re-about-stat-item:nth-child(2),
    .re-about-stat-item:last-child {
        padding-right: 0;
    }

    .re-about-stat-item:nth-child(2)::after {
        display: none;
    }

    .re-about-stat-item:nth-child(3)::before,
    .re-about-stat-item:nth-child(4)::before {
        content: "";
        position: absolute;
        top: -17px;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(0, 0, 0, 0.07);
    }
}


/* =====================================================
   RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 767px) {

    .re-about-stats-section {
        padding: 60px 0px 40px;
    }

    .re-about-stats-image {
        min-height: 420px;
    }

    .re-about-stats-image img {
        min-height: 420px;
    }

    .re-about-stats-content {
        padding: 42px 0 35px;
    }

    .re-about-stats-content h2 {
        font-size: 35px;
        letter-spacing: -0.8px;
    }

    .re-about-stats-content h2 br {
        display: none;
    }

    .re-about-stats-card {
        width: 100%;
        margin-top: 0;
        border-radius: 12px;
    }

    .re-about-stats-grid {
        grid-template-columns: 1fr;
        padding: 32px 25px;
        row-gap: 0;
    }

    .re-about-stat-item,
    .re-about-stat-item:first-child,
    .re-about-stat-item:nth-child(2),
    .re-about-stat-item:nth-child(3),
    .re-about-stat-item:last-child {
        padding: 25px 0;
    }

    .re-about-stat-item:first-child {
        padding-top: 0;
    }

    .re-about-stat-item:last-child {
        padding-bottom: 0;
    }

    .re-about-stat-item:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
    }

    .re-about-stat-item:nth-child(3)::before,
    .re-about-stat-item:nth-child(4)::before {
        display: none;
    }

    .re-about-stat-item strong {
        font-size: 35px;
    }

    .re-about-stats-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 25px;
    }

    .re-about-stats-link {
        align-self: flex-end;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .re-about-stats-image {
        min-height: 340px;
    }

    .re-about-stats-image img {
        min-height: 340px;
    }

    .re-about-stats-content h2 {
        font-size: 30px;
    }

    .re-about-stats-content p {
        font-size: 15px;
    }

    .re-about-stats-message {
        align-items: flex-start;
    }

    .re-about-stats-message span {
        font-size: 14px;
    }
}





.single-property-loan .box-loan-calc {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.single-property-loan .box-top {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.single-property-loan .item-calc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-property-loan .label {
    font-size: 14px;
    font-weight: 600;
    color: #1f2933;
}

.single-property-loan .form-control {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    font-size: 15px;
    outline: none;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.single-property-loan .form-control:focus {
    border-color: #c49c53;
    box-shadow: 0 0 0 3px rgba(201, 149, 46, 0.12);
}

.re-loan-input-group {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 10px;
}

.re-loan-select {
    cursor: pointer;
}

.re-loan-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #ece5d8;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        #fffdf8 0%,
        #f9f3e8 100%
    );
    overflow: hidden;
}

.re-loan-summary-item {
    padding: 20px 16px;
    text-align: center;
    border-right: 1px solid #ece5d8;
}

.re-loan-summary-item:last-child {
    border-right: none;
}

.re-loan-summary-item span {
    display: block;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
}

.re-loan-summary-item strong {
    display: block;
    color: #c49c53;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}

.single-property-loan .box-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}

.re-loan-reset {
    border: 1px solid #d8d8d8;
    background: transparent;
    color: #222222;
}

.re-loan-reset:hover {
    border-color: #c49c53;
    background: #c49c53;
    color: #ffffff;
}

.re-loan-note {
    margin: 0;
    color: #7b8188;
    font-size: 16px;
    line-height: 1.6;
    padding: 0px 10px 10px;
}

@media (max-width: 991px) {
    .re-loan-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .re-loan-summary-item:nth-child(2) {
        border-right: none;
    }

    .re-loan-summary-item:nth-child(-n + 2) {
        border-bottom: 1px solid #ece5d8;
    }
}

@media (max-width: 767px) {
    .single-property-loan .box-top {
        grid-template-columns: 1fr;
    }

    .re-loan-summary {
        grid-template-columns: 1fr;
    }

    .re-loan-summary-item {
        border-right: none;
        border-bottom: 1px solid #ece5d8;
    }

    .re-loan-summary-item:last-child {
        border-bottom: none;
    }

    .single-property-loan .box-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .single-property-loan .box-bottom .tf-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .re-loan-input-group {
        grid-template-columns: 1fr 105px;
    }

    .re-loan-summary-item strong {
        font-size: 18px;
    }
}





@media only screen and (max-width: 991px) {
    .flat-section {
        padding: 60px 0px 30px;
    }
}




.re-property-amenities {
    padding: 10px;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    background: #ffffff;
}

.re-property-amenities__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.re-property-amenities__head .title {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.re-property-amenities__count {
    flex-shrink: 0;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(201, 149, 46, 0.1);
    color: #a87518;
    font-size: 12px;
    font-weight: 600;
}

.re-property-amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.re-property-amenities__item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 58px;
    padding: 10px 12px;
    border: 1px solid #ededed;
    border-radius: 10px;
    background: #ffffff;
    color: #30343b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.re-property-amenities__item:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 149, 46, 0.5);
    background: #fffaf1;
}

.re-property-amenities__item > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.re-property-amenities__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(201, 149, 46, 0.12);
    color: #b57e1d;
}

.re-property-amenities__icon svg {
    display: block;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 991px) {
    .re-property-amenities__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .re-property-amenities {
        padding: 16px;
        border-radius: 12px;
    }

    .re-property-amenities__head {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .re-property-amenities__head .title {
        font-size: 19px;
    }

    .re-property-amenities__count {
        padding: 5px 9px;
        font-size: 11px;
    }

    .re-property-amenities__grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .re-property-amenities__item {
        min-height: 52px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .re-property-amenities__icon {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
    }

    .re-property-amenities__icon svg {
        width: 18px;
        height: 18px;
    }
}





.re-work-process {
    position: relative;
    overflow: hidden;
    padding: 50px 20px 90px;
    background: #f5f5f5;
}

.re-work-process::before {
    position: absolute;
    top: -150px;
    left: 50%;
    width: 650px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    filter: blur(30px);
    content: "";
    transform: translateX(-50%);
    pointer-events: none;
}

.re-work-process__container {
    position: relative;
    z-index: 1;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.re-work-process__heading {
    max-width: 650px;
    margin: 0 auto 52px;
    text-align: center;
}

.re-work-process__heading > span {
    display: none;
}

.re-work-process__heading h2 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: clamp(31px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
}

.re-work-process__heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
}

.re-work-process__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 34px;
}

.re-work-process__grid::before {
    position: absolute;
    top: 89px;
    right: 9%;
    left: 9%;
    height: 2px;
    background-image: linear-gradient(
        to right,
        rgba(202, 151, 48, 0.9) 45%,
        transparent 45%
    );
    background-position: top;
    background-size: 8px 1px;
    background-repeat: repeat-x;
    content: "";
    z-index: 0;
}

.re-work-process__item {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.re-work-process__visual {
    position: relative;
    width: 178px;
    margin: 0 auto 32px;
}

.re-work-process__image {
    position: relative;
    width: 178px;
    height: 178px;
    padding: 4px;
    /* border: 2px solid #c49c53; */
    border-radius: 50%;
    background: #c49c53;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.re-work-process__image::after {
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.re-work-process__image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center;
}

.re-work-process__number {
    position: absolute;
    bottom: -16px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(
        145deg,
        #d7ad59,
        #b77c18
    );
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28); */
    transform: translateX(-50%);
}

.re-work-process__content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.35;
}

.re-work-process__content p {
    max-width: 190px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.65;
}

.re-work-process__item:hover .re-work-process__image {
    transform: translateY(-7px);
}

/* Laptop */
@media (max-width: 1199px) {
    .re-work-process__grid {
        gap: 20px;
    }

    .re-work-process__visual,
    .re-work-process__image {
        width: 150px;
    }

    .re-work-process__image {
        height: 150px;
    }

    .re-work-process__grid::before {
        top: 75px;
    }

    .re-work-process__content h3 {
        font-size: 15px;
    }

    .re-work-process__content p {
        font-size: 12px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .re-work-process {
        padding: 70px 20px;
    }

    .re-work-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 46px 30px;
        max-width: 700px;
        margin: 0 auto;
    }

    .re-work-process__grid::before {
        display: none;
    }

    .re-work-process__visual,
    .re-work-process__image {
        width: 165px;
    }

    .re-work-process__image {
        height: 165px;
    }

    .re-work-process__content p {
        max-width: 240px;
    }

    .re-work-process__item:last-child {
        grid-column: 1 / -1;
        width: 50%;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .re-work-process {
        padding: 35px 16px 30px;
    }

    .re-work-process__heading {
        margin-bottom: 40px;
    }

    .re-work-process__heading h2 {
        font-size: 32px;
    }

    .re-work-process__heading p {
        max-width: 300px;
        margin-inline: auto;
        font-size: 13px;
    }

    .re-work-process__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        max-width: 100%;
    }

    .re-work-process__item,
    .re-work-process__item:last-child {
        display: grid;
        grid-template-columns: 112px minmax(0, 1fr);
        align-items: center;
        gap: 18px;
        width: 100%;
        margin: 0;
        padding-bottom: 34px;
        text-align: left;
    }

    .re-work-process__item:not(:last-child)::after {
        position: absolute;
        top: 112px;
        bottom: 0;
        left: 56px;
        width: 1px;
        background-image: linear-gradient(
            to bottom,
            #c49c53 45%,
            transparent 45%
        );
        background-size: 1px 8px;
        background-repeat: repeat-y;
        content: "";
    }

    .re-work-process__visual {
        width: 112px;
        margin: 0;
    }

    .re-work-process__image {
        width: 112px;
        height: 112px;
        padding: 3px;
        border-width: 2px;
    }

    .re-work-process__number {
        right: -4px;
        bottom: -7px;
        left: auto;
        width: 36px;
        height: 36px;
        border-width: 3px;
        font-size: 11px;
        transform: none;
    }

    .re-work-process__content h3 {
        margin-bottom: 7px;
        font-size: 15px;
    }

    .re-work-process__content p {
        max-width: none;
        margin: 0;
        font-size: 12px;
        line-height: 1.55;
    }
}

/* Very small screens */
@media (max-width: 380px) {
    .re-work-process__item,
    .re-work-process__item:last-child {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 14px;
    }

    .re-work-process__visual,
    .re-work-process__image {
        width: 92px;
    }

    .re-work-process__image {
        height: 92px;
    }

    .re-work-process__item:not(:last-child)::after {
        top: 92px;
        left: 46px;
    }

    .re-work-process__number {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}





.re-centered-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 470px;
    padding: 100px 20px;
    overflow: hidden;
    /* border-radius: 22px; */
    background-image:
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=85");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 100px;
}

.re-centered-cta__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 43, 0.68) 0%,
            rgba(5, 24, 43, 0.48) 50%,
            rgba(5, 24, 43, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.16)
        );
}

.re-centered-cta__content {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    margin: 0 auto;
    text-align: center;
}

.re-centered-cta__subheading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #d4a342;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.re-centered-cta__subheading::before,
.re-centered-cta__subheading::after {
    width: 30px;
    height: 1px;
    background: #d4a342;
    content: "";
}

.re-centered-cta h2 {
    max-width: 690px;
    margin: 0 auto 18px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.re-centered-cta h2 span {
    display: block;
    color: #d7a541;
}

.re-centered-cta p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

.re-centered-cta__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.re-centered-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 23px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    /* transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease; */
}

.re-centered-cta__btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.re-centered-cta__btn--primary {
    background: #c49c53;
    color: #ffffff;
}

.re-centered-cta__btn--outline {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    backdrop-filter: blur(7px);
}

.re-centered-cta__btn:hover {
    transform: translateY(0px);
}

.re-centered-cta__btn--primary:hover {
    background: #ffffff;
    color: #1d2631;
}

.re-centered-cta__btn--outline:hover {
    border-color: #c49c53;
    background: #c49c53;
    color: #ffffff;
}

@media (max-width: 767px) {
    .re-centered-cta {
        min-height: 420px;
        padding: 55px 18px;
        border-radius: 16px;
        background-position: 65% center;
    }

    .re-centered-cta h2 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .re-centered-cta p {
        max-width: 420px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .re-centered-cta {
        min-height: 430px;
        padding: 48px 15px;
        border-radius: 13px;
    }

    .re-centered-cta__subheading {
        font-size: 10px;
        letter-spacing: 1.2px;
    }

    .re-centered-cta__subheading::before,
    .re-centered-cta__subheading::after {
        width: 20px;
    }

    .re-centered-cta h2 {
        font-size: 33px;
        line-height: 1.12;
    }

    .re-centered-cta p {
        margin-bottom: 24px;
        font-size: 13px;
        line-height: 1.6;
    }

    .re-centered-cta__buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .re-centered-cta__btn {
        width: 100%;
    }
}







.re-project-showcase {
    padding: 90px 20px;
    overflow: hidden;
    background-color: #f6f0e5;
}

.re-project-showcase__container {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.re-project-showcase__layout {
    display: grid;
    grid-template-columns: 34% minmax(0, 66%);
    gap: 24px;
    align-items: stretch;
}

/* =====================================
   TABS
===================================== */

.re-project-showcase__tabs {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.re-project-tab {
    position: relative;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) 25px;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-height: 80px;
    padding: 18px 24px;
    border: 1px solid #e6e1da;
    background: #ffffff;
    color: #171717;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.re-project-tab:hover {
    transform: translateX(5px);
    border-color: #b7834b;
}

.re-project-tab.active {
    border-color: #111111;
    background: #111111;
    color: #ffffff;
}

.re-project-tab__number,
.re-project-tab__name {
    font-size: 17px;
}

.re-project-tab__name {
    overflow: hidden;
    font-size: 18px;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.re-project-tab__arrow {
    justify-self: end;
    color: #b7834b;
    font-size: 20px;
}

.re-project-tab.active .re-project-tab__arrow {
    color: #ffffff;
}

/* =====================================
   RIGHT-SIDE IMAGE PANEL
===================================== */

.re-project-showcase__panel {
    position: relative;
    min-width: 0;
    min-height: 590px;
    overflow: hidden;
    background: #181818;
}

.re-project-showcase__image-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #dddddd;
}

.re-project-showcase__image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        opacity 0.35s ease,
        transform 0.8s ease;
}

.re-project-showcase__panel:hover
.re-project-showcase__image-wrap img {
    transform: scale(1.025);
}

.re-project-showcase__image-wrap img.is-changing {
    opacity: 0.25;
}

.re-project-showcase__image-wrap::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 0%,
            rgba(0, 0, 0, 0.07) 34%,
            rgba(0, 0, 0, 0.42) 64%,
            rgba(10, 10, 10, 0.94) 100%
        );
    content: "";
    pointer-events: none;
}

/* =====================================
   VIDEO BUTTON
===================================== */

.re-project-showcase__video {
    position: absolute;
    top: 43%;
    left: 50%;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 100px;
    height: 100px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.22);
    color: #ffffff;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translate(-50%, -50%);
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.re-project-showcase__video:hover {
    border-color: #c49c53;
    background: rgba(201, 149, 46, 0.88);
    color: #ffffff;
    transform: translate(-50%, -50%) scale(1.06);
}

.re-project-showcase__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.re-project-showcase__play svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* =====================================
   BOTTOM CONTENT
===================================== */

.re-project-showcase__details {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(220px, 0.85fr);
    align-items: end;
    min-height: 210px;
    padding: 70px 38px 34px;
    background:
        linear-gradient(
            180deg,
            rgba(15, 15, 15, 0) 0%,
            rgba(15, 15, 15, 0.28) 20%,
            rgba(15, 15, 15, 0.8) 62%,
            rgba(15, 15, 15, 0.97) 100%
        );
}

.re-project-showcase__description {
    min-width: 0;
    padding: 0 35px 0 0;
    background: transparent;
    color: #ffffff;
}

.re-project-showcase__description h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.25;
}

.re-project-showcase__description p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.75;
}

/* =====================================
   FEATURES
===================================== */

.re-project-showcase__features {
    display: flex;
    align-items: center;
    min-height: 135px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.re-project-showcase__features ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.re-project-showcase__features li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.4;
}

.re-project-showcase__features li::before {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 7px;
    height: 7px;
    background: #c49c53;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

/* =====================================
   SMALL DESKTOP
===================================== */

@media (max-width: 1199px) {
    .re-project-showcase__layout {
        grid-template-columns: 36% minmax(0, 64%);
        gap: 20px;
    }

    .re-project-tab {
        min-height: 76px;
        padding: 16px 18px;
    }

    .re-project-tab__name {
        font-size: 16px;
    }

    .re-project-showcase__details {
        grid-template-columns: minmax(0, 1.3fr) minmax(205px, 0.7fr);
        padding: 70px 26px 28px;
    }

    .re-project-showcase__description {
        padding-right: 22px;
    }

    .re-project-showcase__description h3 {
        font-size: 27px;
    }
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {
    .re-project-showcase {
        padding: 75px 18px;
    }

    .re-project-showcase__layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    /*
     * Tabs become horizontally scrollable.
     * This prevents the section becoming too tall.
     */
    .re-project-showcase__tabs {
        display: flex;
        flex-direction: row;
        gap: 12px;
        width: 100%;
        padding: 2px 2px 10px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .re-project-tab {
        flex: 0 0 245px;
        grid-template-columns: 38px minmax(0, 1fr) 20px;
        min-height: 72px;
        padding: 14px 17px;
        scroll-snap-align: start;
    }

    .re-project-tab:hover {
        transform: none;
    }

    .re-project-tab__number {
        font-size: 14px;
    }

    .re-project-tab__name {
        font-size: 16px;
        white-space: normal;
    }

    .re-project-tab__arrow {
        font-size: 17px;
    }

    .re-project-showcase__panel {
        min-height: 620px;
    }

    .re-project-showcase__details {
        grid-template-columns: minmax(0, 1.3fr) minmax(210px, 0.7fr);
        padding: 70px 28px 28px;
    }

    .re-project-showcase__description {
        padding-right: 24px;
    }

    .re-project-showcase__video {
        top: 39%;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {
    .re-project-showcase {
        padding: 60px 14px;
    }

    .re-project-showcase .box-title {
        margin-bottom: 30px;
    }

    .re-project-showcase .box-title .title {
        font-size: 29px;
        line-height: 1.25;
    }

    .re-project-showcase__layout {
        gap: 14px;
    }

    .re-project-showcase__tabs {
        gap: 10px;
        margin-right: -14px;
        padding-right: 14px;
        padding-bottom: 8px;
    }

    .re-project-tab {
        flex-basis: 215px;
        grid-template-columns: 34px minmax(0, 1fr) 18px;
        min-height: 66px;
        padding: 12px 14px;
    }

    .re-project-tab__number {
        font-size: 13px;
    }

    .re-project-tab__name {
        font-size: 15px;
        line-height: 1.3;
    }

    .re-project-showcase__panel {
        min-height: 650px;
    }

    .re-project-showcase__image-wrap img {
        object-position: center top;
    }

    .re-project-showcase__video {
        top: 29%;
        width: 82px;
        height: 82px;
        font-size: 9px;
    }

    .re-project-showcase__play svg {
        width: 19px;
        height: 19px;
    }

    .re-project-showcase__details {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 155px 20px 22px;
        background:
            linear-gradient(
                180deg,
                rgba(14, 14, 14, 0) 0%,
                rgba(14, 14, 14, 0.45) 23%,
                rgba(14, 14, 14, 0.91) 57%,
                rgba(14, 14, 14, 0.99) 100%
            );
    }

    .re-project-showcase__description {
        padding: 0;
    }

    .re-project-showcase__description h3 {
        margin-bottom: 9px;
        font-size: 24px;
    }

    .re-project-showcase__description p {
        max-width: none;
        font-size: 13px;
        line-height: 1.65;
    }

    .re-project-showcase__features {
        min-height: auto;
        padding: 16px 18px;
    }

    .re-project-showcase__features ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 15px;
    }

    .re-project-showcase__features li {
        font-size: 12px;
        line-height: 1.45;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {
    .re-project-showcase {
        padding: 52px 12px;
    }

    .re-project-showcase .box-title {
        margin-bottom: 25px;
    }

    .re-project-showcase .box-title .title {
        font-size: 25px;
    }

    .re-project-showcase__tabs {
        margin-right: -12px;
        padding-right: 12px;
    }

    .re-project-tab {
        flex-basis: 195px;
        min-height: 62px;
        padding: 11px 12px;
    }

    .re-project-tab__name {
        font-size: 14px;
    }

    .re-project-showcase__panel {
        min-height: 690px;
    }

    .re-project-showcase__video {
        top: 25%;
        width: 74px;
        height: 74px;
    }

    .re-project-showcase__details {
        gap: 15px;
        padding: 180px 16px 18px;
    }

    .re-project-showcase__description h3 {
        font-size: 22px;
    }

    .re-project-showcase__description p {
        font-size: 12px;
        line-height: 1.6;
    }

    .re-project-showcase__features {
        padding: 14px 15px;
    }

    .re-project-showcase__features ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .re-project-showcase__features li {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .re-project-showcase__panel {
        min-height: 720px;
    }

    .re-project-showcase__details {
        padding-top: 195px;
    }
}



/* =========================================================
   PREMIUM PROPERTY SECTION - COMPLETE CSS
========================================================= */

.properties-section {
    margin-top: 70px;
}

.premium-properties {
    position: relative;
    background: #000;
    color: #fff;
    overflow: hidden;
    margin-top: 10px;
}


/* =========================================================
   BACKGROUND IMAGE AREA
========================================================= */

.property-bg {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: calc(100vh - 90px);

    overflow: hidden;
}

.property-bg img {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 1.5s ease,
        opacity 1.2s ease;
}

#currentPropertyImage {
    z-index: 1;
    opacity: 1;
}

#nextPropertyImage {
    z-index: 2;

    transform: translateX(100%) scale(1.08);

    opacity: 0;
}


/* =========================================================
   IMAGE SLIDE ANIMATION
========================================================= */

.image-current-out {
    animation: currentImageOut 1.2s ease forwards;
}

.image-next-in {
    animation: nextImageIn 1.2s ease forwards;
}

@keyframes currentImageOut {

    from {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    to {
        transform: translateX(-100%) scale(1.08);
        opacity: 0;
    }
}

@keyframes nextImageIn {

    from {
        transform: translateX(100%) scale(1.08);
        opacity: 0;
    }

    to {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}


/* =========================================================
   IMAGE ZOOM
========================================================= */

.image-zoom {
    animation: smoothZoom 8s ease forwards;
}

@keyframes smoothZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}


/* =========================================================
   LEFT DARK / BLUR OVERLAY
========================================================= */

.dark-overlay {
    position: absolute;

    left: 0;
    top: 0;

    width: 50%;
    height: calc(100vh - 90px);

    z-index: 3;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.70) 55%,
        rgba(0, 0, 0, 0) 100%
    );

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    pointer-events: none;
}


/* =========================================================
   MAIN CONTENT WRAPPER
========================================================= */

.property-wrapper {
    position: relative;

    width: 100%;
    height: calc(100vh - 90px);

    z-index: 4;

    display: flex;
    align-items: center;
}

.property-content {
    width: 48%;

    padding-left: 40px;
    padding-right: 20px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENT ANIMATION
========================================================= */

.property-content.animate {
    animation: contentSlide 0.8s ease;
}

@keyframes contentSlide {

    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   PROPERTY MAIN HEADING
========================================================= */

.property-content h1 {
    font-size: 40px;

    font-weight: 400;

    line-height: 1;

    margin: 0;

    color: #fff;
}

.property-content h1 span {
    color: #d4af67;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    max-width: 480px;

    font-size: 16px;

    line-height: 1.7;

    color: #fff;

    margin: 10px 0 15px;
}


/* =========================================================
   PROPERTY CARD
========================================================= */

.property-box {
    width: 560px;
    max-width: 100%;

    padding: 15px 30px 28px;

    border: 1px solid rgba(212, 175, 103, 0.35);

    box-sizing: border-box;
}

.property-box small {
    color: #d4af67;

    letter-spacing: 2px;

    font-size: 12px;
}

.property-box h2 {
    font-size: 30px;

    font-weight: 400;

    margin: 3px 0 8px;

    line-height: 1.3;

    color: #fff;
}

.location {
    margin: 5px 0;

    color: #ddd;

    font-size: 14px;
}


/* =========================================================
   PROPERTY DETAILS
========================================================= */

.details {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.details div {
    padding: 15px 8px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.details div:last-child {
    border-right: none;
}

.details b {
    display: block;

    font-size: 14px;

    color: #d4af67;
}

.details span {
    display: block;

    margin-top: 3px;

    font-size: 12px;

    color: #ccc;
}


/* =========================================================
   PRICE + BUTTON AREA
========================================================= */

.bottom {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 20px;
}

.price-area {
    flex: 1;
}

.bottom h3 {
    margin: 5px 0;

    font-size: 30px;

    color: #d4af67;
}


/* =========================================================
   PROPERTY ACTION BUTTONS
========================================================= */

.property-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 12px;

    flex-wrap: wrap;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whatsapp-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: #25d366;

    color: #fff;

    padding: 10px 15px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    white-space: nowrap;

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;

    color: #fff;

    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    color: #fff;

    fill: currentColor;
}


/* =========================================================
   IMAGE COUNTER
========================================================= */

.image-counter {
    position: absolute;

    right: 70px;
    bottom: 130px;

    z-index: 8;

    font-size: 30px;

    color: #d4af67;
}

.image-counter strong {
    font-size: 55px;
}


/* =========================================================
   BOTTOM PROPERTY NAVIGATION
========================================================= */

.property-navigation {
    position: relative;

    width: 100%;
    height: 90px;

    z-index: 20;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    background: #000;
}

.property-navigation button {
    width: 42px;
    height: 42px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    background: #fff;

    color: #c49c53;

    padding: 0;

    border: 0;

    border-radius: 50%;

    font-size: 16px;

    cursor: pointer;

    transition: 0.3s ease;
}

.property-navigation button:hover {
    background: #c49c53;

    color: #fff;
}

.property-number {
    font-size: 30px;

    color: #d4af67;
}

.property-number strong {
    font-size: 55px;
}



/* =========================================================
   LARGE LAPTOP
   1025px - 1200px
========================================================= */

@media (min-width: 1025px) and (max-width: 1200px) {

    .property-content {
        width: 52%;

        padding-left: 30px;
    }

    .dark-overlay {
        width: 55%;
    }

    .property-box {
        width: 520px;
    }

    .property-content h1 {
        font-size: 38px;
    }

    .property-box h2 {
        font-size: 26px;
    }

    .details {
        grid-template-columns: repeat(2, 1fr);
    }

    .details div:nth-child(2) {
        border-right: none;
    }

    .details div:nth-child(1),
    .details div:nth-child(2) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.2);
    }

    .details div:nth-child(3) {
        border-right:
            1px solid rgba(255, 255, 255, 0.2);
    }

    .details div:nth-child(4) {
        border-right: none;
    }
}



/* =========================================================
   TABLET
   601px - 1024px

   IMPORTANT:
   SAME DESKTOP FORMAT
   LEFT CONTENT + RIGHT CLEAR IMAGE
========================================================= */

@media (min-width: 601px) and (max-width: 1024px) {

    .properties-section {
        margin-top: 55px;
    }


    /* -----------------------------------------
       MAIN SECTION
    ----------------------------------------- */

    .premium-properties {
        min-height: 720px;
    }


    /* -----------------------------------------
       BACKGROUND IMAGE
    ----------------------------------------- */

    .property-bg {
        height: 720px;
    }

    .property-bg img {
        object-fit: cover;

        /*
        Push image focus towards right,
        because left side contains content.
        */
        object-position: 72% center;
    }


    /* -----------------------------------------
       LEFT DARK AREA
    ----------------------------------------- */

    .dark-overlay {
        width: 58%;

        height: 720px;

        background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.92) 45%,
            rgba(0, 0, 0, 0.72) 70%,
            rgba(0, 0, 0, 0) 100%
        );

        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
    }


    /* -----------------------------------------
       CONTENT WRAPPER
    ----------------------------------------- */

    .property-wrapper {
        min-height: 720px;

        height: auto;

        align-items: center;

        padding: 30px;

        box-sizing: border-box;
    }


    /* -----------------------------------------
       LEFT CONTENT AREA
    ----------------------------------------- */

    .property-content {
        width: 52%;

        max-width: 510px;

        padding: 0;
    }


    .property-content h1 {
        font-size: 38px;

        line-height: 1.1;

        margin-bottom: 10px;
    }


    .intro {
        max-width: 450px;

        font-size: 14px;

        line-height: 1.55;

        margin: 10px 0 15px;
    }


    /* -----------------------------------------
       PROPERTY CARD
    ----------------------------------------- */

    .property-box {
        width: 100%;

        max-width: 490px;

        padding: 18px 20px;

        background: rgba(0, 0, 0, 0.15);
    }


    .property-box small {
        font-size: 10px;

        letter-spacing: 1.5px;
    }


    .property-box h2 {
        font-size: 23px;

        margin: 5px 0 8px;
    }


    .location {
        font-size: 13px;
    }


    /* -----------------------------------------
       DETAILS 2 x 2
    ----------------------------------------- */

    .details {
        grid-template-columns: repeat(2, 1fr);

        margin: 15px 0;
    }


    .details div {
        padding: 10px 5px;
    }


    .details div:nth-child(1),
    .details div:nth-child(2) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.2);
    }


    .details div:nth-child(2) {
        border-right: none;
    }


    .details div:nth-child(3) {
        border-right:
            1px solid rgba(255, 255, 255, 0.2);
    }


    .details div:nth-child(4) {
        border-right: none;
    }


    .details b {
        font-size: 12px;
    }


    .details span {
        font-size: 10px;
    }


    /* -----------------------------------------
       PRICE + BUTTONS
    ----------------------------------------- */

    .bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    .price-area {
        width: 100%;
    }


    .bottom h3 {
        font-size: 26px;

        margin: 3px 0;
    }


    .property-actions {
        width: 100%;

        justify-content: flex-start;

        gap: 8px;
    }


    .whatsapp-btn {
        width: auto;

        padding: 9px 12px;

        font-size: 12px;
    }


    .whatsapp-icon {
        width: 18px;
        height: 18px;
    }


    .property-actions .btn-styling-rectangular {
        padding: 9px 12px !important;

        font-size: 12px;

        white-space: nowrap;
    }


    /* -----------------------------------------
       NAVIGATION
    ----------------------------------------- */

    .property-navigation {
        height: 80px;

        padding: 10px 20px;

        gap: 15px;
    }


    .property-navigation button {
        width: 40px;

        height: 40px;
    }


    .property-navigation .btn-styling-rectangular {
        padding: 10px 16px !important;

        font-size: 12px;
    }


    .image-counter {
        right: 25px;

        bottom: 110px;
    }

}



/* =========================================================
   SMALL TABLET
   601px - 767px
========================================================= */

@media (min-width: 601px) and (max-width: 767px) {

    .premium-properties {
        min-height: 760px;
    }


    .property-bg {
        height: 760px;
    }


    .dark-overlay {
        width: 62%;

        height: 760px;
    }


    .property-wrapper {
        min-height: 760px;

        padding: 25px 20px;
    }


    .property-content {
        width: 57%;

        max-width: 440px;
    }


    .property-content h1 {
        font-size: 34px;
    }


    .intro {
        font-size: 13px;

        line-height: 1.45;
    }


    .property-box {
        padding: 15px;
    }


    .property-box h2 {
        font-size: 20px;
    }


    .details div {
        padding: 8px 4px;
    }


    .bottom h3 {
        font-size: 24px;
    }


    .whatsapp-btn,
    .property-actions .btn-styling-rectangular {
        padding: 8px 10px !important;

        font-size: 11px;
    }

}



/* =========================================================
   MOBILE
   MAX 600px
========================================================= */

@media (max-width: 600px) {

    .properties-section {
        margin-top: 40px;
    }


    .premium-properties {
        min-height: 850px;

        height: auto;
    }


    /* -----------------------------------------
       FULL BACKGROUND IMAGE
    ----------------------------------------- */

    .property-bg {
        width: 100%;

        height: calc(100% - 70px);
    }


    .property-bg img {
        object-fit: cover;

        object-position: center;
    }


    /* -----------------------------------------
       MOBILE GRADIENT
    ----------------------------------------- */

    .dark-overlay {
        width: 100%;

        height: calc(100% - 70px);

        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.30) 40%,
            rgba(0, 0, 0, 0.90) 100%
        );

        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }


    /* -----------------------------------------
       MOBILE CONTENT
    ----------------------------------------- */

    .property-wrapper {
        min-height: 850px;

        height: auto;

        align-items: flex-end;

        padding: 0;
    }


    .property-content {
        width: 100%;

        padding: 250px 20px 25px;

        box-sizing: border-box;
    }


    .property-content h1 {
        font-size: 36px;

        margin-bottom: 10px;
    }


    .intro {
        display: none;
    }


    /* -----------------------------------------
       MOBILE PROPERTY CARD
    ----------------------------------------- */

    .property-box {
        width: 100%;

        padding: 18px;

        background: rgba(0, 0, 0, 0.55);

        border:
            1px solid rgba(212, 175, 103, 0.45);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }


    .property-box small {
        font-size: 11px;
    }


    .property-box h2 {
        font-size: 22px;

        margin: 8px 0;
    }


    .location {
        font-size: 13px;
    }


    /* -----------------------------------------
       MOBILE DETAILS
    ----------------------------------------- */

    .details {
        grid-template-columns: repeat(2, 1fr);

        margin: 15px 0;
    }


    .details div {
        padding: 10px 5px;
    }


    .details div:nth-child(1),
    .details div:nth-child(2) {
        border-bottom:
            1px solid rgba(255, 255, 255, 0.2);
    }


    .details div:nth-child(2) {
        border-right: none;
    }


    .details div:nth-child(3) {
        border-right:
            1px solid rgba(255, 255, 255, 0.2);
    }


    .details div:nth-child(4) {
        border-right: none;
    }


    .details b {
        font-size: 12px;
    }


    .details span {
        font-size: 10px;
    }


    /* -----------------------------------------
       MOBILE PRICE + BUTTONS
    ----------------------------------------- */

    .bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .bottom h3 {
        font-size: 30px;
    }


    .property-actions {
        width: 100%;

        justify-content: flex-start;

        gap: 10px;

        flex-wrap: wrap;
    }


    .whatsapp-btn {
        width: auto;

        padding: 10px 15px;

        font-size: 13px;
    }


    .whatsapp-icon {
        width: 18px;

        height: 18px;
    }


    .property-actions .btn-styling-rectangular {
        padding: 10px 15px !important;

        font-size: 13px;

        white-space: nowrap;
    }


    /* -----------------------------------------
       MOBILE NAVIGATION
    ----------------------------------------- */

    .property-navigation {
        height: 70px;

        padding: 10px;

        gap: 15px;
    }


    .property-navigation button {
        width: 40px;

        height: 40px;
    }


    .property-navigation .btn-styling-rectangular {
        padding: 10px 15px !important;

        font-size: 12px;

        white-space: nowrap;
    }


    .image-counter {
        right: 20px;

        bottom: 100px;
    }


    .image-counter strong {
        font-size: 38px;
    }

}



/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .premium-properties {
        min-height: 820px;
    }


    .property-wrapper {
        min-height: 820px;
    }


    .property-content {
        padding: 220px 15px 20px;
    }


    .property-content h1 {
        font-size: 31px;
    }


    .property-box {
        padding: 15px;
    }


    .property-box h2 {
        font-size: 20px;
    }


    .details div {
        padding: 8px 4px;
    }


    .bottom h3 {
        font-size: 26px;
    }


    .property-actions {
        gap: 7px;
    }


    .whatsapp-btn,
    .property-actions .btn-styling-rectangular {
        padding: 8px 10px !important;

        font-size: 11px;
    }


    .property-navigation {
        gap: 8px;
    }


    .property-navigation .btn-styling-rectangular {
        padding: 8px 10px !important;

        font-size: 10px;
    }

}




/* =========================================
   RECENT PROJECTS SECTION
========================================= */

.re-recent-projects-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(201, 149, 46, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(201, 149, 46, 0.06),
            transparent 26%
        ),
        #fbfaf7;
}

.re-recent-projects-section::before {
    position: absolute;
    top: 80px;
    left: -140px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(201, 149, 46, 0.1);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.re-recent-projects-section::after {
    position: absolute;
    right: -120px;
    bottom: 50px;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(201, 149, 46, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.re-recent-projects-section .container {
    position: relative;
    z-index: 2;
}

.re-recent-projects-intro {
    max-width: 680px;
    margin: 16px auto 0;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================
   TWO-COLUMN PROJECT GRID
========================================= */

.re-recent-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 52px;
}


/* =========================================
   HORIZONTAL SHOWCASE CARD
========================================= */

.re-recent-project-card {
    position: relative;
    min-width: 0;
    height: 390px;
    overflow: hidden;
    border-radius: 20px;
    background: #161616;
    isolation: isolate;
    transform: translateZ(0);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.re-recent-project-card:hover {
    box-shadow:
        0 30px 70px rgba(26, 23, 17, 0.2),
        0 5px 18px rgba(26, 23, 17, 0.08);
    transform: translateY(-7px);
}

.re-recent-project-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}


/* Image */

.re-recent-project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.95) contrast(1.02);
    transform: scale(1.001);
    transition:
        transform 1s cubic-bezier(0.2, 0.75, 0.25, 1),
        filter 0.6s ease;
}

.re-recent-project-card:hover img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.07);
}


/* =========================================
   PROJECT CATEGORY TAG
========================================= */

.re-recent-project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 14px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}


/* =========================================
   SMOOTH BLURRED GRADIENT
========================================= */

.re-recent-project-blur {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 57%;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(8, 8, 8, 0.94) 0%,
            rgba(8, 8, 8, 0.76) 36%,
            rgba(8, 8, 8, 0.4) 67%,
            rgba(8, 8, 8, 0.08) 88%,
            transparent 100%
        );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition:
        height 0.7s cubic-bezier(0.2, 0.75, 0.25, 1),
        backdrop-filter 0.7s ease;
    mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 60%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 60%,
        transparent 100%
    );
}

.re-recent-project-card:hover .re-recent-project-blur {
    height: 88%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* =========================================
   PROJECT CONTENT
========================================= */

.re-recent-project-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    padding: 30px;
    color: #ffffff;
    transform: translateY(108px);
    transition:
        transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.re-recent-project-card:hover .re-recent-project-content {
    transform: translateY(0);
}


/* Location */

.re-recent-project-location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.re-recent-project-location svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #e1b764;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Heading */

.re-recent-project-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.22;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
}


/* Hidden content */

.re-recent-project-hidden {
    max-width: 500px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.45s ease 0.08s,
        visibility 0.45s ease,
        transform 0.55s ease 0.08s;
}

.re-recent-project-card:hover .re-recent-project-hidden {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.re-recent-project-hidden p {
    max-width: 510px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}


/* Meta */

.re-recent-project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.re-recent-project-meta span {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.re-recent-project-meta span + span::before {
    position: absolute;
    top: 50%;
    left: -12px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d8aa55;
    content: "";
    transform: translateY(-50%);
}


/* =========================================
   PROJECT BUTTON
========================================= */

.re-recent-project-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
    color: #e5bb6b;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.re-recent-project-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.re-recent-project-card:hover .re-recent-project-button svg {
    transform: translateX(6px);
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.re-recent-projects-footer {
    display: flex;
    justify-content: center;
    margin-top: 46px;
}

.re-recent-projects-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 12px 27px;
    border: 1px solid #c9952e;
    border-radius: 50px;
    background: transparent;
    color: #171717;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.re-recent-projects-view-all svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.re-recent-projects-view-all:hover {
    background: #c9952e;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(201, 149, 46, 0.25);
    transform: translateY(-3px);
}

.re-recent-projects-view-all:hover svg {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .re-recent-projects-section {
        padding: 90px 0;
    }

    .re-recent-projects-grid {
        gap: 22px;
    }

    .re-recent-project-card {
        height: 370px;
    }

    .re-recent-project-content {
        padding: 25px;
    }

    .re-recent-project-content h3 {
        font-size: 25px;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 991px) {

    .re-recent-projects-grid {
        grid-template-columns: 1fr;
    }

    .re-recent-project-card {
        height: 410px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .re-recent-projects-section {
        padding: 30px 0 40px;
    }

    .re-recent-projects-grid {
        gap: 18px;
        margin-top: 35px;
    }

    .re-recent-project-card {
        height: 390px;
        border-radius: 16px;
    }

    .re-recent-project-tag {
        top: 16px;
        left: 16px;
        min-height: 29px;
        padding: 6px 12px;
        font-size: 9px;
    }

    .re-recent-project-content {
        padding: 22px;
    }

    .re-recent-project-content h3 {
        font-size: 23px;
    }

    .re-recent-project-hidden p {
        font-size: 12px;
        line-height: 1.65;
    }

    .re-centered-cta {
        margin-bottom: 50px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .re-recent-project-card {
        height: 365px;
    }

    .re-recent-project-content {
        padding: 19px;
        transform: translateY(105px);
    }

    .re-recent-project-content h3 {
        font-size: 21px;
    }

    .re-recent-project-location {
        font-size: 11px;
    }

    .re-recent-project-meta {
        gap: 7px 18px;
    }

    .re-recent-project-meta span {
        font-size: 11px;
    }

}


/* =========================================
   TOUCH DEVICES
========================================= */

@media (hover: none) {

    .re-recent-project-card {
        height: 420px;
    }

    .re-recent-project-blur {
        height: 88%;
        /* backdrop-filter: blur(6px); */
        -webkit-backdrop-filter: blur(6px);
    }

    .re-recent-project-content {
        transform: translateY(0);
    }

    .re-recent-project-hidden {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}

@media (hover: none) and (max-width: 767px) {

    .re-recent-project-card {
        height: 430px;
    }

}


.nav-tab-recommended .nav-link-item {
    border-radius: 10px !important;
}