    
        /* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Property Info Section - unified margins for all sections */
.property-info {
 max-width:100%;
    margin: 0 auto;
    /*background: #f5f5f5;*/
    padding: 10px 10px;
    padding-bottom: 15px;
}

/* Same horizontal margin for overview and all sections (sections are inside .property-info) */
.property-info .overview-card,
.property-info .key-highlights-section,
.property-info .nearby-section,
.property-info .property-description-section,
.property-info .flat-plans-section,
.property-info .floor-plans-section,
.property-info .faq-section,
.property-info .contact-property-section,
.property-info .reviews-section,
.property-info .similar-properties-section,
.property-info .owner-properties-section,
.property-info .high-demand-section,
.property-info .handicapped-section,
.property-info .agent-section {
    margin-left: 0;
    margin-right: 0;
}

/* Overview Section - Premium Card */
.overview-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 20px !important;
    margin-top: 0;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.overview-header {
    margin-bottom: 8px;
}

.overview-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.fav-btn-new.active i {
    color: red;
}
.overview-logo {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    box-shadow: 0 2px 8px rgba(255,193,7,0.3);
}

.overview-title-block {
    flex: 1;
    min-width: 0;
}

.overview-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.2;
}

.overview-location {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.overview-location i {
    color: #999;
    font-size: 12px;
}

.overview-share {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #2196F3;
    transition: background 0.2s;
}

.overview-share:hover {
    background: #E3F2FD;
}

.overview-rera {
 /*   margin-top: 10px;*/
}

.overview-card .rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #1976D2;
    background: #E3F2FD;
    padding: 6px 12px;
    border-radius: 8px;
}

.overview-card .rera-badge i {
    color: #1976D2;
}

.overview-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.overview-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.overview-specs {
    display: flex;
    align-items: center;
    gap: 16px;
}

.overview-specs span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.overview-specs i {
    color: #999;
    font-size: 12px;
}

.overview-map-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #2196F3;
    font-size: 13px;
    font-weight: 500;
}

.overview-map-link .map-pin {
    color: #e74c3c;
    font-size: 16px;
}

.overview-map-link span {
    text-decoration: underline;
}

