/* =========================
   Global Reset + Typography
========================= */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "lg";
    src: url("/fonts/lg.woff2") format("woff2"),
        url("/fonts/lg.ttf") format("truetype");
}

body {
    font-family: "FSAlamenitybert Pro" !important;
    line-height: 1.6 !important;
    background: #ffff !important;
    color: var(--text-color) !important;
}

header:not(.fixed) {
    background-color: var(--primary-color);
}

body header .nav-link,
body header .nav-link.active {
    color: #fff !important;
}

main {
    width: 100% !important;
    overflow: hidden !important;
    margin-top: 15px;
}

h1,
h2,
h3,
h4 {
    font-family: "FSAlbert Pro" !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
}

a {
    text-decoration: none !important;
    color: inherit !important;

    &:hover {
        color: var(--text-color) !important;
    }
}

button {
    cursor: pointer !important;
    border: none;
    outline: none !important;
}

.container-size {
    max-width: 1440px !important;
    margin: auto !important;
}

.full-container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;

    column-gap: 10px !important;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
    border-bottom: 1px solid #e1dede;
    margin-bottom: 60px;
    padding-top: 20px;
}

.tab-navigation-container{

    max-width: 1140px;
}

.fill-primary-text {
    fill: #080707 !important;
}

.stroke-primary-text {
    stroke: #000000 !important;
    stroke-width: 1 !important;
}

/* Hero Section Swiper  */

#hero-section {
    margin-top: 65px !important;
}



#hero-section .hero-swiper {
    position: relative;
    width: 100%;
    height: fit-content;


     .swiper-button-next,
     .swiper-button-prev {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            height: 40px;
            width: 40px;
    }

    .heroSwiper {
        width: 100%;
        height: fit-content;

        .swiper-slide:not(.swiper-slide-active)::after {
            content: ""; /* required for ::after */
            position: absolute; /* position the overlay */
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            transition: background 0.3s ease;
            margin-top: 0 !important;
            z-index: 10;
        }

        .swiper-slide {
            width: 74%;
            text-align: center;
            font-size: 18px;
            background: #444;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            height: 470px;

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

        .hero-pagination {
            .swiper-pagination-bullet {
                background: #fff;
                opacity: 0.6;
                &-active {
                    opacity: 1;
                    background: #f39c12;
                }
            }
        }


        .hero-next,
        .hero-prev {
            color: var(--primary-color);
            top: 55%;
            transform: translateY(-50%);
            transition: color 0.3s ease;

            &:hover {
                color: #f39c12;
            }
        }
        .hero-next {
            right: 40px;
        }

        .hero-prev {
            left: 40px !important;
        }
    }
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    background: rgb(203, 203, 203);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
    transition: background 0.3s, transform 0.2s;
    height: 100%;
    width: 100%;
    opacity: 0.8;

}

/* Circle background for prev/next icons */
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 800;
}

/* Hover effect for buttons */
.hero-swiper .swiper-button-next:hover::after,
.hero-swiper .swiper-button-prev:hover::after {
    /* hover color */
    transform: scale(1.1); /* slight zoom on hover */
}

/* =========================
   Property Action Bar
========================= */

/* Base styles for the anchor (button-like) */
.action {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-weight: bold;
    color: #6a0dad; /* Matches the SVG fill */
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.action:hover {
    color: #4a0a8d; /* Darker shade on hover */
}

.action .icon svg {
    width: 22px;
    height: 21px;
    fill: #6a0dad;
}

.action .pt5 {
    padding-top: 0.125rem; /* Aligns text slightly */
}



/* Dropdown styles */
#shareDropdown {
    position: absolute;
    top: 100%; /* Position below the anchor */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    min-width: 200px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

#shareDropdown.hidden {
    display: none;
}

#shareDropdown ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

#shareDropdown li a {
    color: #6a0dad;
    text-decoration: none;
    transition: color 0.2s ease;
}

#shareDropdown li a:hover {
    color: #4a0a8d;
}

#shareDropdown li a svg {
    height: 1.5rem;
    width: 1.5rem;
}

.sharemodal {
    z-index: 9999 !important;
}

.share-margin {
    margin-top: 3px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    #shareDropdown {
        width: 90%;
        left: 15%;
        transform: none;
        padding: 0.5rem 1rem;
        top: 23px !important;
    }

    #shareDropdown ul {
        align-items: center;
        gap: 0.75rem;
    }

    .action {
        font-size: 0.9rem;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    #shareDropdown {
        min-width: 180px;
    }

    #shareDropdown ul {
        gap: 0.875rem;
    }
}

/* Ensure the relative container doesn't interfere */
.relative {
    position: relative;
}
#property-action-bar {
    background: #fafafa !important;

    color: var(--text-color) !important;
    padding: 25px 40px !important;
}

.property-action-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    color: var(--primary-color) !important;
}



.left-actions {
    display: flex !important;
    color: var(--primary-color) !important;
    gap: 20px !important;
    font-size: 1.3rem;
    font-weight: 300;
    align-items: center;

    .action {
        color: var(--text-color) !important;
        font-size: 18px !important;
        display: flex ;
        justify-content: center !important;
        align-items: center !important;
        font-weight: 700 !important;
        line-height: normal;
    }

    .action.location {
        font-weight: 400 !important;
    }

    .icon {
        margin-right: 5px !important;
        /* margin-top: 6px !important; */
    }
    img {
        width: 30px !important;
    }
    .action {
        color: var(--text-color) !important;
        font-size: 18px !important;
        display: flex ;
        gap: 3px;
        justify-content: center !important;
        align-items: center !important;
        font-weight: 700 !important;
    }

    .icon {
        margin-right: 5px !important;
        /* margin-top: 6px !important; */

        img {
            width: 30px !important;
        }
    }
}

.navigation-price {
    font-size: 1.575rem;
    font-weight: 700;
    text-align: center;
}

.right-details {
    display: flex !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    gap: 30px !important;

    .detail {
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;

        .icon svg {
            width: 50px;
            height: auto !important;
            object-fit: cover !important;
            opacity: 0.5 !important;
        }
    }
}

.detail-count {
    color: var(--text-color);
}

.right-details-icons {
    display: flex;
    gap: 20px;
}
/* --- floating form (right drawer) --- */
.for-floating-form {
    position: fixed;
    top: 100px;
    right: 0;
    max-width: 380px;
    width: 100%;
    background: #fff;
    box-shadow: -2px 0 18px rgba(0, 0, 0, 0.12);
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.36s ease;
    z-index: 10000;
}

.for-floating-form.active {
    transform: translateX(0);
}

.close-div {
    display: flex;
    justify-content: flex-end;
}
h4 {
    font-size: 20px;
    margin: 8px 0 18px;
}

.floating-label-group {
    position: relative;
    margin-bottom: 10px;
}
.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    background: transparent;
    outline: none;
    font-size: 14px;
}
.floating-label-group input:focus,
.floating-label-group textarea:focus {
    border-bottom-color: #a16a00;
}
.floating-label-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #666;
    font-size: 14px;
    transition: all 0.25s ease;
    pointer-events: none;
}
/* float label when focused or when input has a non-empty placeholder-shown state */
.floating-label-group input:focus + label,
.floating-label-group textarea:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #a16a00;
}

.submit-field {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}
.submit-bttn {
    background: transparent;
    border: none;
    color: #a16a00;
    cursor: pointer;
    font-weight: 600;
}

.floating-label-group {
    position: relative;
    margin-bottom: 16px;
}
.floating-label-group input,
.floating-label-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    background: transparent;
    outline: none;
    font-size: 14px;
}
.floating-label-group input:focus,
.floating-label-group textarea:focus {
    border-bottom-color: #a16a00;
}
.floating-label-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #666;
    font-size: 14px;
    transition: all 0.25s ease;
    pointer-events: none;
}
/* float label when focused or when input has a non-empty placeholder-shown state */
.floating-label-group input:focus + label,
.floating-label-group textarea:focus + label,
.floating-label-group input:not(:placeholder-shown) + label,
.floating-label-group textarea:not(:placeholder-shown) + label {
    top: -8px;
    font-size: 12px;
    color: #a16a00;
}

