* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins';
    background: #ffffff;
}

.header-container {
    max-width: 1200px;
}

.header {
    position: fixed;
    top: 1vh;
    width: 100%;
    z-index: 1000;
    padding: 33px 1.5% 0 1.5%;
    transition: all 0.3s ease-in-out;

}

.header.transparent {
    position: absolute;
}

.header.transparent .header-inner-bg {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    border: none !important;
}

.header-inner-bg {
    width: 100%;
    max-width: 1200px;
    transition: all 0.3s ease-in-out;
    padding: 12px 3.5%;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: rgba(3, 3, 3, 0.17) 0px 8px 32px 0px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.18);
    align-self: center;
    text-align: center;
    border-radius: 100px;
    justify-self: center;
    /* max-width: calc(var(--content-width) + 4rem); */
}

.header-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.transparent .header-logo {
    transform: scale(1.10);
}

.header-logo {
    width: 140.1px;
    height: 45.1px;
    transition: all 0.3s ease-in-out;
    object-fit: contain;
    transform: scale(1.01);

}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-right .header-btn {
    border-radius: 100px;
    border: solid 1px #fff;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 16px;
    font-family: Roboto;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #f7f5f4;
}

.header-right .gif-btn {
    padding: 8px 16px;
}

.header-right .gif-btn img {
    margin-left: 7px;
    width: 20.8px;
    height: 20.8px;

}

