/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: #999999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #000;
    text-decoration: underline;
}

.breadcrumb span {
    color: #999999;
}

/* Project Header */
.project-header {
    margin-bottom: 20px;
}

.project-header .project-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.project-title {
    font-family: 'Outfit';
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000000;
}

.project-subtitle {
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 18px;
}

.project-subtitle>*:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 16px;
    background-color: #ccc;
    vertical-align: middle;
    position: absolute;
    right: -11px;
    top: 2px;
}

.project-subtitle span {
    position: relative;
}

.project-subtitle button {
    position: relative;
    border: none;
    background-color: transparent;
    line-height: normal;
}

.project-subtitle i {
    color: #666666;
    font-size: 16px;
}

.config-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.config-badges>*:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: #ccc;
    vertical-align: middle;
    position: absolute;
    right: -19px;
    top: 2px;
}

.config-badge {
    font-family: 'Outfit';
    color: #000000;
    font-size: 19px;
    font-weight: 600;
    position: relative;
}

.config-badge p {
    font-family: 'Inter';
    color: #666666;
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 0;
}

/* Hero Image */
.hero-section {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    background-color: #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: 100%;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.project-logo {
    background-color: #ffffff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo img {
    width: 70%;
    height: auto;
}

.play {
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.play img {
    width: 38px;
    height: auto;
}

.image-controls {
    display: flex;
    gap: 10px;
}

.image-btn {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 10px;
    transition: all 0.3s;
    gap: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

.image-btn img {
    width: auto;
    height: 16px;
}


/* Tabs */
.tabs-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    box-shadow: 0px 15px 10px -15px #ececec;
}


.tabs-container.sticky {
    position: sticky;
    top: 51px;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.tabs {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab {
    padding: 12px 0;
    background: none;
    border: none;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s;
    font-size: 14px;
}

.tab:hover,
.tab.active {
    color: #5b6ff2
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #5b6ff2
}

.download-brochure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 12px;
    font-family: 'Ubuntu';
    background-color: #0056b2;
    color: #ffffff;
    border: none;
    padding: 7px 14px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.download-brochure:hover {
    background: #5e53fe;
    transform: scale(1.05);
}

.details-wrap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    max-width: 980px;
    margin: 0 auto;
    gap: 30px;
}

.details-wrap .details-left {
    max-width: 620px;
    width: 100%;
}

.details-wrap .details-right {
    max-width: 330px;
    width: 100%;
}

.details-right.sticky {
    position: sticky;
    top: 100px;
    /* adjust to match your header height */
    height: fit-content;
}


/* Content Sections */
.content-section {
    margin-bottom: 30px;
    border: 1px solid #d3e0ed;
    border-radius: 10px;
}

.content-section#photos {
    border: 0;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    background-color: #f1f1fd;
    border-bottom: 1px solid #d3e0ed;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 11px 15px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#photos .section-title {
    border: 1px solid #d3e0ed;
}

.accordion-content {
    padding: 20px;
}

#photos .accordion-content {
    padding: 0;
}

.accordion-content ul.points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.accordion-content ul.points li {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.43;
    margin-bottom: 11px;
}

.accordion-content ul.points li:last-child {
    margin-bottom: 0;
}

.accordion-content ul.points li::before {
    content: "★";
    font-size: 14px;
    color: #000000;
}


/* Project Overview */
.overview-content {
    display: flex;
    width: 100%;
    gap: 20px;
}

.overview-content .column {
    width: 50%;
}


.overview-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.overview-content li {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    display: flex;
    align-items: flex-start;
    margin-bottom: 11px;
    line-height: 20px;
}

.overview-content .icon {
    width: 22px;
    height: 22px;
    border-radius: 2px;
    display: inline-block;
    margin-right: 12px;
}

.overview-content .blue-text {
    color: #0056b2;
    font-weight: 600;
    font-style: italic;
}