.submit-field {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}
.submit-bttn {
    background: transparent;
    border: none;
    color: #a16a00;
    cursor: pointer;
    font-weight: 600;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
}
.checkbox-field input[type="checkbox"] {
    position: static;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #a16a00;
}
.checkbox-field label {
    position: static;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0px;
    color: #666;
    font-size: 14px;
    transition: all 0.25s ease;
    pointer-events: none;
}

.checkbox-field label {
    position: static !important;
}
.close-form {
    color: var(--bs-black) !important;
}

/* --- agreement overlay & modal --- */
.agreement-overlay {
    position: fixed;
    inset: 0;
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20000;
}
.agreement-overlay.active {
    display: flex;
}

.agreement-modal {
    background: #fff;
    max-width: 720px;
    width: 90%;
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    color: #333;
    line-height: 1.6;
}
.agreement-modal h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}
.agreement-modal p {
    margin: 10px 0;
    font-size: 14px;
    color: #444;
}
.agreement-modal a {
    color: #a16a00;
    text-decoration: underline;
}
.close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* small responsive tweak */
@media (max-width: 480px) {
    .for-floating-form {
        top: 60px;
        padding: 18px;
    }
    .agreement-modal {
        padding: 18px;
    }
    .agreement-modal h3 {
        margin-top: 0;
        margin-bottom: 12px;
        font-size: 20px;
    }
    .agreement-modal p {
        margin: 10px 0;
        font-size: 14px;
        color: #444;
    }
    .agreement-modal a {
        color: #a16a00;
        text-decoration: underline;
    }
    .close-modal {
        position: absolute;
        top: 8px;
        right: 12px;
        font-size: 24px;
        cursor: pointer;
        color: #666;
    }

    /* small responsive tweak */
    @media (max-width: 480px) {
        .for-floating-form {
            top: 60px;
            padding: 18px;
        }
        .agreement-modal {
            padding: 18px;
        }
    }
}

/* // Virtual Tab Modal */

.modal-title {
    margin-bottom: 0;
    text-align: center;
    color: var(--primary-color) !important ;
    display: flex;
    justify-content: center;
    line-height: normal;
}

/* =========================
   Tabbed Navigation
========================= */

#propertyTab {
    .tab {
        font-size: 18px !important;
        font-weight: 100;
        color: var(--text-color) !important;
        padding:0;
        padding-bottom: 20px !important;
        letter-spacing: 0px !important;
        text-align: left !important;

        &.active {
            box-shadow: inset 0px -5px 0px -1px #612172 !important;
            border-radius: 0px !important;
            background-color: transparent;
            font-weight: 900 !important;
            border: none;
            outline: none;
            color: var(--text-color) !important;
        }
    }
}

.arrange-btn-close {
    position: absolute;
    top: 30px;
    font-size: 13px;
    border-radius: 8px;
    padding: 14px !important;
    right: 36px;
    background-color: #e7e3e4;
}

.arrange-view-form-modal {
    max-width: 85% !important;
}

/* Target all modals with IDs starting with 'virtualTourModal' */
[id^="virtualTourModal"] {
    width: 100% !important;

    .virtual-tour-modal {
        max-width: 80% !important;
    }

    .modal-header .modal-title {
        color: var(--primary-color) !important;
        font-size: 29px !important;
    }
}

.property-tabs {
    justify-content: space-between !important;
    align-items: center !important;
    background: #fff !important;
    padding: 0px 40px !important;
}

.tabs {
    display: flex !important;
    align-items: center !important;
    column-gap: 20px;
    row-gap: 10px;
}

.nav-link .active {
    box-shadow: 0 3px 0 0 #612172 !important;
    border-radius: 0px !important;
}

.cta .btn {
    background: #612172 !important;
    font-size: 18px !important;
    color: #fff !important;
    font-weight: 700 !important ;
    padding: 10px 18px !important;
    border-radius: 6px !important;
    border: none;
}

.modal-custom {
    background: #f7f7f7; /* light grey */
    border-radius: 12px;
    padding: 15px 25px;
}

.text-purple {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 12px !important;
}

.btn-purple {
    background: #6a1b9a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px;
    border: none;
}
.btn-purple:hover {
    background: #4a136e;
    color: #fff;
}

.input-custom {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 8px 16px;
    height: 60px;
}

.modal {
    z-index: 9999999999999999999999;
}
textarea.form-control {
    min-height: calc(1.5em + 0.75rem + 2px);
    height: 186px;
    padding: 20px;
    font-size: 20px;
}

.form-links {
    font-weight: 700 !important;
}

.form-check-input:checked {
    background-color: #6a1b9a;
    border-color: #6a1b9a;
}

.form-check-label a {
    color: #6a1b9a;
    font-weight: 500;
    text-decoration: none;
}
.form-check-label a:hover {
    text-decoration: underline;
}

.modal-content {
    z-index: 1000000 !important;
    padding: 48px 56px;
    background-color: #f4f4f5;
}
.modal-body {
    padding-top: 0px;
}

.form-check-input[type="checkbox"] {
    border-radius: 0.25em;
    height: 27px;
    width: 30px;
    border: 1px solid #c9c5c5;
}

.check-div {
    display: flex;
    text-align: left;

    label {
        padding-left: 10px;
    }
}

.form-check {
    /* display: block; */
    min-height: 1.5rem;
    padding-left: 1.5em;
    /* margin-bottom: .125rem; */
    margin-top: 21px;
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    flex: 1 1 50%;
    justify-content: space-between;
    gap: 24px;

    .form-btn {
        width: 50%;
        font-size: 18px;
        border-radius: 8px;
        color: #ffff !important;
        background-color: var(--primary-color);
        border-color: var(--bs-btn-hover-border-color);

        button {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.5;
        }
    }
}

#virtualTourModal {
    .modal-header {
        border-bottom: none;
        padding-top: 10px !important;
        padding: 52px 20px;
    }
}

/* Custom Variables */
:root {
    --primary-color: #612172;
    --neutral-100: #fafafa;
    --zinc-100: #f4f4f4;
    --button-primary: #612172;
    --button-text: #fff;
    --button-tint: #4a1a56;
    --button-tint-text: #fff;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
}

/* Tab Content Details */
#tabcontent-details {
    position: relative;
    width: 100%;
}

@media (min-width: 992px) {
    .swiper-slide {
        height: 560px !important;
    }
}
@media (min-width: 1450px) {
    .swiper-slide {
        height: 730px !important;
    }
}

@media (min-width: 1024px) {
    #tabcontent-details {
        width: 100%;
    }

    .heroSwiper {
        width: 100%;
        height: 80%;

        .swiper-slide {
            img {
                width: 100%;
                height: 100%;
            }
        }
    }
}

/* Flex Container */
.property-details-container {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;
}

/* Left Column (Text Content) */
.text-content {
 flex: 1 1 60% !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;

    gap: 16px !important;
    max-width: 100% !important;
    padding-right: 70px;


    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 0.4px !important;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
}

.text-content .intro {
    background-color: var(--neutral-100) !important;
    color: var(--primary-color) !important;
    border-radius: 4px !important;
    padding: 32px !important;
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 20px !important;

    width: 100%;
        text-align: -webkit-left;
}

.property-details {
    margin-top: 60px;
}

.text-content h2 {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    font-weight: 300 !important;
    margin-bottom: 4px;
}
.divider {
    width: 64px !important;
    background-color: var(--primary-color) !important;
    margin-bottom: 30px !important;
    height: 4px !important;
    border-radius: 4px !important;
}