.overview-agent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.overview-agent {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overview-agent-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-agent-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.overview-agent-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.overview-agent-badge {
    font-size: 12px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 4px;
}

.overview-agent-badge i {
    font-size: 11px;
}

.overview-read-more {
    padding: 12px 20px;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.overview-read-more:hover {
    background: #1976D2;
}

.tab-navigation {
    display: flex;
    border-bottom: 2px solid #eee;
    position: sticky;
    top: 62px;
    background: #fff;
    z-index: 50;
   /* margin: 0 -16px;
    padding: 0 16px;*/
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-btn.active {
    color: white;
    font-weight: 600;
    background: #C41E3A;
    border-radius: 8px;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: #2196F3;
}

.new-badge {
    background: #4CAF50;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
}

/* Find your right section - full white background */
.find-your-right-section {
    background: #fff !important;
}




/* Animation for section highlight */
@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(33, 150, 243, 0.1); }
    100% { background-color: transparent; }
}

.gallery-section.highlight {
    animation: highlight 0.5s ease;
}

/* Swipe indicator for mobile */
.swipe-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.swipe-indicator i {
    animation: swipe 1.5s infinite;
}

@keyframes swipe {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Hide swipe indicator on desktop */
@media (min-width: 768px) {
    .swipe-indicator {
        display: none;
    }
}




/* ==================== */
/* FAQ SECTION */
/* ==================== */
.faq-section {
    padding: 28px 0;
   
}

.faq-section .section-header h3 i {
    color: #C41E3A;
}

.read-more-btn {
    padding: 8px 16px;
    background: transparent;
    color: #C41E3A;
    border: 1px solid #C41E3A;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.read-more-btn:hover {
    background: #E3F2FD;
}

.faq-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.faq-slider::-webkit-scrollbar {
    display: none;
}

.faq-card {
    flex-shrink: 0;
    width: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: #E3F2FD;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.faq-icon i {
    color: #C41E3A;
    font-size: 18px;
}

.faq-card h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* ==================== */
/* FAQ POPUP */
/* ==================== */
.faq-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.faq-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.faq-popup {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.faq-popup-overlay.active .faq-popup {
    transform: translateY(0);
}

.faq-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

.faq-popup-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-faq-popup {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.faq-popup-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    border-color: #C41E3A;
    box-shadow: 0 2px 8px rgba(33,150,243,0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex: 1;
    padding-right: 12px;
}

.faq-question i {
    color: #999;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #C41E3A;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 16px 16px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* Desktop styles for popups */
@media (min-width: 768px) {
    .review-popup-overlay,
    .faq-popup-overlay {
        align-items: center;
    }

    .review-popup,
    .faq-popup {
        border-radius: 20px;
        max-height: 80vh;
    }

    .review-card {
        width: 320px;
    }

    .faq-card {
        width: 240px;
    }
}

/* ==================== */
/* CONTACT PROPERTY SECTION */
/* ==================== */
.contact-property-section {
    padding: 32px 0;
   
}

.contact-property-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-height: 220px;
}

.contact-property-image {
    position: absolute;
    inset: 0;
}

.contact-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.85) 0%, rgba(25, 118, 210, 0.9) 100%);
}

.contact-property-content {
    position: relative;
    padding: 36px 24px;
    color: #fff;
    text-align: center;
}

.contact-property-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.contact-property-content p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 20px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.contact-property-btn {
    padding: 14px 28px;
    background: #fff;
    color: #1976D2;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-property-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* ==================== */
/* CONTACT FORM POPUP */
/* ==================== */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.contact-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-popup {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-popup-overlay.active .contact-popup {
    transform: translateY(0);
}

.contact-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: #fff;
}

.contact-popup-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-contact-popup {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
}

.close-contact-popup:hover {
    background: rgba(255,255,255,0.3);
}

.contact-popup-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
}

.contact-popup-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.contact-form .contact-input-group {
    margin-bottom: 18px;
}

.contact-form .contact-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.contact-form .contact-input-group input,
.contact-form .contact-input-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.contact-form .contact-input-group input:focus,
.contact-form .contact-input-group textarea:focus {
    border-color: #2196F3;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #2196F3;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    transition: all 0.2s;
}

.contact-submit-btn:hover {
    background: #1976D2;
}

/* Plan Details Popup (Plot Flat - like shared image: blue header, X close, image, Room Dimensions) */
.plan-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.plan-details-overlay.active {
    opacity: 1;
    visibility: visible;
}

.plan-details-popup {
    background: #fff;
    width: 100%;
    max-width: 560px;
    max-height: 95vh;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.plan-details-overlay.active .plan-details-popup {
    transform: scale(1);
}

.plan-details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #1976D2;
    color: #fff;
}

.plan-details-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.close-plan-details {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.2s, color 0.2s;
}

.close-plan-details:hover {
    background: #f5f5f5;
    color: #333;
}

.plan-details-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #fff;
}

.plan-details-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f5f5f5;
}

.plan-details-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 280px;
    object-fit: cover;
}

.plan-details-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-details-rooms h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #333;
}