/* Pricing Table */
/* TABLE STYLING */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead tr {
    background-color: #f9f9ff;
    height: 42px;
    border-bottom: 2px solid #e8ecff;
}

.pricing-table th {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    font-style: italic;
    padding: 0 20px;
    text-decoration: underline;
}

.pricing-table th.type {
    width: 33%;
}

.pricing-table th.area {
    width: 34%;
}

.pricing-table th.price {
    width: 33%;
}

.pricing-table tbody tr {
    height: 42px;
    border-bottom: 1.8px solid #e8ecff;
    background-color: #f9f9ff;
}

.pricing-table td {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    padding: 0 20px;
}

.pricing-table tbody td:first-child {
    font-weight: 600;
}

/* CTA BAR */
.cta-bar {
    margin: 8px;
    padding: 8px;
    background: #0056b2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-bar .cta-icon {
    margin: -7px 0 -7px -7px;
}

.cta-bar span {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}


/* Floor Plans */
.bhk-tabs {
    gap: 10px;
}

.bhk-tabs .tab {
    border: 1px solid #d3e0ed;
    color: #0056b2;
    padding: 7px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
}

.size-tabs .bhk-tabs .tab:hover {
    background-color: #d3e0ed;
}

.bhk-tabs .tab.active {
    background-color: #194eb6;
    color: #ffffff;
}

.bhk-tabs .tab.active::after {
    content: none;
}

.size-tabs {
    width: fit-content;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.size-tabs .tab {
    padding: 10px 0;
    font-size: 13px;
    color: #666666;
    font-weight: 600;
}

.size-tabs .tab.active {
    color: #0056b2;
}

.size-tabs .tab.active::after {
    background-color: #0056b2;
}

.plan-slider .price {
    font-weight: 500;
    color: #1e223c;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.plan-slider .price span {
    font-size: 13px;
    color: #666666;
    font-weight: 400;
}

/* Commute & Surroundings */
.commute-section {
    margin-bottom: 15px;
}

.commute-section h4 {
    margin: 0 0 8px 0;
    color: #0056b2;
    font-size: 14px;
    font-weight: 700;
}

.commute-section ul {
    margin: 0;
    padding-left: 18px;
}

.commute-section li {
    margin: 5px 0;
    list-style: disc;
    color: #666666;
    font-size: 13px;
}

.commute-map-banner {
    margin: 0 -20px -20px -20px;
    padding: 10px 20px;
    background: url('../img/map-bg.png') center center no-repeat;
    background-size: cover;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.commute-map-banner .map-info {
    margin-right: auto;
}

.commute-map-banner .map-info .map-title {
    font-size: 15px;
    color: #000000;
    font-weight: 700;
    line-height: normal;
}

.commute-map-banner .map-info .map-sub {
    font-size: 13px;
    color: #000000;
    font-weight: 500;
    line-height: normal;
}

.commute-map-banner .map-cta .btn {
    display: inline-block;
    background: #0056b2;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(11, 99, 216, 0.12);
}

/* Amenities */
/* Grid Layout */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    row-gap: 22px;
    column-gap: 10px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.amenity-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 6px;
}

.amenity-item span {
    font-size: 12px;
    color: #000000;
    font-weight: 500;
    line-height: 1.3;
}



/* Location Map */
.map-container img {
    width: 100%;
    height: auto;
}

/* about */
.about-body p {
    font-size: 13px;
    margin: 0;
    color: #000000;
    white-space: normal;
}

/* Photos */
/* Masonry Grid */
.masonry-grid {
    width: 100%;
}

/* MASONRY COLUMN SIZE */
.masonry-sizer,
.masonry-item {
    width: calc(25% - 12px);
    /* 4 items per row on desktop */
    margin-bottom: 12px;
    position: relative;
}

.masonry-item img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* VIDEO OVERLAY */
.video-item .play-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-item .play-icon i {
    color: #fff;
    font-size: 18px;
}


/* Nearby Projects */

.hot-selling-section {
    max-width: 980px;
    margin: 0 auto;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 70px;
}

.hot-title {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 12px;
}

/* CARD */
.hot-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    border: 1px solid #d3e0ed;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
}