.detail-desc-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
    width: 580px;
}
.detail-desc-card {
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    text-align: start;
    color: #fff;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.detail-desc-card h1 {
    font-size: 20px;
    line-height: 20px;
    display: flex;
    font-weight: 300;
    color: #ffff !important;
    margin: 0 0 45px;
    word-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.detail-desc-card p {
    font-size: 16px;
    line-height: 18px;
    margin: 0;
    font-weight: 100;
    color: #fff;
    word-wrap: break-word;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.detail-desc-card h1 span {
    display: block;
    font-size: 29px;
    line-height: 16px;
    margin-top: 4px;
    height: 10px;

}

@media (min-width: 1024px) {
    .text-content h2 {
        font-size: 1.875rem !important;
    }
}

.text-content .divider {
           width: 80px !important;
        height: 4px !important;
        margin-bottom: 30px !important;
        border-radius: 4px;
}

@media (min-width: 1024px) {
    .text-content .divider {
        width: 80px !important;
        height: 4px !important;
        border-radius: 4px;
       margin-bottom: 30px !important;
    }
}

.text-content .grid-details {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
}

@media (min-width: 640px) {
    .text-content .grid-details {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 768px) {
    .text-content .grid-details {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.text-content .grid-details div {
    margin-bottom: 16px !important;
}

@media (min-width: 640px) {
    .text-content .grid-details div {
        grid-column: span 2 !important;
    }
}

@media (min-width: 768px) {
    .text-content .grid-details div {
        grid-column: span 4 !important;
    }
}

.text-content .grid-details .font-bold {
    font-weight: 700 !important;
}

.text-content ul {
    margin-left: 16px !important;
    margin-bottom: 16px !important;
}

@media (min-width: 1280px) {
    .text-content ul {
        columns: 2 !important;
    }
}

/* Right Column (Contact Section) */
.contact-section {
    display: none !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 426px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    max-width: 100% !important;
}

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

.contact-section .image-container {
    position: relative !important;
    height: 320px !important;
    overflow: hidden !important;
}

.contact-section .image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

.contact-section .contact-box {
    background-color: var(--zinc-100) !important;

    flex: 1 !important;
}

.contact-content {
    padding: 28px;
}
.contact-section h3 {
    font-size: 1.5rem !important;
    color: var(--primary-color) !important;
    font-weight: 300 !important;
    margin-bottom: 20px !important;
}

@media (min-width: 1024px) {
    .contact-section h3 {
        font-size: 1.875rem !important;
    }
}

.contact-section a {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-color);
    text-decoration: none !important;
}
.contact-section .phoneNo {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: var(--primary-color) !important;
    text-decoration: none !important;
    margin-bottom: 32px;
}
.check-stat-span {
    font-size: 16px !important;
    font-weight: 300 !important;
}
.check-stat-anchor {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.contact-section a:hover {
    color: var(--button-tint) !important;
    cursor: pointer;
}

.contact-section .form-group {
    margin-bottom: 16px !important;
    width: 100% !important;
}

.contact-section input,
.contact-section textarea {
    width: 100% !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    border: 1px solid var(--gray-300) !important;
    outline: none !important;
    font-weight: 300 !important;
    height: 48px !important;
    box-sizing: border-box !important;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: var(--gray-400) !important;
}

.contact-section textarea {
    min-height: 75px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    resize: vertical !important;
}

.contact-section .checkbox-container {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    width: 100% !important;
}

.contact-section .checkbox-custom {
    width: 32px !important;
    height: 32px !important;
    border: 1px solid var(--gray-300) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #fff !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
    padding-bottom: 5px;
}

.contact-section .checkbox-custom .checkmark {
    display: none !important;
    width: 20px !important;
    height: 12px !important;
    border-bottom: 4px solid var(--primary-color) !important;
    border-left: 4px solid var(--primary-color) !important;
    transform: rotate(-45deg) !important;
}

.contact-section input[type="checkbox"]:checked + .checkbox-custom .checkmark {
    display: block !important;
}

.contact-section .button-primary {
    background-color: var(--button-primary) !important;
    color: var(--button-text) !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    border-radius: 8px !important;
    width: 100% !important;
    text-align: center !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.contact-section .button-primary:hover {
    background-color: var(--button-tint) !important;
    color: var(--button-tint-text) !important;
}

@media (max-width: 1024px) {
    .contact-section {
        display: none !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 426px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        max-width: 100% !important;
    }
    .property-details-container {
        flex-direction: column !important;
    }

    .property-details {
        padding: 0px !important;
        gap: 20px;
    }
    .text-content {
        flex: 1 1 100% !important;
        padding-right: 0px !important;
        font-size: 1.25rem;
        font-weight: 300;
    }

    .contact-section {
        width: 100% !important;
        margin-left: 0 !important;
    }

    .contact-section .image-container {
        height: 240px !important;
    }

    #tabcontent-details {
        position: static !important;
    }
}

/* =========================
   Units Section
========================= */
.unit-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
    /* border-left: 5px solid #612172; */
    /* padding-left: 15px; */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-top: 60px;
    font-weight: 300 !important;
}

.info-table {
    width: calc(100% - 296px);
    table-layout: fixed; /* Ensures consistent column widths */
    border-collapse: collapse; /* Merges borders for seamless lines */
    border-top: 1px solid #ccc; /* Full-width top border */
    border-bottom: 1px solid #ccc; /* Full-width bottom border */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.info-table th,
.info-table td {
    padding: 20px;
    font-weight: 400;
    text-align: center;
    font-size: 20px;
    line-height: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: nowrap;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    width: 20%;
}

.info-table td {
    color: #848484;
}

.info-table tr.Unit-Table-Headings {
    background-color: #fafafa; /* Full-width background for the first row */
}
.Unit-Table-Headings td {
    padding: 20px 16px !important;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
}

.info-table td a {
    text-decoration: underline !important;
    color: var(--primary-color) !important;
}

.info-table th {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.sq-values p {
    font-size: 16px;
    margin: 2px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.info-table .Unit-detail-btn {
    background: var(--primary-color);
    color: #fff !important;
    font-family: "FSAlbert Pro";
    font-weight: 700;
    font-size: 18px;

    text-decoration: none !important;
    padding: 16px 40px;
    border-radius: 6px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
/* Modal styling to match the image */
.modal-content {
    border: none;
    border-radius: 8px;
}

.modal-header {
    border-bottom: none;
    padding: 16px 20px;
}

.modal-title {
    font-size: 36px;
    line-height: 1.1px;
    font-weight: 300 !important;
    color: #333;
    font-weight: 500;
}

input::placeholder {
    color: #f4f4f5;
    font-size: 19px;
    height: 36px;
}

.arrange-modal-desc {
    font-size: 20px;
}

.modal-body {
    padding: 20px !important;
    padding-top: 0px;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Existing info-table CSS remains unchanged */

.floorPlanModalClasssvg {
    width: 21px;
    height: 21px;
    color: #818181;
}

.white-bg {
    background-color: #ffff;
}

.wrapImgScroll {
    overflow: scroll !important; /* keep scroll working */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}
.wrapImgScroll::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari */
}
/* =========================
   Locations + Map
========================= */
#Locations-Nearby-section {
    padding: 40px 0px;
}

.Nearby-heading h2 {
    font-size: 28px;
    margin-bottom: 20px;
    /* border-left: 5px solid #612172; */
    /* padding-left: 15px; */
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 300 !important;
}

.map-section {
    display: flex;
    /* gap: 30px; */
    background-color: #fafafa;
}

.map-container {
    flex: 2;
    height: 400px;
    position: relative;
}

.map-info {
    /* flex: 1; */
    background: #fefefe;
    margin-right: 13px;
    padding: 10px;
    /* border-radius: 10px; */
}

#map {
    height: 100%;
    width: 100%;
}
.leaflet-popup-content-wrapper {
    width: 250px;
}
.leaflet-control-geocoder {
    margin-top: 60px; /* Adjust to avoid overlap with nav */
}
#toggle {
    display: none;
    position: absolute;
    width: 100%;
    text-align: center;
    pointer-events: none;
    visibility: visible;
    z-index: 2000;
    padding-right: 204px;
    top: 5px;
    transition: 0.3s;
}
.button_container {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 10px;
}
.ui.button {
    font-family: Poppins;
    font-size: 13px;
    padding: 0.5em 1em;
    border-radius: var(--border-radius, 5px);
}
.ui.dropdown .menu {
    background-color: #fafafa;
}
#tabmenu {
    position: absolute;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    height: 40px;
    padding-right: 204px;
    transition: 0.3s;
    top: 31px;
}
#pulldowntab {
    background: white;
    height: 17px;
    width: 60px;
    margin: 2px auto;
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px;
    color: #000;
    opacity: 1;
}
.ui.icon {
    cursor: pointer;
}

.nav-container {
    position: absolute;
    display: none !important;
    top: 0px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.zoom-buttons {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 5px;
    /* padding: 5px; */
    width: 29px;
    /* gap: -36px; */
    height: 20px;
}
.zoom-buttons button {
    background: #ffffff;
    border: 1px solid #ccc;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    /* margin: 2px 0; */
    border-radius: 3px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.yellow-indicator {
    background: #ffff00;
}

.gm-style .place-card-large {
    display: none !important;
}
.gm-inset-light {
    background-color: white;
    border-color: white;
    display: none !important;
}

.gmnoprint {
    display: none !important;
}





/* ===== Market Report Section ===== */
#market-report-section {
     padding: 60px 60px;
    background-color: #f4f4f4;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

#market-report-section .market-report-outer-container::before {
  content: "";
  position: absolute;
  inset: 0;
background-color: rgb(97, 33, 115, 0.3);
}

.market-report-outer-container{
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 5% 5% 5% 5%;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);

}

.market-report-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.market-report-content {
  flex: 1 1 50%;
  padding-right: 40px;
}

.market-report-title {
  font-size: 2rem;
  font-weight: 600;
  color: #fff !important;
  margin-bottom: 20px;
}

.market-report-text {
  font-size: 1rem;
  color: #fff !important;
  line-height: 1.6;
  margin-bottom: 30px;
}


.market-report-btn {
  display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 60px;
    font-weight: bold;
    /* Gradient background setup */
    background: linear-gradient(to right, var(--primary-color) 50%, #fff 50%);
    background-size: 200% 100%;
    background-position: right bottom;

    transition: background-position 0.3s ease, color 0.3s ease;

      line-height: 100% !important;
}

.market-report-btn:hover {
    background-position: left bottom;
    /* Slides purple in from left */
    color: #fff !important;

    /* Text turns white */

}


.market-report-image {
  flex: 1 1 30%;
  text-align: center;
  position: relative;
  perspective: 1000px; /* Adds slight depth for 3D feel */
}

.market-report-image img {
  max-width: 100%;
  height: 265px;
  border-radius: 8px;
  /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); */
  transform: rotate(20deg) skewY(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.market-report-image img:hover {
  transform: rotate(0deg) skewY(0deg) scale(1.3);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.market-report-image img:hover {
  transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);

  /* Default transform state */
  transform: perspective(1px)
             rotate(0deg)
             rotateX(0deg)
             rotateY(0deg)
             translate(0px)
             translateX(0px)
             translateY(50px)
             scaleX(1.2)
             scaleY(1.2)
             skewX(0deg)
             skewY(0deg)
}



/* =========================
    Similar Properties */

#similar-property {
    padding-bottom: 0px;
}

.similar-heading h2 {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 400 !important;
    color: var(--text-color) !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 300;
}

.property-card {
    background-color: #fff;
    overflow: hidden;
}

.property-sale-container .swiper {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 30px;
    height: 100%;
}

.property-card-img {
    height: 310px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.property-card:hover {
   box-shadow: 0 10px 20px rgb(0, 0, 0, .2);
}

.payment-plan-card-status{

    display: flex;
    justify-content: space-between;
}

.card-payment-plan{
        color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
    margin-right: 5px;
}
.card-body {
    padding: 20px 15px 0px !important;
}
.card-body:hover {
        box-shadow: 10px 10px 0px 10px rgb(0, 0, 0, .22);
}

.font-heading {
    font-weight: 300;
    line-height: 32px;
    font-size: 18px;
    color: var(--text-color);

}
.text-primary.property-card-price fw-bold {
    margin-top: 10px;
}
.text-primary {
    font-weight: 700 !important;
    line-height: 32px;
    font-size: 24px;
    color: #6b207d !important;
}

/* Ensure slides take full height */
.property-sale-container .swiper-slide {
    height: fit-content !important;
}

.swiper-wrapper {
    height: 100% !important;
}

/* Ensure consistent card height and layout */
.property-card {
    display: flex;
    flex-direction: column;

}


.card-body {
    display: flex;
    flex-direction: column;
    padding: 20px 15px 0px !important;
    flex-grow: 1;
}


.card-title.font-heading {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    max-height: 64px;
    margin-bottom: 10px;
}


.card-body > :not(.card-title) {
    flex-grow: 0;
    margin-top: auto;
}

.card-text {
    font-weight: 300;
    line-height: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 0px;
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.text-primary.property-card-price {
    margin-top: 0; /* Remove extra margin to align with icons */
}

/* Ensure Swiper slide respects card height */
.property-sale-container .swiper-slide {
    height: 100% !important; /* Allow slide to adjust to card height */
    display: flex;
    align-items: stretch; /* Stretch all slides to match the tallest card */
}

/* Mobile-specific fixes */





/* Existing responsive styles */
@media (max-width: 1024px) {
    .property-slide {
        flex: 1 1 calc(50% - 20px); /* 2 per row */
        max-width: calc(50% - 20px);
    }
}


@media (max-width: 767px) {
    .hero-next {
            right: 30px !important;
        }

        .hero-prev {
            left: 30px !important;
        }

    .similar-swiper {
        overflow: visible !important;
    }

    .swiper-slide {
        opacity: 1 !important;
    }

    .property-card {
        margin: 0 auto;
        max-width: 100%;
    }


    .hero-swiper .swiper-button-next::after, .hero-swiper .swiper-button-prev::after {
        font-size: 21px !important;
    }


#hero-section .hero-swiper {
    .swiper-button-next, .swiper-button-prev {
        height: 35px !important;
        width: 35px !important;
    }
}


    #hero-section .hero-swiper {
        & .heroSwiper {
            .hero-next {
                right: 15px !important;
            }
        }
    }


      #hero-section .hero-swiper {
        & .heroSwiper {
            .hero-prev {
                left: 15px !important;
            }
        }
    }
}

@media (max-width: 600px) {
.hero-next {
            right: 20px !important;
        }

        .hero-prev {
            left: 20px !important;
        }
}

@media (max-width: 460px) {
    .property-slide {
        flex: 1 1 100%; /* full width */
        max-width: 100%;
    }

    .prop-card {
        width: 100%;
    }
}
.our-mission {
    display: none !important;
}

.image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mySwiper4 {
    height: 100%;
}

.mySwiper4 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.8);
    opacity: 1;
    width: 7px;
    height: 6px;
    margin: 0 2px;
}

 .swiper-pagination-bullet-active {
    background: #fff;
}


.feature-thumb-bx-main {
    text-decoration: none;
    display: block;
    border: 1px solid #e5e2e2;
    border-radius: 5px;
}


.similar-swiper-card-image-section{
    height: 250px;
}


.similar-swiper-button-next,
.similar-swiper-button-prev {
    align-items: center;
    background: white;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50px;
    position: absolute;
    z-index: 10;
    top: 55%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.similar-swiper-button-prev { left: 4px; }
.similar-swiper-button-next { right: 4px; }


.similar-swiper-card-image-section:hover .similar-swiper-button-next,
.similar-swiper-card-image-section:hover .similar-swiper-button-prev {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1);
}

.similar-swiper-button-next:hover,
.similar-swiper-button-prev:hover {
    transform: scale(1.1);
    background: #f8f9fa;
}



.payment-plan-container{
    display: flex;
}


 .property-status {
          font-size: 13px;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-color);
    padding: 4px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
    display: inline-block;
        }

        .similar-location {
           color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
    font-weight: 600;
        }