.plan-details-rooms ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.plan-details-rooms li {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-details-rooms li:last-child {
    border-bottom: none;
}

.plan-details-rooms li span {
    font-weight: 700;
    color: #1976D2;
    min-width: 32px;
}

/* ==================== */
/* UNITS & FLOOR PLANS POPUP */
/* ==================== */
.units-floor-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.units-floor-overlay.active {
    opacity: 1;
    visibility: visible;
}

.units-floor-popup {
    max-width: 560px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.units-floor-header {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.units-floor-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-right: 12px;
    color: #333;
    transition: background 0.2s;
}

.units-floor-back:hover {
    background: #eee;
}

.units-floor-header h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.units-floor-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.units-floor-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.units-floor-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.units-floor-dropdown-wrap {
    position: relative;
}

.units-floor-dropdown {
    appearance: none;
    -webkit-appearance: none;
    padding: 10px 36px 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fff;
    cursor: pointer;
    min-width: 120px;
}

.units-floor-dropdown-wrap .dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 12px;
}

.units-size-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.units-size-tab {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.units-size-tab:hover {
    border-color: #2196F3;
    color: #2196F3;
}

.units-size-tab.active {
    border-color: #4CAF50;
    background: #E8F5E9;
    color: #2E7D32;
}

.units-size-tab.active i {
    color: #4CAF50;
}

.units-floor-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.units-floor-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 4/3;
}

.units-floor-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.units-img-label {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
}

.units-details {
    margin-bottom: 24px;
}

.units-details-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.units-details-icons span {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.units-details-icons i {
    color: #666;
}

.units-details-table {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.units-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.units-detail-row:last-child {
    border-bottom: none;
}

.units-detail-label {
    font-size: 13px;
    color: #666;
}

.units-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.units-price {
    color: #2196F3;
}

.units-similar-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.units-similar-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.units-similar-slider::-webkit-scrollbar {
    display: none;
}

.units-similar-card {
    flex-shrink: 0;
    width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.units-similar-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.units-similar-img {
    height: 100px;
    overflow: hidden;
}

.units-similar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.units-similar-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.units-similar-info strong {
    font-size: 13px;
    color: #333;
}

.units-similar-info span {
    font-size: 11px;
    color: #999;
}

@media (min-width: 768px) {
    .contact-popup-overlay {
        align-items: center;
    }
    .contact-popup {
        border-radius: 20px;
        max-height: 85vh;
    }
    .contact-property-inner {
        min-height: 280px;
    }
    .contact-property-content h3 {
        font-size: 26px;
    }
    .contact-property-content p {
        font-size: 16px;
    }
}



/* ==================== */
/* KEY HIGHLIGHTS SECTION */
/* ==================== */
.key-highlights-section {
    padding: 28px 0;
   
}

.key-highlights-section .section-header h3 i {
    color: #FF9800;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
     padding-left:5px;
    padding-right:5px;
}

.highlight-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    transition: all 0.2s;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.highlight-icon i {
    color: #2196F3;
    font-size: 16px;
}

.highlight-info {
    display: flex;
    flex-direction: column;
}

.highlight-value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.highlight-label {
    font-size: 10px;
    color: #999;
}

/* ==================== */
/* PROPERTY DETAILS SECTION */
/* ==================== */
.property-description-section {
    padding: 28px 0;
  /* */
}

.property-description-section .section-header h3 i {
    color: #4CAF50;
}

.details-grid {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row:nth-child(even) {
    background: #fff;
}

.detail-label {
    font-size: 13px;
    color: #666;
}

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: right;
}

.status-badge {
    background: #FFF3E0;
    color: #FF9800;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
}

/* ==================== */
/* FLAT PLANS SECTION */
/* ==================== */


.flat-plans-section .section-header h3 i {
    color: #9C27B0;
}

.view-all-btn {
    padding: 8px 16px;
    background: transparent;
    color: #2196F3;
    border: 1px solid #2196F3;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.view-all-btn:hover {
    background: #E3F2FD;
}

.plans-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.plans-slider::-webkit-scrollbar {
    display: none;
}

.plan-card {
    flex-shrink: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.plan-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.plan-image {
    position: relative;
    height: 130px;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plan-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #2196F3;
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.plan-badge.best {
    background: #4CAF50;
}

.plan-badge.premium {
    background: #9C27B0;
}

.plan-info {
    padding: 12px;
}

.plan-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.plan-specs span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-specs i {
    color: #999;
    font-size: 10px;
}

.plan-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-price .price {
    font-size: 16px;
    font-weight: 700;
    color: #C41E3A;
}

.plan-price .emi {
    font-size: 13px;
    color: #999;
}



/* ==================== */
/* FLOOR PLANS SECTION */
/* ==================== */
.floor-plans-section {
    padding: 28px 0;
   
}

.floor-plans-section .section-header h3 i {
    color: #00BCD4;
}

.floor-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 0 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
}

.floor-slider::-webkit-scrollbar {
    display: none;
}

.floor-card {
    flex-shrink: 0;
    width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.floor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.floor-image {
    position: relative;
    height: 120px;
}

.floor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.floor-card:hover .floor-overlay {
    opacity: 1;
}

.floor-overlay i {
    color: #fff;
    font-size: 24px;
}

.floor-info {
    padding: 10px;
}

.floor-info h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.floor-info span {
    font-size: 10px;
    color: #999;
}

.floor-info .card-actions {
    flex-wrap: wrap;
}



/* FAQ card Read more button */
.faq-card-read-more {
    margin-top: 12px;
    padding: 8px 14px;
    background: transparent;
    color: #C41E3A;
    border: 1px solid #C41E3A;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
   /* width: 100%;*/
    justify-content: center;
    transition: all 0.2s;
}

.faq-card-read-more:hover {
    background: #E3F2FD;
}

/* ==================== */
/* NEARBY LOCATIONS SECTION */
/* ==================== */
.nearby-section {
    padding: 28px 0;
   
}

.nearby-section .section-header h3 i {
    color: #E91E63;
}

.nearby-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.nearby-tabs::-webkit-scrollbar {
    display: none;
}

.nearby-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    background: #f5f5f5;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.nearby-tab:hover {
    background: #e0e0e0;
}

.nearby-tab.active {
    background: #333;
    color: #fff;
}

.nearby-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nearby-list.hidden {
    display: none;
}

.nearby-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 12px;
}

.nearby-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nearby-icon i {
    font-size: 18px;
    color: #fff;
}

.nearby-icon.transit {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.nearby-icon.education {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.nearby-icon.healthcare {
    background: linear-gradient(135deg, #F44336, #D32F2F);
}

.nearby-icon.shopping {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.nearby-info {
    flex: 1;
}

.nearby-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.nearby-info span {
    font-size: 12px;
    color: #999;
}


/* Responsive for highlights grid and section actions */
@media (max-width: 375px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-item {
        padding: 10px 6px;
    }
    
    .highlight-icon {
        width: 36px;
        height: 36px;
    }
    
    .highlight-value {
        font-size: 12px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-actions {
        width: 100%;
    }
    
   
}

 


/* ===== MAIN SECTION CARD STYLE ===== */




/* subtle hover (optional premium feel) */
.content-section:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* ===== HEADER IMPROVEMENT ===== */
.section-header {
    margin-bottom: 8px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2d3d;
}

.section-subtitle {
    font-size: 12px;
    color: #8a94a6;
}

/* ===== OVERVIEW CARD SPECIAL ===== */
.overview-card {
    margin: 10px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== TABS STICKY PREMIUM ===== */
.tab-navigation {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===== TAB BUTTON ===== */
.tab-btn {
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    background: #f1f3f7;
    border: none;
    color: #555;
    transition: 0.3s;
}

.tab-btn.active {
    background: #0066ff;
    color: #fff;
}

/* ===== CARDS INSIDE SECTION ===== */
.plan-card,
.property-card,
.review-card,
.faq-card {
    border: none;
box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

/* ===== SLIDER GAP ===== */
.slider-container {
    gap: 12px;
}

/* ===== NEARBY ITEMS ===== */
.nearby-item {
    background: #f9fafc;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
}

/* ===== AMENITIES BOX ===== */
.amenity-box {
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
}


/* ===== HERO FIX (FULL WIDTH NO GAP) ===== */
.hero-section {
    margin-bottom: 8px;
}

/* ===== REMOVE EDGE TOUCH ===== */
.property-info {
    padding-bottom: 10px;
}



/* mobile optimization */
@media (max-width: 480px) {
    .budget-select {
        padding: 8px 6px;
        font-size: 12px;
    }

    .budget-to {
        font-size: 12px;
    }
}
         
    
  

/* SECTION BACKGROUND */
.amenities-section {
    background: #f9fafc;
    /*padding: 60px 20px;*/
    font-family: 'Segoe UI', sans-serif;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0px;
    position: relative;
}

/*.section-title:after {
    content: "";
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #caa64b, #f5e6b3);
    display: block;
    margin: 10px auto 0;
    border-radius: 10px;
}*/

/* AMENITIES GRID */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
    gap: 10px;
    padding-left:5px;
    padding-right:5px;
}

/* AMENITY BOX */
.amenity-box {
    background: white;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.amenity-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(202,166,75,0.25);
    border-color: #caa64b;
}

.amenity-box i {
    font-size: 28px;
    color: #caa64b;
    margin-bottom: 10px;
}

.amenity-box h4 {
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* RULES SECTION */
.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rules-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

.rules-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #2c2c2c;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* RULE LIST */
.rules-list {
    list-style: none;
    padding: 0;
}

.rules-list li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.rules-list li i {
    margin-right: 10px;
    font-size: 14px;
}

/* Allowed */
.allowed i {
    color: #28a745;
}

/* Not Allowed */
.not-allowed i {
    color: #dc3545;
}

/* Responsive */
@media(max-width:768px){
    .amenity-box {
        padding: 10px 10px;
    }
}


            .mps {
            width: 100%;
            height: 350px;
            border: 0;
        }
     
     
   


.other-properties-column a {
    font-size: 13px;
    color: #555;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hdng{
    padding-left: 10px !important;
     padding-top: 10px !important;
}



    .faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active i {
    transform: rotate(180deg);
}

.property-filter {
    margin-bottom: 15px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 8px 13px;
    border: 2px solid #C41E3A;
    border-radius: 8px;
    background: #fff;
    color: #C41E3A;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-right: 5px;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: #C41E3A;
    color: #fff;
}

.filter-btn:hover {
    background: #fef2f2;
}

.filter-btn.active:hover {
    background: #8B1538;
    border-color: #8B1538;
}


.units-size-tab.hidden {
    display: none !important;
}


   #plotOverlay,
#unitsFloorOverlay {
    display: none;
}

#plotOverlay.active,
#unitsFloorOverlay.active {
    display: flex;
}