.hot-img img {
    width: 100%;
    height: 124px;
    object-fit: cover;
    border-radius: 14px;
}

.hot-info {
    padding: 8px 0 0;
}

.hot-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    margin: 8px 0 0;
}

.hot-info .developer {
    font-size: 12px;
    color: #666666;
    font-weight: 500;
    margin-bottom: 15px;
}

.hot-info .price {
    margin-bottom: 0;
}

.hot-info .price span {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.hot-info .details {
    font-size: 13px;
    color: #666666;
    margin-bottom: 15px;
    font-weight: 500;
}

.hot-info .location {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
}

/* Slick Spacing */
.hot-slider .slick-slide {
    margin-right: 16px;
}

.hot-slider .slick-list {
    margin-right: -16px;
}

/* Arrows */
.hot-slider .slick-arrow {
    background: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 9;
}


.hot-slider .slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #333;
    font-size: 16px;
}


.hot-slider .slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #333;
    font-size: 16px;
}


/* Contact Form */
/* MAIN BOX */
.contact-box {
    width: 100%;
    background: #f1f1fd;
    border: 1px solid #d3e0ed;
    border-radius: 10px;
    padding: 30px 15px;
    font-family: 'Inter', sans-serif;
    position: relative;
    margin-top: 18px;
}

/* ICON CIRCLE */
.contact-icon {
    position: relative;
    background: #0056b2;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    margin: 0 auto;
    margin-top: -48px;
}

/* TITLE */
.contact-title {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    text-align: center;
    margin-top: 12px;
    line-height: 1.4;
}

.contact-title span {
    color: #333333;
    font-size: 15px;
    font-family: 'Outfit';
    font-weight: 600;
}

.why-through {
    margin-bottom: 16px;
    margin-top: 12px;
}

.why-through img {
    width: 100%;
}

/* .why-through {
    position: relative;
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    background-color: #e4ecf0;
    font-family: 'Outfit';
    margin-bottom: 0;
    color: #0066cc;
    font-size: 14px;
    padding: 12px;
    border-radius: 30px;
    margin-bottom: -20px;
} */

/* WHY THROUGH INDOACRES */
/* .why-tabs {
    background: #e4ecf0;
    padding: 15px 27px;
    border-radius: 12px;
    margin: 0 0 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 25px;
}

.why-item {
    font-family: 'Outfit';
    width: 25%;
    font-size: 12px;
    font-weight: 600;
    color: #0066cc;
    line-height: 1.2;
} */

/* INPUTS */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe3e6;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 8px;
    outline: none;
    background: white;
    color: #333333;
    line-height: normal;
}

textarea {
    height: 90px;
    resize: none;
}

/* PHONE ROW */
.phone-row {
    display: flex;
    gap: 10px;
}

.phone-row select {
    width: 32%;
}

/* CHECKBOXES */
.checkbox {
    font-size: 13px;
    margin-bottom: 8px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-bottom: 0;
}

/* SUBMIT BUTTON */
.submit-btn {
    display: block;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
    padding: 12px;
    background: #0056b2;
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
    margin-bottom: -50px;
}