/* =========================
   Responsive Design
========================= */

@media only screen and (max-width: 1024px) {
    body .container {
        padding: 0 15px !important;
    }
}

@media (max-width: 1200px) {
    .navigation-price {
        font-size: 20px;
        font-weight: 700;
        text-align: center;
    }

    .left-actions {
        display: flex !important;
        gap: 20px !important;
        font-size: 19px;
        font-weight: 300;
    }
    .right-details {
        & .detail {
            .icon svg {
                width: 35px;
                height: auto !important;
                object-fit: cover !important;
                opacity: 0.5 !important;
            }
        }
    }
}
@media (max-width: 1100px) {
    .tab {
        font-size: 17px;
    }
    .cta .btn {
        background: #612172;
        font-size: 17px;
    }
    .property-action-bar {
        gap: 15px;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }
}
@media (max-width: 1024px) {
    /* =========================
   Property Action Bar
========================= */
    #property-action-bar {
        padding: 40px 0px !important;
    }

    .left-actions {
        .icon img {
            width: 25px !important;
            vertical-align: middle;
        }

        .action {
            color: #777770 !important;
            font-size: 12px !important;
        }
    }

    .right-details {
        gap: 15px !important;
        width: 100%;
    }
    .cta {
        .btn {
            width: 100%;
        }
    }

    .right-details-icons {
        gap: 25px;
    }
    .detail {
        .icon img {
            width: 52px !important;
            height: 40px !important;
        }
    }

    /* =========================
   Tabbed Navigation
========================= */
    .property-tabs {
        padding: 0px 30px !important;
    }

    .tab {
        font-size: 18px !important;
        padding-top: 30px !important;
    }

    .cta {
        .btn {
            font-size: 18px !important;

            padding: 8px 15px !important;
        }
    }

    /* Key Information */

    .Information-cards-container {
        flex-wrap: wrap;
        width: 90%;
    }
    .information-card {
        width: 200px;
    }
    .card-image img {
        width: 30px;
        padding-top: 15px;
    }

    /* Units Section */
    #Units-Section {
        padding: 40px 30px;
    }

    .info-table th,
    .info-table td {
        padding: 7px 0px;
    }
    .info-table .Unit-detail-btn {
        padding: 12px 25px;
    }
    .property-card-img {
        height: 288px;
    }
}
@media (max-width: 1100px) {
    .tab {
        font-size: 17px;
    }
    .cta .btn {
        background: #612172;
        font-size: 20px !important;
    }
}
@media (max-width: 1024px) {
    /* =========================
   Property Action Bar
========================= */

    .left-actions {
        gap: 40px !important;
        font-size: 1.5rem !important;
        text-align: start !important;
        align-items: start !important;
        width: 100% !important;
        justify-content: start !important;

        .icon img {
            width: 25px !important;
            vertical-align: middle;
        }

        .action {
            color: #777770 !important;
            font-size: 14px !important;
        }
        .tabs {
            display: flex !important;
            justify-content: space-evenly !important;
            align-items: center !important;
            gap: 40px !important;
        }
    }

    /* =========================
   Hero Section
  ========================= */
    #hero-section {
        flex-direction: column !important;
    }

    .property-details {
        width: 100% !important;
        /* padding: 30px !important; */
        gap: 30px !important;
        word-wrap: break-word;
        justify-content: center;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .property-header {
        h1 {
            font-size: 32px !important;
        }
    }

    .property-location,
    .property-desc {
        font-size: 20px !important;
    }

    .property-actions {
        margin-top: 50px !important;
        gap: 10px !important;
    }

    .property-btn {
        padding: 10px 15px !important;
        font-size: 16px !important;
    }

    .property-image {
        width: 100% !important;

        img {
            height: auto !important;
        }
    }

    /* =========================
   Tabbed Navigation
  ========================= */
    .property-tabs {
        padding: 0px !important;
    }

    .tabs {
        gap: 40px !important;
    }

    .tab {
        font-size: 18px !important;
        padding-top: 30px !important;
    }

    .cta {
        .btn {
            font-size: 20px !important;
            padding: 8px 15px !important;
        }
    }

    #propertyTab {
        .tab {
            font-size: 18px !important;
            font-weight: 100;
            color: var(--text-color) !important;
            /* padding: 17px 0px !important; */
            padding-top: 20px !important;
            letter-spacing: 0px !important;
            text-align: left !important;
        }
    }
    /* Key Information */

    .Information-cards-container {
        flex-wrap: wrap;
        width: 90%;
    }
    .information-card {
        width: 200px;
    }
    .card-image img {
        width: 30px;
        padding-top: 15px;
    }

    /* Units Section */
    #Units-Section {
        padding: 0px 0px;
    }

    .info-table th,
    .info-table td {
        padding: 20px;
    }
    .info-table .Unit-detail-btn {
        padding: 12px 25px;
    }
    .col-lg-8 {
        width: 95%;
    }

    .info-table {
        width: 95% !important;
        text-align: center;
    }

    .Unit-Table-Headings td {
        text-align: center;
    }

    /* Property Description + Slider */

    .property-desc-para p {
        font-size: 22px !important;
        line-height: 32px !important;
    }
    .property-desc-slider {
        margin-left: 30px;
    }
    .slides {
        padding: 20px 40px;
        gap: 20px;
    }
    .slides img {
        height: 200px;
    }
    .prev {
        left: 20px;
    }
    .next {
        right: 20px;
    }

    #Property-Description {
        .desc-swiper .swiper-slide img {
            width: 93%;
            height: auto;

            object-fit: cover;
        }
    }

    /* Payment Plans */
    #Payment-Plans {
        padding: 40px 30px;
    }
    .Payment-cards-container {
        flex-direction: column !important;
        gap: 15px;
    }
    .payment-card {
        width: 60% !important;
        height: 100%;
    }

    /* News Section */
    #news {
        padding: 40px 30px;
    }
    .news-container {
        gap: 15px;
        height: auto !important;
    }
    .news-image,
    .news-description {
        width: 100%;
    }
    .news-image img {
        height: auto;
    }
    .news-title {
        font-size: 20px !important;
    }
    .news-description-para {
        font-size: 18px !important;
    }
    .news-learnmore a {
        font-size: 20px !important;
        padding: 7px 20px !important;
    }

    /* Blogs Section */
    #blogs-section {
        margin-top: 69px !important;
        padding: 40px 30px;
    }

    .blog-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }

    .blog-card {
        width: 45% !important;
    }
    .blog-details {
        padding: 0px 15px;
        padding-bottom: 15px;
        gap: 8px;
    }
    .blogs-topic,
    .blog-subtopic {
        font-size: 18px;
    }
    .blog-btn button {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* // Responsive EPC Section */
@media (max-width: 640px) {
    .epc-section {
        .epc-scale {
            flex-wrap: wrap;

            .scale-item {
                flex: 1 1 calc(33.33% - 0.5rem);
            }
        }
    }
}

/* Responsive Design NEWS CONTAINer*/
@media (max-width: 768px) {
    #hero-section {
        height: fit-content;
    }
    .hero-swiper {
        height: fit-content;
    }
    .hero-swiper .heroSwiper .swiper-slide img {
        height: 100%;
    }
    .news-container {
        flex-direction: column; /* Stack vertically on small screens */
        gap: 15px;
    }

    .news-image,
    .news-description {
        flex: 0 0 100%; /* Full width on small screens */
        width: 100%;
    }

    .news-image img {
        height: auto; /* Maintain aspect ratio on mobile */
    }
}