.wishlist-icon.pulse a {
    animation: pulse 1.5s infinite ease-in-out;
    display: inline-block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.wishlist-icon-mobile svg {
    width: 16px;
}

.wishlist-icon.pulse a svg path {
    fill: #800000 !important;
}

/* HAMBURGER (SHOW ON DESKTOP + MOBILE) */
.menu-icon {
    width: 35px;
    height: 35px;
    border-radius: 50px;
    border: solid 1px #f7f5f4;
    display: flex;
    /* always visible */
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    color: #fff;
    /* backdrop-filter: blur(4px); */
}

/* MOBILE/DESKTOP SLIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 40%;
    height: 100vh;
    background: #111;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 1999;
}

.side-menu a {
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    display: inline-block;
    transition: 0.3s;
}

.side-menu a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* header end */

/* banner-section */
.banner-section {
    margin-bottom: 70px;
    padding-bottom: 120px;
}

.banner-bg-div {
    width: 100%;
    height: 100vh;
    background: url("../assets/images/home/banner-img.webp") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    /* min-height: 725.6px; */
}

/* OVERLAY */
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.banner-content-box {
    position: relative;
    width: 100%;
    z-index: 5;
    margin-bottom: -110px;
}

.banner-content-box .banner-content-div {
    width: 100%;
    padding: 48px;
    border-radius: 7px;
    box-shadow: 0 11px 6px 0 rgba(0, 0, 0, 0.04);
    border: solid 1px #d9d9d9;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

}

.banner-bottom-left h2 {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 300;
    text-align: left;
    color: #000;
    max-width: 450px;
}

.banner-bottom-right {
    font-family: Poppins;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    color: #222;
    max-width: 443px;
}

/* end */

/* filter section start */
.filter-section {
    padding: 0 0 60px 0;
}

.main-title {
    font-family: Poppins;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    color: #222;
    margin-top: 50px;
    line-height: 1.5;
}

.main-title span {
    border-bottom: 4px solid #d97a3c;
    padding-bottom: 0px;
}

.filter-box {
    width: 100%;
    margin-top: 40px;
    padding: 25px 50px 10px 50px;
    border-radius: 7px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.divider {
    width: 1px;
    height: 60px;
    flex-grow: 0;
    background-color: #dfdfdf;
}

.filter-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.filter-box label {
    font-family: Inter;
    font-size: 14px;
    line-height: 1.29;
    text-align: left;
    padding: 10px;
    color: #222;
}

.filter-box select {
    padding: 10px;
    border: none;
    outline: none;
    width: 180px;
    background: transparent;
    font-family: Inter;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: rgba(34, 34, 34, 0.5);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    z-index: 1;
}

option[selected] {
    color: #222;
}

.filter-box .arrow-div {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-box .arrow-div::after {
    content: "";
    position: absolute;
    top: auto;
    left: 90%;
    background: url("../assets/images/arrow-select.webp") no-repeat center center/cover;
    cursor: pointer;
    width: 12px;
    height: 7.2px;
    z-index: 0;
}

.filter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.filter-btn-search {
    padding: 16px 30px;
    border-radius: 25px;
    border: solid 1px #000;
    background-color: #efefef;
    cursor: pointer;
    font-family: Poppins;
    font-size: 14px;
    line-height: 1.39;
    letter-spacing: 2.5px;
    text-align: center;
    color: #000;
}

.filter-btn-reset {
    cursor: pointer;
    font-family: Poppins;
    font-size: 14px;
    text-align: left;
    color: #c9a485;
    text-decoration: underline;
}

.property-cards_map {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;

}

.property-main-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.property-card {
    width: 100%;
    overflow: hidden;
}

.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.like-share {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    align-items: center;
    overflow: visible;
}

.icon-ani {
    width: 24px;
    height: 20px;
}

.icon-ani.like-btn {
    transition: all 0.3s ease-in-out;
    stroke: #c7a386;
}

.icon-ani.like-btn:hover {
    fill: #800000;
}

.icon-ani.share-btn path {
    stroke: #c7a386;
    transition: all 0.3s ease-in-out;
}

.icon-ani.share-btn:hover path {
    fill: #c7a386;
}

.icon-ani.like-btn.active path {
    fill: #800000;

}

.icon-ani.share-btn.active path {
    fill: #c7a386;
}

.property-title {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.25;
    text-align: left;
    color: #000;
    margin-top: 20px;
}

.property-sub {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.63;
    text-align: left;
    color: #000;
    margin-top: 5px;
}

.property-location i {
    color: #c7a386;
}

.property-location {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    text-align: left;
    color: #919191;
    margin: 6px 0 14px 0;
}

.size-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.size-box img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.size-box .size-box-para p {
    margin: 0 !important;
    font-family: Poppins;
    font-size: 14px;
    text-align: left;
    color: #c9a485;
}

.learn-btn {
    margin-top: 20px;
    padding: 15px 37px;
    background: #222;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #f7f5f4;
}


/* map */
#map-box {
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
    background: #e3f2ff;
    border-radius: 14px;
    overflow: hidden;
}

/* Sticky map */
.map-wrapper {
    margin-top: 40px;
    max-width: 378px;
    min-height: 555px;
    object-fit: contain;
    border-radius: 7px;
    position: sticky;
    top: 120px;
    width: 100%;
    height: calc(100vh - 120px);
    margin-bottom: 40px;
}

/* Desktop map */
.map-wrapper-desktop {
    height: 500px;
    /* IMPORTANT */
    width: 100%;
}


/* faq section */
.faq-section {
    padding-top: 60px;
}

.faq-title {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    color: #222;
    margin-bottom: 50px;
}

.faq-title span {
    display: block;
    width: 128px;
    height: 4px;
    background-color: #e78a3a;
    margin: 10px auto 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
    border-radius: 10px !important;
    padding: 18px 20px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #f9f9f9 !important;
    color: #333;
}

.accordion-button::after {
    background-image: none !important;
    content: '+' !important;
    font-size: 24px;
    font-weight: 300;
}

.accordion-button:not(.collapsed)::after {
    content: '-' !important;
}

.faq-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-number {
    background-color: #c7a386;
    color: #fff;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 7px;
    font-size: 14px;
}

.faq-question {
    font-family: 'Poppins';
    font-size: 20px;
    font-weight: 300;
    color: #222;
    margin: 0;
    line-height: 1.25;
}


/* contact form */
.contact-form {
    padding: 60px 0px;
    max-width: 750px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Poppins';
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    color: #222;
    margin-bottom: 50px;
}

.contact-title span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #e78a3a;
    margin: 10px auto 0;
}

.custom-input {
    height: 50px;
    border-radius: 7px;
    border: solid 1px #888e91;
    padding: 15px;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Poppins';
}

.custom-input::placeholder {
    color: #afafaf;
}

.form-control::placeholder {
    color: #afafaf;
}

.custom-select-input {
    height: 50px;
    width: 100%;
    border-radius: 7px;
    border: solid 1px #888e91;
    padding: 12px 40px 12px 15px;
    font-size: 15px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}

.arrow-div {
    position: relative;
}

.choices[data-type*=select-one]::after {
    content: "";
    position: absolute;
    top: 55%;
    right: 4%;
    width: 12px;
    height: 7.2px;
    background: url("../assets/images/arrow-select.webp") no-repeat center center/cover;
    transform: translateY(-55%) rotate(0deg);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
    border: none;
}

.choices[data-type*=select-one].is-open::after {
    border-color: transparent transparent #333;
    margin-top: 0px;
    transform: translateY(-65%) rotate(180deg)
}

/* Remove bootstrap-like styling from Choices */
.choices__inner {
    background-color: #fff !important;
    border-radius: 7px !important;
    border: 1px solid #888e91 !important;
    padding: 10px 40px 10px 15px !important;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    height: 50px !important;
}

.choices__list--dropdown {
    width: 100% !important;
    /* FIXED WIDTH */
    border-radius: 7px !important;
}

/* Dropdown item */
.choices__item {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.submit-btn {
    background: #000;
    color: #fff;
    padding: 10px 50px;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    font-family: 'Poppins';
    margin: 30px 0px 20px 0px;
}

.submit-btn:hover {
    background: #333;
}

.form-text {
    font-family: 'Poppins';
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
    color: #000;
}

.form-check-label {
    font-family: 'Poppins';
}

.country-box {
    width: 180px;
    height: 50px;
    border: solid 1px #888e91;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 8px;
    background: #fff;
}

.flag-img {
    display: block;
}

.country-select {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
}

.country-select:focus {
    outline: none;
    box-shadow: none;
}

/* footer */
.footer {
    background-color: #f7f5f4;
    padding: 60px 0px;
}

.connect-btn {
    border-radius: 100px;
    border: solid 1px #222;
    background-color: #222;
    font-family: 'Poppins';
    color: #f7f5f4;
    line-height: 1;
    font-size: 14px;
    text-align: center;
    padding: 7px 10px;
    margin-left: 10px;
}

.form-check-input {
    border: solid 1px #888e91 !important;
}

.footer-header {
    display: flex;
    justify-content: space-between;
}

.social-media {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;

}

.footer-title p {
    font-family: 'Poppins';
    font-size: 19.2px;
    font-weight: 600;
    line-height: 1;
    text-align: left;
    color: #222;
}

.footer-list {
    padding-left: 0px;
    margin-top: 20px;
}

.footer-list li {
    list-style: none;
}

.footer-list li a {
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    color: #222;
    text-decoration: none;
}

.footer-bottom {
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.footer-terms {
    display: flex;
    justify-content: center;
    gap: 20;
}

.footer-terms a {
    text-decoration: none;
    font-family: 'Poppins';
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

.footer-addres img {
    width: 164px;
    height: 49px;
}

@media (max-width: 768px) {

    .header {
        padding: 0;
        top: 0;
    }

    .header .container {
        --bs-gutter-x: 0;
    }

    .header-inner-bg {
        padding: 17px;
        border-radius: 0;
    }

    .header.transparent .header-logo {
        transform: scale(1.10);
    }

    .header-logo {
        width: 100px;
        height: 30.1px;
        transform: scale(1.05);
    }

    .side-menu {
        width: 60%;
    }

    .top-btns {
        position: relative;
        transition: all 0.3s ease-in-out;
        background-color: #fff;
    }

    /* Overlay panel */
    .filter-panel {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #f5f5f5;
        z-index: 9999;
        padding: 20px;
        transition: 0.4s ease;
        overflow-y: auto;
    }

    /* When active */
    .filter-panel.active {
        left: 0;
    }

    /* Header */
    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        margin-bottom: 25px;
    }


    .filter-close {
        font-size: 28px;
        cursor: pointer;
        color: #333;
    }

    .filter-item {
        width: 100%;
    }

    .arrow-div {
        width: 100%;
    }

    /* Divider line */
    .divider {
        width: 100%;
        height: 2px;
        background: #e6e6e6;
        margin: 15px 0;
    }

    .filter-box {
        margin-top: 30px;
        padding: 0;
        gap: 0;
    }

    .filter-panel label {
        font-size: 13px;
        line-height: 1.29;
        text-align: left;
        padding: 10px;
        color: #222;
    }

    .filter-panel select {
        padding: 10px;
        font-size: 12px;
        line-height: 1.5;
        text-align: left;
        color: #c0bdbd !important;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
        z-index: 1;
        width: 100%;
    }

    option[selected] {
        color: #222;
    }

    .filter-actions {
        margin-top: 20px;
        width: 100%;
    }

    /* .filter-btn-search {
        margin-bottom: 10px;
    }

    .filter-btn-reset {
        padding: 10px;
    } */

    /* Mobile map */
    .map-wrapper-mobile {
        height: 70vh;
        width: 100%;
        animation: slideDown 0.4s ease forwards;
    }

    #map-box-mobile {
        height: 70vh;
        width: 100%;
        position: relative;
    }

    /* slide animation */
    @keyframes slideDown {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }


    /* Close button */
    .map-close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 9999;
        background: #fff;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .header.transparent .top-btns button {
        visibility: hidden;
    }

    .top-btns button {
        border: none;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-family: Poppins;
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        color: #000;
    }

    .top-btns button img {
        width: 20px;
        height: 20px;
    }

    .top-btns .top-btn-dividr {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .banner-section {
        margin-bottom: -100px;
        padding-bottom: 0;
    }

    .banner-bg-div {
        background: url("../assets/images/home/banner-img-mob.webp") no-repeat center center/cover;
    }

    .banner-content-box .banner-content-div {
        flex-direction: column;
        padding: 27px;
    }

    .banner-content-box {
        margin-bottom: 0;
        position: relative;
    }

    .banner-bottom-left h2 {
        font-size: 32px;
        text-align: center;
        max-width: 285px;
    }

    .banner-bottom-right {
        font-size: 16px;
        font-weight: 300;
        text-align: center;
        max-width: 285px;
    }


    .main-title {
        font-size: 32px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 24px;
        line-height: 1.4;

    }

    .property-main-grid {
        margin-top: 0;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .property-card {
        text-align: center;
    }

    .like-share {
        justify-content: center;
    }

    .property-title {
        font-size: 22px;
        font-weight: 300;
        line-height: 1.36;
        text-align: center;
        margin-top: 16px;
    }

    .property-sub {
        font-size: 15.4px;
        line-height: 1.69;
        text-align: center;
        margin-top: 4px;
    }

    .property-location {
        font-size: 13.6px;
        line-height: 1.54;
        text-align: center;
        margin-top: 16px;

    }

    .size-box {
        justify-content: center;
    }

    .learn-btn {
        text-align: center;
        margin-top: 40px;
    }


    /* responsive */
    .faq-section {
        padding-top: 40px;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-number {
        font-size: 12px;
        padding: 6px 10px;
    }

    .faq-left {
        gap: 10px
    }

    /* contact form */
    .contact-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .contact-form {
        padding: 40px 0px;
    }

    .custom-input {
        height: 45px;
        padding: 15px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .form-check-label {
        font-size: 12px;
    }

    .mb-m-0 {
        margin-top: 0px;
    }

    .submit-btn {
        margin: 0px 0px 20px 0px;
    }

    .footer-header {
        display: block;
        text-align: center;
    }

    .footer {
        padding: 40px 0px;
        background-color: transparent;
    }

    .mb-mt-30 {
        margin-top: 30px;
    }

    .connect-btn {
        font-size: 12px;
        padding: 7px 15px;
    }

    .footer-list {
        margin-top: 10px;
    }

    .footer-title {
        font-size: 14px;
        font-weight: 500;
    }

    .footer-list li a {
        font-size: 12px;
    }

    .social-media {
        margin-top: 30px;
    }

    .footer-addres p {
        font-size: 12px;
    }

    .vertical-line {
        margin: 0px 5px 0px 5px;
    }

    .footer-terms a {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}