/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: white;
    border-radius: var(--radius);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-body {
    padding: 20px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Share Modal */
.share-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.share-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    border-radius: var(--radius);
    background-color: var(--bg-light);
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-option:hover {
    background-color: #e9ecef;
}

.share-icon {
    font-size: 2rem;
    color: var(--primary);
}

.mobile-config-badges {
    display: none;
}

.mobile-top-bar {
    display: none;
}

.mobile-project-info {
    display: none;
}

.bottom-sticky-bar {
    display: none;
}

.viewall-modal {
    background: #000000;
    color: #fff;
    padding: 25px 25px;
    height: 100%;
}

.modal-content.large-modal {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}

/* HEADER */
.vam-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.vam-header__left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.vam-title {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    margin-bottom: 2px;
}

.vam-price {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

.vam-header__actions {
    display: flex;
    gap: 8px;
}

.m-viewall-sticky {
    max-width: 80%;
    margin: 0 auto;
}

.vam-chip {
    display: flex;
    align-items: center;
    gap: 3px;
    border-radius: 4px;
    padding: 4px 11px;
    border: 1px solid #666666;
    background: #f2f3f8;
    color: #757575;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    min-width: 72px;
}

.vam-chip:hover {
    background-color: #5e53fe;
    color: #ffffff;
}

.vam-chip i,
.vam-chip span {
    transition: all 0.3s ease;
}

.vam-header__right {
    display: flex;
    align-items: center;
    gap: 30px;
}


.vam-progress {
    width: 125px;
    height: 4px;
    background: #e6e6e6;
    border-radius: 4px;
    overflow: hidden;
}

.vam-progress span {
    display: block;
    height: 100%;
    width: 0;
    background: #00c36a;
}

.vam-pagination {
    text-align: right;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}


.vam-contact-btn {
    background: #5e53fe;
    color: #000;
    border: none;
    border-radius: 2px;
    padding: 8px;
    color: #ffffff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.vam-contact-btn:hover {
    background: #483cf3;
}

/* TABS */
.vam-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vam-tab {
    background: transparent;
    border: 1px solid hsla(0, 0%, 100%, .6);
    border-radius: 24px;
    padding: 6px 12px;
    font-size: 12px;
    color: hsla(0, 0%, 100%, .6);
    cursor: pointer;
    font-weight: 400;
    transition: 0.2s ease;
}

.vam-tab.active {
    color: #ffffff;
    border-color: #ffffff;
}

/* CONTENT */
.vam-content {
    width: 100%;
    height: calc(100vh - 150px);
}

.vam-center-slider,
.vam-center-slider .slick-list,
.vam-center-slider .slick-track,
.vam-center-slider .vam-slide {
    height: 100%;
}

/* SLIDER */

.vam-slide {
    filter: brightness(0.4);
    margin: 0 10px;
    position: relative;
}

.vam-slide.slick-current {
    filter: none;
}

.vam-slide img,
.vam-slide video {
    width: 100%;
    height: 90%;
    object-fit: cover;
    cursor: pointer;
}

.vam-slide .tag {
    padding: 2px 8px;
    bottom: 80px;
    left: 30px;
    position: absolute;
    border-radius: 2px;
    font-size: 12px;
    background-color: rgba(30, 27, 36, .9);

}

.viewall-modal .vam-center-slider .slick-prev::before {
    content: "\f053";
}

/* NEXT ARROW ICON */
.viewall-modal .vam-center-slider .slick-next::before {
    content: "\f054";
    /* Font Awesome chevron-right */
}

/* PREV + NEXT ICON BASE */
.viewall-modal .vam-center-slider .slick-prev::before,
.viewall-modal .vam-center-slider .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 28px;
    color: #ffffff;
}

/* ARROW BUTTON STYLE */
.viewall-modal .vam-center-slider .slick-prev,
.viewall-modal .vam-center-slider .slick-next {
    background: none;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 0;
    /* hide default slick arrow text */
}

/* POSITIONING */
.viewall-modal .vam-center-slider .slick-next {
    right: 50px;
}

.viewall-modal .vam-center-slider .slick-prev {
    left: 50px;
}

/* Fullscreen dark overlay */
.vam-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(3px);
}

.vam-zoom {
    height: calc(100vh - 100px);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Fullscreen image */
.vam-modal-content {
    margin: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.3s ease;
}

/* Close button */
.viewall-modal .vam-close {
    color: #ffffff;
}

.vam-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    font-weight: normal;
    z-index: 9;
}

.sidebar-login-btn-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 18px;
}