@media (max-width: 900px) {
    .cta {
        .btn {
            font-size: 20px !important;
        }
    }

    main {
        margin-top: 31px;
    }
}
@media (max-width: 1100px) {
    .cta {
        .btn {
            font-size: 17px !important;
        }
    }
}

@media (max-width: 789px) {
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 32px;
        color: var(--primary-color);
        font-weight: 800;
        background: rgb(203, 203, 203);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
        transition: background 0.3s, transform 0.2s;
        opacity: 0.8;
    }

    .unit-heading h2 {
        margin-top: 20px;
    }
    .blog-card {
        width: 90% !important;
    }

    .blog-image img {
        width: 100%;
        height: 254px;
    }
    .news-image img {
        /* height: auto; */
        height: 254px;
        width: 90%;
    }
    #blogs-section {
        margin-top: 0px !important;
        padding: 30px 30px !important;
    }
    #Property-Description {
        .property-desc-para p {
            margin-bottom: 0px;
            font-size: 21px !important;
            line-height: 30px !important;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-family: swiper-icons;
            font-size: 10px !important;
        }

        .prev,
        .next {
            position: absolute;
            top: 60%;
            height: 9px;
            width: 9px;
        }
    }

    .tabs {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 33px !important;
    }

    .info-table {
        width: 100% !important;
    }

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

    .modal-body {
        padding: 0px;
    }
    .form-check {
        /* display: block; */
        min-height: 1.5rem;
        padding-left: 1.5em;
        /* margin-bottom: .125rem; */
        margin-top: 21px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        align-items: center;
        flex: 1 1 50%;
        justify-content: space-between;
    }

    #arrangeViewingForm {
        .form-check .form-btn {
            max-width: 90%;
            color: #ffff !important;
            background-color: var(--primary-color);
            border-color: var(--bs-btn-hover-border-color);
            border-radius: 20px;
        }

        .btn-purple {
            border-radius: 20px;
        }
    }
}
@media (max-width: 768px) {
    /* Property Action Bar */
    #property-action-bar {
        padding: 15px 10px;
    }
    .property-action-bar {
        flex-direction: column;
        gap: 15px;
    }
    .left-actions {
        /* flex-direction: column; */
        gap: 10px;
    }

    .left-actions .icon img {
        width: 20px;
    }
    .right-details {
        flex-wrap: wrap;
        gap: 10px;
    }
    .detail .icon img {
        width: 30px;
    }

    /* Hero Section */
    .property-details {
        gap: 20px;
    }
    .property-header h1 {
        font-size: 24px;
    }
    .property-location,
    .property-desc {
        font-size: 16px;
    }
    .property-actions {
        margin-top: 30px;
        gap: 8px;
    }
    .property-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    /* Tabbed Navigation */
    .property-tabs {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-bottom: 20px;

        padding: 0px 0px !important;
    }

    .tab {
        font-size: 16px;
        padding-top: 20px;
    }
    .cta .btn {
        font-size: 16px;
        margin-right: 0px !important;
        padding: 6px 12px;
    }

    /* Key Information */

    .Information-cards-container {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .information-card {
        width: 100%;
    }
    .card-image img {
        width: 25px;
        padding-top: 10px;
    }

    /* Units Section */
    #Units-Section {
        padding: 30px 0px;
    }

    .info-table {
        width: 100% !important;
    }

    .info-table .Unit-detail-btn {
        padding: 10px 20px;
    }

    /* Property Description + Slider */

    .property-desc-para p {
        font-size: 18px !important;
        line-height: 28px !important;
    }
    .property-desc-slider {
        margin-left: -20px;
    }
    .slides {
        padding: 15px 20px;
        gap: 15px;
    }
    .slides img {
        height: 150px;
    }
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }

    #wide_menu {
        display: none !important;
    }

    /* Payment Plans */
    #Payment-Plans {
        padding: 30px 20px;
    }
    .Payment-cards-container {
        flex-direction: column;
        gap: 10px;
    }
    .payment-card {
        width: 100%;
        height: auto;
    }

    /* News Section */
    #news {
        padding: 30px 20px;
    }
    .news-container {
        /* flex-direction: column; */
        gap: 10px;
    }
    .news-image,
    .news-description {
        width: 100%;
    }
    .news-image img {
        height: auto;
    }
    .news-title {
        font-size: 18px !important;
    }
    .news-description-para {
        font-size: 16px !important;
    }
    .news-learnmore a {
        font-size: 16px !important;
        padding: 5px 15px !important;
    }

    /* Blogs Section */
    #blogs-section {
        padding: 30px 20px;
    }

    .blog-container {
        display: flex;
        flex-direction: column;
    }
    .blog-details {
        padding: 0px 10px;
        padding-bottom: 15px;
        gap: 6px;
    }
    .blogs-topic,
    .blog-subtopic {
        font-size: 16px;
    }
    .blog-btn button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .property-card-img {
        height: 240px;
    }

    .information-card {
        width: 90%;
    }

    .tab {
        font-size: 16px;
        padding-top: 20px;
    }
    .cta .btn {
        font-size: 18px;
        padding: 8px 15px;
    }

    /* Key Information */

    .Information-cards-container {
        grid-template-columns: 1fr;
        width: 100%;
    }
    .information-card {
        width: 100%;
    }
    .card-image img {
        width: 25px;
        padding-top: 10px;
    }

    /* Units Section */
    #Units-Section {
        padding: 0px;
    }

    .info-table {
        width: 100% !important;
    }

    .info-table .Unit-detail-btn {
        padding: 10px 10px;
    }

    /* Property Description + Slider */

    .property-desc-para p {
        font-size: 18px !important;
        line-height: 28px !important;
    }
    .property-desc-slider {
        margin-left: -20px;
    }
    .slides {
        padding: 15px 20px;
        gap: 15px;
    }
    .slides img {
        height: 150px;
    }
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }

    #wide_menu {
        display: none !important;
    }

    /* Payment Plans */
    #Payment-Plans {
        padding: 30px 20px;
    }
    .Payment-cards-container {
        flex-direction: column;
        gap: 10px;
    }
    .payment-card {
        width: 100%;
        height: auto;
    }

    /* News Section */
    #news {
        padding: 30px 20px;
    }
    .news-container {
        /* flex-direction: column; */
        gap: 10px;
    }
    .news-image,
    .news-description {
        width: 100%;
    }
    .news-image img {
        height: auto;
    }
    .news-title {
        font-size: 18px !important;
    }
    .news-description-para {
        font-size: 16px !important;
    }
    .news-learnmore a {
        font-size: 16px !important;
        padding: 5px 15px !important;
    }

    /* Blogs Section */
    #blogs-section {
        padding: 30px 20px;
    }

    .blog-container {
        display: flex;
        flex-direction: column;
    }
    .blog-details {
        padding: 0px 10px;
        padding-bottom: 15px;
        gap: 6px;
    }
    .blogs-topic,
    .blog-subtopic {
        font-size: 16px;
    }
    .blog-btn button {
        font-size: 12px;
        padding: 5px 10px;
    }
}
/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .tab {
        font-size: 18px;
        padding-top: 30px;
    }
    .cta .btn {
        font-size: 18px;

        padding: 8px 15px;
    }

    .property-action-bar {
        flex-direction: column !important;
        text-align: start !important;
        justify-content: start !important;
        align-items: start !important;
    }

    .navigation-price {
        font-size: 1.5rem !important;
    }
    .right-details {
        display: flex !important;
        font-size: 13px !important;
        font-weight: 100 !important;
        flex-direction: column;
        color: var(--text-color);
        gap: 20px !important;
        width: 100%;

        .icon svg {
            width: 64px !important;
            height: auto !important;
            object-fit: cover !important;
            opacity: 0.4 !important;
            margin-top: 10px;
        }
    }
}

@media (max-width: 1200px) {
    .tabs {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

@media (max-width: 1150px) {
    .tabs {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .tab-navigation-container {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        align-items: start !important;

        /* gap: 124px; */
        row-gap: 0px !important ;
        /* column-gap: 128px; */
    }
}

@media (max-width: 568px) {
    .tab {
        font-size: 12px;
    }
}
/* .property-prev, .property-next {
    width: 30px;
    height: 30px;
  }

  #Property-Description {
    .next , .prev {
        right: 0px;
        width: 20px !important;
        height: 20px !important;
        top: 67%;
    }

    .property-prev,
    .property-next {
        width: 30px;
        height: 30px;
    }

    #Property-Description {
        .next,
        .prev {
            right: 0px;
            width: 20px !important;
            height: 20px !important;
            top: 67%;
        }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 10px !important;
        }

        .property-desc-slider {
            margin-left: 0px !important;
        }
    }
}
  } */

/* =========================
   Responsive (max-width: 470px)
========================= */

@media (max-width: 500px) {
    .swiper-slide {
        height: 250px !important;
    }
    .container {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .full-container {
        width: 100% !important; /* Set to 500px as specified */
        overflow: hidden !important; /* Hides any overflowing content */
        display: flex !important;
        white-space: nowrap !important;
        flex-direction: column-reverse !important;
        gap: 0px !important;
    }

    .property-card-img {
        height: 200px;
        object-fit: cover;
    }

    .font-heading {
        font-weight: 300;
        line-height: 28px;
        padding-bottom: 14px;
    }

    #propertyTab {
        .tab {
            font-size: 14px;
            color: var(--text-color) !important;
            padding: 17px 0px !important;
            padding-top: 10px !important;
            padding-right: 12px !important;
            letter-spacing: 0px !important;
            text-align: left !important;
        }
    }

    .property-card-price {
        font-size: 19px;
    }

    .tabs {
        gap: 40px !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }

    .property-action-bar {
        text-align: start !important;
        justify-content: start !important;
        align-items: start !important;
    }

    .navigation-price {
        font-size: 30px !important;
    }
    .right-details {
        display: flex !important;
        font-size: 13px !important;
        font-weight: 100 !important;
        flex-direction: column;
        color: var(--text-color);
        gap: 20px !important;
        width: 100%;

        .icon svg {
            width: 64px !important;
            height: auto !important;
            object-fit: cover !important;
            opacity: 0.4 !important;
            margin-top: 10px;
        }
    }



    .unit-heading h2 {
        margin-top: 0px;
    }

    .text-content {
        flex: 1 1 100% !important;

        gap: 0px !important;
        font-size: 1.25rem;
        line-height: 30px;
        font-weight: 300;
    }


    .text-content h2{
        margin-bottom: 20px;
    }

    .text-content .intro {
        margin-top: 0px;
        padding: 20px !important;
        font-size: 18px;
        line-height: 1.4;
    }

    .cta {
        .btn {
            font-size: 18px !important;
            font-weight: 800 !important;
            padding: 5px 91px !important;
        }
    }

    .blogs-topic {
        /* color: #010000; */
        color: #010000 !important;
        font-size: 20px !important;
    }

    .blog-subtopic {
        color: #000000 !important;
        font-size: 16px !important;
    }

    .blog-btn button {
        background: #8b8577 !important;
        color: #fff;
        font-size: 13px !important;
    }

    .property-tabs {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
    }

    .info-table {
        width: 100% !important;

        .cta {
            /* Note: This is SCSS-style nesting; for plain CSS, use .info-table .cta */
            .btn {
                font-size: 8px !important;
                padding: 5px 11px !important;
            }
        }

        .blogs-topic {
            /* Note: This is SCSS-style nesting; for plain CSS, use .info-table .blogs-topic */
            /* color: #010000; */
            color: #010000 !important;
            font-size: 20px !important;
        }

        .blog-subtopic {
            /* Note: This is SCSS-style nesting; for plain CSS, use .info-table .blog-subtopic */
            color: #000000 !important;
            font-size: 16px !important;
        }
    }

    /* .swiper-slide {
    flex-shrink: 0;
    width: 50% !important;
    height: auto;
  } */

    #hero-section {
        height: fit-content !important;
        margin-top: 48px;
    }
    .hero-swiper {
        position: relative;
        width: 100%;
        height: fit-content !important;
    }

    .map-info {
        display: none !important;
        font-size: 8px !important; /* Bootstrap sets base font-size, protect yours */
        background: #fefefe !important;
        padding: 10px !important;
    }

    .Nearby-heading h2 {
        font-size: 20px;
    }

    .Property-Desc-heading h2 {
        font-size: 20px;
    }

    .property-header h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 20px !important;
    }

    .property-location,
    .property-desc {
        font-size: 15px !important;
    }

    .right-details {
        .detail {
            .icon img {
                width: 56px !important ;
            }
        }
    }

    .payment-percentage {
        font-size: 32px !important;
    }

    .payment-percentage {
        font-size: 23px !important;
    }

    .payment-card-header {
        font-size: 19px !important;
    }

    .payment-status {
        font-size: 16px !important;
    }

    .payment-card {
        width: 76% !important;
        height: auto !important;
    }

    .unit-heading h2 {
        font-size: 20px;
    }

    .blog-image img {
        width: 100%;
        height: 200px !important;
    }

    #Information-section {
        padding: 30px 0px;
        background: #fff;
    }

    .information-heading h2 {
        font-size: 20px;
    }

    .Payment-heading h2 {
        font-size: 20px;
    }

    .news-heading h2 {
        font-size: 20px;
    }

    .property-action-bar {
        /* flex-direction: column; */
        gap: 6px !important;
    }

    .property-btn {
        font-size: 10px !important;
    }

    .action {
        display: flex;
        gap: 0px !important;
    }

    .left-actions {
        overflow: hidden !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;

        align-items: center !important;
        justify-content: space-between !important;

        font-size: 1.5rem !important;
        .action .icon svg {
            width: 18px;
            height: 24px;
            fill: #6a0dad;
        }

        .action {
            padding-bottom: 10px;
        }
    }

    .detail {
        .icon img {
            width: 23px !important;
        }
    }

    .Information-cards-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    #Property-Description {
        padding: 30px 20px;
        background: #fff;
    }

    #Locations-Nearby-section {
        padding: 30px 0px;
    }

    .map-container {
        flex: 2;
        position: relative;
    }

    .information-heading h2 {
        padding-left: 20px;
    }

    .unit-details {
        display: flex;
        align-items: center;
        justify-content: start;
        width: 100%;
    }

    #Property-Description {
        padding: 60px 20px;
        background: #fff;
    }

    #Property-Description {
        .property-desc-slider {
            width: 100%;
            padding: 10px;
            background-color: #fafafa;
        }

        .property-desc-para p {
            font-size: 11px !important;
            line-height: 18px !important;
        }
    }

    .card-date {
        font-size: 13px;
    }

    .card-status {
        font-size: 11px;
        /* margin-bottom: 8px; */
    }

    .sharemodal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .share-modal-content {
        background: white;
        padding: 20px;
        border-radius: 8px;
        width: 90%;
        max-width: 400px;
        text-align: center;
        position: relative;
    }

    .card-status {
        font-size: 11px;
        /* margin-bottom: 8px; */
    }







}