@media (max-width: 991px) {
    .vam-header__right {
        display: none;
    }

    .vam-tabs {
        overflow-x: auto;
        scrollbar-width: none;
        flex-wrap: nowrap;
        align-items: center;
    }

    .vam-tab {
        white-space: nowrap;
    }

    .vam-slide {
        filter: none;
        margin-bottom: 15px;
    }

    .vam-slide img,
    .vam-slide video {
        height: auto;
    }

    .vam-header__left {
        gap: 20px;
    }

    .vam-header {
        padding-right: 0;
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .breadcrumb {
        display: none;
    }

    .download-brochure {
        display: none;
    }

    .overview-content {
        flex-direction: column;
        gap: 0;
    }

    .overview-content .column {
        width: 100%;
    }

    .details-wrap .details-right {
        max-width: 100%;
    }

    .hot-selling-section {
        margin-top: 50px;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .commute-map-banner {
        flex-wrap: wrap;
    }

    .map-info {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .map-cta {
        order: 3;
        display: flex;
        align-items: center;
        width: 50%;
        justify-content: flex-start
    }

    .map-thumb {
        order: 2;
        display: flex;
        align-items: center;
        width: 44%;
        justify-content: flex-end;
    }

    .map-thumb img {
        width: 56px;
        height: auto;
    }

    .project-header {
        display: none;
    }

    .hero-section {
        position: relative;
        border-radius: 0 0 24px 24px;
        overflow: hidden;
        margin: 0 -12px;
    }

    .mobile-config-badges {
        display: block;
        padding: 20px 0;
    }

    .config-badges {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .config-badge {
        font-size: 14px;
    }

    .config-badges>*:not(:last-child)::after {
        right: -14px;
    }

    .image-btn span {
        display: none;
    }

    .image-controls {
        margin: 0 auto;
    }

    .image-overlay {
        left: 0;
        margin: 0 auto;
        padding: 10px;
        bottom: 58px;
    }

    .project-logo {
        display: none;
    }

    .mobile-top-bar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    }

    .mobile-top-bar>div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .mobile-back-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #ffffff;
    }

    .mobile-project-logo {
        background: rgba(255, 255, 255, 0.9);
        border: none;
        border-radius: 50%;
        padding: 6px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .mobile-project-logo img {
        width: 100%;
        height: auto;
    }

    .mobile-right-actions {
        display: flex;
        gap: 8px;
    }

    .mobile-share-btn,
    .mobile-heart-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .mobile-share-btn i,
    .mobile-heart-btn i {
        color: #ffffff;
    }

    .mobile-project-info {
        display: block;
        position: absolute;
        width: fit-content;
        bottom: 20px;
        padding: 0 20px;
        z-index: 10;
        color: white;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .mobile-project-info .project-name {
        font-size: 15px;
        font-weight: 600;
        color: #ffffff;
    }

    .mobile-project-info .project-name span {
        font-size: 12px;
        font-weight: 400;
    }

    .mobile-project-info .project-location {
        font-size: 12px;
        font-weight: 400;
    }

    .bottom-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 12px;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
        z-index: 9;
    }

    /* COMMON BUTTON STYLE */
    .sticky-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 8px 18px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        border: none;
        cursor: pointer;
        white-space: nowrap;
    }

    /* SHARE BUTTON */
    .share-btn {
        background: #959595;
        color: #fff;
        width: 60px;
        height: 37px;
        padding: 0;
        font-size: 18px;
    }

    /* CONTACT US */
    .contact-btn {
        background: #0056b2;
        color: #fff;
    }

    /* WHATSAPP BUTTON */
    .whatsapp-btn {
        background: #16a26e;
        color: #fff;
    }

    .whatsapp-btn i {
        font-size: 18px;
    }

    .hot-slider .slick-list {
        margin-right: 0;
    }

    .pricing-table th.type {
        width: auto;
    }

    .pricing-table th.area {
        width: auto;
    }

    .pricing-table th.price {
        width: auto;
    }

    .masonry-sizer,
    .masonry-item {
        width: calc(33.333% - 12px);
    }

    .tabs-container.sticky {
        top: 46px;
        margin: 0 -12px;
        padding: 0 12px;
    }

    .viewall-modal {
        padding: 0;
    }

    .vam-header {
        padding: 20px 15px 0 15px;
    }

    .vam-tabs {
        margin: 15px;
    }

    .vam-price {
        margin-bottom: 0;
        font-size: 12px;
    }

    .vam-title {
        font-size: 14px;
    }

    .vam-chip {
        font-size: 10px;
        padding: 6px 12px;
    }

    .vam-tab {
        font-size: 12px;
        padding: 5px 14px;

    }

    .viewall-close {
        display: none;
    }

    .m-viewall-sticky {
        width: 100%;
        max-width: 100%;
        position: fixed;
        top: 0;
        z-index: 999;
        background: #000000;
    }

    .vam-content {
        margin-top: 118px;
        height: auto;
    }

    .vam-modal-content {
        width: 100%;
        height: 100%;
    }

    .vam-mobile-slider {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vam-mobile-slider img {
        width: 100%;
    }

    .vam-mobile-slider .slick-prev::before {
        content: "\f053";
    }

    /* NEXT ARROW ICON */
    .vam-mobile-slider .slick-next::before {
        content: "\f054";
        /* Font Awesome chevron-right */
    }

    /* PREV + NEXT ICON BASE */
    .vam-mobile-slider .slick-prev::before,
    .vam-mobile-slider .slick-next::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 20px;
        color: #ffffff;
    }

    /* ARROW BUTTON STYLE */
    .vam-mobile-slider .slick-prev,
    .vam-mobile-slider .slick-next {
        background: none;
        color: #ffffff;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: all 0.3s ease;
        font-size: 0;
        /* hide default slick arrow text */
    }

    /* POSITIONING */
    .vam-mobile-slider .slick-next {
        right: 25px;
    }

    .vam-mobile-slider .slick-prev {
        left: 25px;
    }


}



.detailsone .hero-section {
    height: 450px;
}

.detailsone {
    display: flex;
    gap: 30px;
}

.detailsone .hero-section {
    max-width: 70%;
    width: 100%;
}

.detailsone-right {
    max-width: 30%;
    width: 100%;
    box-sizing: border-box;
    color: #111827;
}

/* Top text */

.detailsone-right .id-line {
    font-size: 12px;
    color: #6d7070;
    margin-bottom: 4px;
}

.detailsone-right .title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 4px;
    color: #000000;
}

.detailsone-right .subtitle {
    font-size: 12px;
    color: #666666;
    margin-bottom: 8px;
}

/* Badges */

.detailsone-right .badges {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.detailsone-right .badge {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.detailsone-right .badge-verified {
    background: #009933;
}

.detailsone-right .badge-negotiable {
    background: #009933;
}

.detailsone-right .badge-urgent {
    background: #f26522;
}

/* Price / area section */

.detailsone-right .main-stats {
    display: flex;
    gap: 10px;
    padding: 5px 0;
    margin-bottom: 10px;
}

.detailsone-right .stat {
    text-align: left;
    position: relative;
}

.detailsone-right .stat-label {
    font-size: 13px;
    color: #666666;
}

.detailsone-right .stat-value {
    font-size: 23px;
    font-weight: bold;
    color: #000000;
    line-height: normal;
}

.detailsone-right .stat-value select {
    color: #000000;
    font-size: 15px;
    border: 0;
    font-weight: bold;
    position: relative;
    top: -2px;
    outline: none;
}

.detailsone-right .stat:nth-child(1) {
    width: 112px;
}

.detailsone-right .stat:nth-child(2) {
    width: 125px;
}

.detailsone-right .stat:nth-child(2=3) {
    width: 100px;
}

.stat:nth-child(2) .stat-value,
.stat:nth-child(3) .stat-value {
    color: #000000;
    font-size: 15px;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom,
            transparent 0%,
            #e0e0e0 15%,
            #e0e0e0 85%,
            transparent 100%);
}

/* Features list */

.detailsone-right .features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.detailsone-right .feature {
    font-size: 14px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detailsone-right .feature img {
    width: 18px;
    height: auto;
}

/* Contact button */

.detailsone-right .contact-btn {
    max-width: 300px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 12px 0;
    background: #0056b2;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.detailsone-right .contact-btn:hover {
    background: #5e53fe;
}

.detailsone__actions {
    position: absolute;
    display: flex;
    gap: 8px;
    top: 15px;
    right: 15px;
}

.detailsone__action-btn {
    border: 0;
    border-radius: 4px;
    padding: 4px 11px;
    background: #ffffff;
    color: #333333;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 82px;
}

.detailsone__action-btn:hover {
    background-color: #5e53fe;
    color: #ffffff;
}

.detailsone__action-btn i,
.detailsone__action-btn span {
    transition: all 0.25s ease;
}

.detailsone .image-overlay {
    justify-content: center;
    width: 100%;
}

.detailsone-hero-slider {
    margin-bottom: 0 !important;
    height: 100%;
}

.detailsone-hero-slider .slick-list,
.detailsone-hero-slider .slick-track {
    height: 100%;
}

.detailsone-hero-slider .slick-arrow {
    background: #888b91;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.detailsone-hero-slider .slick-prev {
    left: 20px;
}

.detailsone-hero-slider .slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    opacity: 1;
}

.detailsone-hero-slider .slick-next {
    right: 20px;
}

.detailsone-hero-slider .slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 18px;
    opacity: 1;
}

.detailsone-hero-slider .slick-arrow.slick-disabled {
    display: none !important;
}

.contact-title1 span {
    font-size: 14px;
    color: #000;
    font-family: 'inter';
    font-weight: 600;
}

.plan-slider1 .slide {
    position: relative;
}

/* Plus icon overlay */
.plan-slider1 .zoom-icon {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.plan-slider1 .slick-arrow {
    background: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.plan-slider1 .slick-prev {
    left: 20px;
}

.plan-slider1 .slick-prev:before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 24px;
    opacity: 1;
}

.plan-slider1 .slick-next {
    right: 20px;
}

.plan-slider1 .slick-next:before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    font-size: 24px;
    opacity: 1;
}

.plan-slider1 .slick-arrow.slick-disabled {
    display: none !important;
}

/* Gallery */
.gallery {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 per row */
    gap: 14px;
}

/* Card */
.card {
    position: relative;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: #ddd;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay common */
.overlay {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Play icon */
.overlay.play {
    font-size: 20px;
    border-radius: 50%;
}

.breadcrumb1 {
    margin-bottom: 10px;
}

/* Desktop */
@media (min-width: 768px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
        /* Desktop: 4 per row */
    }

    .card {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .detailsone {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 -12px;
        gap: 15px;
    }

    .detailsone-right {
        padding: 0 12px;
    }

    .detailsone-right,
    .detailsone .hero-section {
        max-width: 100%;
    }

    .detailsone-right .contact-btn {
        display: none;
    }

    .detailsone .image-overlay {
        bottom: 0;
    }

    .detailsone-right .main-stats {
        border-bottom: 1px solid #cccccc;
        padding-bottom: 10px;
    }

    .plan-slider1 .slide img {
        width: 100%;
    }
}

@media (max-width: 374px) {


    .stat:not(:last-child)::after {
        right: -2px;
    }

    .detailsone-right .stat-value {
        font-size: 20px;
    }

    .detailsone-right .stat:nth-child(1) {
        width: 90px;
    }

    .detailsone-right .stat:nth-child(2) {
        width: 109px;
    }
}

/* Custom Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #374151;
}

.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.modal-badges .badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.modal-badges .badge:first-child {
    background-color: #3b82f6;
    color: white;
}

.modal-badges .badge:last-child {
    background-color: #06b6d4;
    color: white;
}