@media (max-width: 340px) {

    .left-actions {
        gap: 0px !important;
        .action {
            padding-bottom: 0px;
            font-size: 12px !important;
        }
    .icon {
        margin-right: 2px !important;

        svg{
            width: 15px;
            height: 18px
        }
    }
    }

    .text-content {
        padding: 0px !important;
        font-size: 1rem !important;
        line-height: 1.4;
    }
    .text-content .intro {
        padding: 20px !important;
        font-size: 1rem !important;
        line-height: 1.4;
    }

    .cta {
        .btn {
            font-size: 13px !important;
            font-weight: 800 !important;
            padding: 4px 55px !important;
        }
    }

        .navigation-price {
        font-size: 24px !important;
    }
}
/* ================== Responsive ================== */

@media (max-width: 1200px) {
    #hero-section {
        height: fit-content;
    }
    .hero-swiper .heroSwiper .swiper-slide img {
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    main {
        margin-top: 7px !important;
    }

    .floorPlanModalClass {
        width: 100% !important;
        background: #f4f4f5;
        outline: none;
        border: none;
        color: #333;
        padding: 18px !important;
        padding-top: 60px !important;
        border-radius: 0.5rem;
        height: fit-content;
        max-width: 1200px;
    }

    .arrange-view-form-modal {
        max-width: 100% !important;
    }

    .modal-content {
        padding: 41px 10px;
    }

    .modal-title {
        font-size: 31px;
    }

    .modal-body .text-purple {
        color: var(--primary-color);
        font-size: 17px;
        font-weight: 300;
        margin-bottom: 5px !important;
    }

    textarea.form-control {
        min-height: calc(1.5em + 0.75rem + 2px);
        height: 100px;
    }

    .form-check {
        .form-btn {
            width: 100%;
        }
    }

    [id^="virtualTourModal"] {
        .virtual-tour-modal {
            max-width: 100% !important;
        }
    }
}

/* Tablet (768px and below) */
@media (max-width: 992px) {
    #hero-section {
        height: fit-content;
    }
    .hero-swiper {
        height: fit-content;
        & .heroSwiper {
            & .swiper-slide {
                img {
                    width: 80vw;
                    height: 80vh;
                }
            }
        }
    }

    main {
        margin-top: 13px;
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 33px;
    }

    .hero-swiper .heroSwiper .swiper-slide img {
        height: 100%; /* prevent overflow */
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {




    .hero-swiper .heroSwiper .swiper-slide {
        border-radius: 0; /* remove rounded corners */
    }

#hero-section .hero-swiper {
    .swiper-button-next, .swiper-button-prev {
        height: 30px !important;
        width: 30px !important;
    }
}


    #hero-section .hero-swiper {
        & .heroSwiper {
            .hero-next {
                right: 10px !important;
            }
        }
    }


      #hero-section .hero-swiper {
        & .heroSwiper {
            .hero-prev {
                left: 10px !important;
            }
        }
    }






 .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 16px;
    }

    .hero-swiper .heroSwiper .swiper-slide img {
        height: 100%; /* fit nicely */
    }

    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        /* font-size: 33px; */
        color: var(--primary-color);
        font-weight: 800;
        background: rgb(203, 203, 203);
        border-radius: 54%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: rgba(0, 0, 0, 0.6) 0px 2px 6px;
        transition: background 0.3s, transform 0.2s;
        opacity: 0.8;
    }




}



@media(max-width: 590px){

    .detail-desc-card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0px;
    width: 95%;
}
    .detail-desc-card h1 {
        font-size: 14px;
        line-height: 13px;
        display: flex;
        font-weight: 300;
        margin: 0 0 25px;
    }

    .detail-desc-card p {
        font-size: 12px;
        line-height: 15px;
        margin: 0;
        font-weight: 100;
    }

    .detail-desc-card {
        border-radius: 10px;
        padding: 14px;
    }
    .detail-desc-card h1 span {
        display: block;
        font-size: 25px;
        line-height: 9px;
        margin-top: 5px;
    }
}

@media (max-width: 900px) {
    .unit-details {
        overflow-x: auto;
        white-space: nowrap; /* Prevents table content from wrapping */
    }

    /* Ensure the table inside unit-details doesn't shrink or overflow */
    .unit-details .info-table {
        min-width: 600px; /* Set a minimum width to force horizontal scrolling */
    }
}
@media (max-width: 650px) {
    /* Outer container with overflow hidden */
    .full-container {
        width: 100% !important; /* Set to 500px as specified */
        overflow: hidden !important; /* Hides any overflowing content */
        display: flex !important;

        flex-direction: column-reverse !important;
        gap: 10px !important;
    }

    /* Tabs section with horizontal scrolling */
    .tabs.nav {
        overflow-x: scroll !important;

        display: flex !important;
        flex-wrap: nowrap !important;
    }

    /* Ensure tabs stay inline */
    .tabs.nav .nav-link {
        flex: 0 0 auto !important; /* Prevents stretching */
        margin-right: 5px !important; /* Spacing between tabs */
        padding: 8px 15px !important; /* Compact padding */
        text-align: center !important; /* Center text */
    }

    /* Optional: Hide scrollbar for cleaner look */
    .tabs.nav::-webkit-scrollbar {
        display: none !important; /* Hides scrollbar in WebKit browsers */
    }
    .tabs.nav {
        -ms-overflow-style: none !important; /* Hides scrollbar in IE/Edge */
        scrollbar-width: none !important; /* Hides scrollbar in Firefox */
    }

    /* Left actions section with hidden overflow */
    .left-actions {
        overflow: hidden !important; /* Hides overflowing content */
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }
}

/* ////////////////////////////////////////// */

/* Modal styling */
.floorPlanModalClass {
    width: 80%;
    background: #f4f4f5;
    outline: none;
    border: none;
    color: #333; /* Assume text-primary-text is #333 or your primary text color */
    padding: 64px;
    border-radius: 0.5rem;
    height: fit-content;
    max-width: 1200px;
}

.floorPlanModalClass::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .floorPlanModalClass {
        width: 77%;
    }
}

.floorPlanModalClass .absolute {
    position: absolute;
}

.floorPlanModalClass .top-5 {
    top: 1.25rem;
}

.floorPlanModalClass .right-5 {
    right: 1.25rem;
}

.floorPlanModalClass .bg-zinc-200 {
    background: #e4e4e7;
}

.floorPlanModalClass .hover-bg-white:hover {
    background: white;
}

.floorPlanModalClass .transition-all {
    transition: all 0.2s ease-in-out;
}

.floorPlanModalClass .h-9 {
    height: 2.25rem;
}

.floorPlanModalClass .w-9 {
    width: 2.25rem;
}

.floorPlanModalClass .grid {
    display: grid;
}

.floorPlanModalClass .place-items-center {
    place-items: center;
}

.floorPlanModalClass .outline-none {
    outline: none;
}

.floorPlanModalClass .z-10 {
    z-index: 10;
}

.floorPlanModalClass .rounded-lg {
    border-radius: 0.5rem;
}

.floorPlanModalClass .relative {
    position: relative;
}

.floorPlanModalClass .h-80vh {
    height: 75vh;
}

.floorPlanModalClass .overflow-x-hidden {
    overflow-x: hidden;
}

.floorPlanModalClass .flex-col {
    flex-direction: column;
}

.floorPlanModalClass .gap-5 {
    gap: 1.25rem;
}

.floorPlanModalClass .top-0 {
    top: 0;
}

.floorPlanModalClass .z-10 {
    z-index: 10;
}
.floorPlanModalClass .modal-func-btn {
    display: flex;
    gap: 20px !important;
}
.floorPlanModalClass {
    overflow: hidden; /* stop scrollbars inside modal */
}

#transformContent {
    display: inline-block; /* keep scaling clean */
    user-select: none; /* prevent text/image selection */
    cursor: default;
}

.FloorPlan-close-btn-div {
    position: absolute;
}
.floorPlanModalClass .transform-wrapper {
    width: 100%;
    height: 100%;
}

.floorPlanModalClass .transform-content {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.floorPlanModalClass .object-contain {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.floorPlanModalClass .text-primary {
    color: #6b207d; /* From previous primary color */
}

.floorPlanModalClass svg {
    width: 21px;
    height: 21px;
    color: #818181;
}
@media (min-width: 1024px) {
    .full-container.sticky {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000000 !important;
        border:none;
        background: white;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding-left: 12px;
        padding-right: 12px;
    }

}
.tab-navigation-container {
max-width: 1140px;
/* background-color: #afadad; */
margin: auto;
width: 100%;
flex-wrap: nowrap;
display: flex;
align-items: flex-end;
justify-content: space-between;
column-gap: 12px !important;
row-gap: 10px;
}



#tabbed-Navigation-bar .tab-navigation-container .left-actions{
    flex: 0 0 40%;
    padding-bottom: 15px;
}
#tabbed-Navigation-bar .tab-navigation-container  #propertyTab{
    flex: 0 0 60%;

}


#tabbed-Navigation-bar{
    margin-top: 20px;
}


#header.hide{
display: none;
}


@media (max-width: 341px) {
      #hero-section {
    margin-top: 105px !important;
}


}

/* /// */


.listing-card-payment-plan-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    column-gap: 10px;
}

.listing-card-payment-plan-container .payment-plan-button{
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    font-size: 15px;
    background-color: transparent;
    outline: none;
    font-weight: 500;
    border-radius: 2px;
}

.card-text .bedroom-img,
.card-text .bathtub-img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(0%) saturate(0%) hue-rotate(0deg) contrast(75%);
    width:26px;
}
.card-text .bedroom-img {
    margin-top: 3px;
}





.accordion-icon{
    transition: rotate 0.5s;
    transition: transform 0.35s ease;
}


/* Responsive */
@media (max-width: 900px) {
  .market-report-container {
    flex-direction: column;
  }
  .market-report-content {
    padding-right: 0;
    text-align: center;
  }
  .market-report-image {
    margin-top: 30px;
  }
  .market-report-image img
 {
    max-width: 100%;
    height: 180px;
}
#market-report-section {
    padding: 30px 15px !important;
}
}



@media (min-width: 963px) and (max-width: 1135px){
.listing-card-payment-plan-container .payment-plan-button{
    font-size: 12px;
}
}

@media (min-width: 767px) and (max-width: 1035px){
.card-text{
    gap: 10px;

}
}

@media (min-width: 767px) and (max-width: 1005px) {
    .card-text .bedroom-img,
.card-text .bathtub-img {
    width:26px;
}
}


@media (min-width: 767px) and (max-width: 962px) {
.listing-card-payment-plan-container .payment-plan-button{
    font-size: 11px;
}
}


.accordion-trigger .accordion-icon {
  transition: transform 0.25s ease;
  display: inline-block;
}
.accordion-trigger.open .accordion-icon {
  transform: rotate(180deg);
}



@media (min-width: 570px) and (max-width: 720px) {

    .listing-card-payment-plan-container {
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-bottom: 20px;
        column-gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
        gap: 10px;
    }

.text-primary {
    font-weight: 700 !important;
    line-height: 5px;
    font-size: 18px;
}
}
