/* ============================================
   OVERVIEW SECTION
   ============================================ */
#property-overview-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
}

#property-overview-wrap .block-wrap {
    padding: 0 0 30px 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Full Width with Gradient & Animation */
#property-overview-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 24px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
    justify-content: flex-start !important;
}

/* Animated gradient overlay on header */
#property-overview-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-overview-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-overview-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    transition: letter-spacing 0.3s ease;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-overview-wrap .block-title-wrap:hover h2 {
    letter-spacing: 0px;
}

/* Accent line with pulse animation - LEFT SIDE */
#property-overview-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scaleY(1);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scaleY(1.1);
    }
}

/* Overview Data Container */
#property-overview-wrap .property-overview-data {
    width: 100% !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 30px 40px;
}

#property-overview-wrap .property-overview-data .row {
    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    gap: 8px !important;
    margin: 0 !important;
}

/* Individual Cards - Enhanced Design */
#property-overview-wrap .property-overview-data .col {
    flex: 1 1 calc(20% - 7px) !important;
    min-width: calc(20% - 7px) !important;
    text-align: center !important;
    padding: 10px 8px !important;
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%) !important;
    border-radius: 6px !important;
    border: 1px solid #e9ecef !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

/* Staggered animation for cards */
#property-overview-wrap .property-overview-data .col:nth-child(1) { animation-delay: 0.1s; }
#property-overview-wrap .property-overview-data .col:nth-child(2) { animation-delay: 0.15s; }
#property-overview-wrap .property-overview-data .col:nth-child(3) { animation-delay: 0.2s; }
#property-overview-wrap .property-overview-data .col:nth-child(4) { animation-delay: 0.25s; }
#property-overview-wrap .property-overview-data .col:nth-child(5) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shimmer effect on card hover */
#property-overview-wrap .property-overview-data .col::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.5s ease;
}

#property-overview-wrap .property-overview-data .col:hover::before {
    left: 100%;
}

#property-overview-wrap .property-overview-data .col:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%) !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-4px) scale(1.02) !important;
}

/* Empty state styling */
#property-overview-wrap .property-overview-data .col:empty {
    display: none !important;
}

/* Values */
#property-overview-wrap .property-overview-item {
    margin-bottom: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    transition: transform 0.2s ease;
}

#property-overview-wrap .property-overview-data .col:hover .property-overview-item {
    transform: scale(1.05);
}

/* Labels */
#property-overview-wrap .hz-meta-label {
    font-size: 9px !important;
    color: #6c757d !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
    text-align: center !important;
    transition: color 0.2s ease;
}

#property-overview-wrap .property-overview-data .col:hover .hz-meta-label {
    color: #1a1a1a !important;
}

#property-overview-wrap .property-overview-item strong {
    font-weight: 700 !important;
    color: #2c3e50 !important;
    text-align: center !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
}

/* Hide icons */
#property-overview-wrap .property-overview-item i {
    display: none !important;
}

/* Center all content */
#property-overview-wrap .property-overview-data .col > * {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Building Link - Special Enhanced Styling */
#property-overview-wrap .property-overview-data a {
    flex: 1 1 calc(20% - 7px) !important;
    min-width: calc(20% - 7px) !important;
    text-align: center !important;
    padding: 10px 8px !important;
    background: linear-gradient(145deg, #f1f3f5 0%, #e9ecef 100%) !important;
    border-radius: 6px !important;
    border: 2px solid #dee2e6 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-decoration: none !important;
    color: inherit !important;
    box-sizing: border-box !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.3s forwards;
}

#property-overview-wrap .property-overview-data a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.5s ease;
}

#property-overview-wrap .property-overview-data a:hover::before {
    left: 100%;
}

#property-overview-wrap .property-overview-data a:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%) !important;
    border-color: #1a1a1a !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
    transform: translateY(-4px) scale(1.03) !important;
}

#property-overview-wrap .property-overview-data a:hover::after {
    opacity: 0.6;
    transform: scale(1.2);
}

#property-overview-wrap .property-overview-data a ul {
    flex: 1 !important;
    width: 100% !important;
    position: relative;
    z-index: 1;
}

/* Fix long building names */
#property-overview-wrap .property-overview-data a .property-overview-item strong {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.3 !important;
    max-width: 100% !important;
}

/* Responsive flex adjustments for overview */
#property-overview-wrap .property-overview-data .col:only-child,
#property-overview-wrap .property-overview-data a:only-child {
    flex: 1 1 100% !important;
    min-width: auto !important;
}

#property-overview-wrap .property-overview-data .col:nth-child(1):nth-last-child(2),
#property-overview-wrap .property-overview-data .col:nth-child(2):nth-last-child(1),
#property-overview-wrap .property-overview-data a:nth-child(1):nth-last-child(2),
#property-overview-wrap .property-overview-data a:nth-child(2):nth-last-child(1) {
    flex: 1 1 calc(50% - 4px) !important;
}

#property-overview-wrap .property-overview-data .col:nth-child(1):nth-last-child(3),
#property-overview-wrap .property-overview-data .col:nth-child(2):nth-last-child(2),
#property-overview-wrap .property-overview-data .col:nth-child(3):nth-last-child(1),
#property-overview-wrap .property-overview-data a:nth-child(1):nth-last-child(3),
#property-overview-wrap .property-overview-data a:nth-child(2):nth-last-child(2),
#property-overview-wrap .property-overview-data a:nth-child(3):nth-last-child(1) {
    flex: 1 1 calc(33.333% - 5px) !important;
}

#property-overview-wrap .property-overview-data .col:nth-child(1):nth-last-child(4),
#property-overview-wrap .property-overview-data .col:nth-child(2):nth-last-child(3),
#property-overview-wrap .property-overview-data .col:nth-child(3):nth-last-child(2),
#property-overview-wrap .property-overview-data .col:nth-child(4):nth-last-child(1),
#property-overview-wrap .property-overview-data a:nth-child(1):nth-last-child(4),
#property-overview-wrap .property-overview-data a:nth-child(2):nth-last-child(3),
#property-overview-wrap .property-overview-data a:nth-child(3):nth-last-child(2),
#property-overview-wrap .property-overview-data a:nth-child(4):nth-last-child(1) {
    flex: 1 1 calc(25% - 6px) !important;
}

/* Override Bootstrap */
#property-overview-wrap .row-cols-sm-2,
#property-overview-wrap .row-cols-md-5 {
    margin-left: 0;
    margin-right: 0;
}

#property-overview-wrap .g-4 {
    gap: 0 !important;
}


/* ============================================
   DESCRIPTION SECTION - ENHANCED DESIGN
   ============================================ */

#property-description-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
}

#property-description-wrap .block-wrap {
    padding: 0 0 40px 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Matching Overview Style */
#property-description-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#property-description-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-description-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-description-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
}

#property-description-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area */
#property-description-wrap .block-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* List Styling - Modern Cards */
#property-description-wrap .hzele-property-content-wrap ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
}

#property-description-wrap .hzele-property-content-wrap ul li {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-left: 4px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

/* Staggered animation */
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(1) { animation-delay: 0.05s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(2) { animation-delay: 0.1s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(3) { animation-delay: 0.15s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(4) { animation-delay: 0.2s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(5) { animation-delay: 0.25s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(6) { animation-delay: 0.3s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(7) { animation-delay: 0.35s; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(8) { animation-delay: 0.4s; }

/* Shimmer on hover */
#property-description-wrap .hzele-property-content-wrap ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-description-wrap .hzele-property-content-wrap ul li:hover::before {
    left: 100%;
}

#property-description-wrap .hzele-property-content-wrap ul li:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-left-color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

/* Paragraph styling */
#property-description-wrap .hzele-property-content-wrap ul li p {
    margin: 0 !important;
    line-height: 1.6;
    font-size: 14px;
    color: #4a5568;
    position: relative;
    z-index: 1;
}

/* Strong (labels) styling */
#property-description-wrap .hzele-property-content-wrap ul li strong {
    display: inline-block;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #1a1a1a !important;
    margin-right: 6px;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

#property-description-wrap .hzele-property-content-wrap ul li:hover strong {
    border-bottom-color: #1a1a1a;
}

/* Add icons based on content */
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(1)::after { content: '🏗️'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(2)::after { content: '🏢'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(3)::after { content: '📐'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(4)::after { content: '✓'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(5)::after { content: '📍'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(6)::after { content: '🎯'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(7)::after { content: '🚗'; }
#property-description-wrap .hzele-property-content-wrap ul li:nth-child(8)::after { content: '👥'; }

#property-description-wrap .hzele-property-content-wrap ul li::after {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 16px;
    opacity: 0.2;
    transition: all 0.3s ease;
    z-index: 0;
}

#property-description-wrap .hzele-property-content-wrap ul li:hover::after {
    opacity: 0.4;
    transform: scale(1.1);
}

/* Plain paragraph description text - the enhanced list treatment above only
   fires when the description is actually formatted as a bullet list; plain
   <p> content (the common case) had no styling of its own and rendered as
   bare browser-default text. */
#property-description-wrap .hzele-property-content-wrap > p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 16px 0;
}

#property-description-wrap .hzele-property-content-wrap > p:last-child {
    margin-bottom: 0;
}

/* "Property Documents" subheading - the same sub-section-header treatment
   Details' "Additional Details" subheader uses (rounded bar, left accent
   border), distinguishing it from the page-level "Description" header
   above it. Chains both classes for higher specificity than the shared
   .block-title-wrap rule further up (which is sized/spaced for an h2, not
   this h3) rather than relying on being declared later in the file. */
#property-description-wrap .block-title-wrap.block-title-property-doc {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 14px 20px;
    margin: 30px 0 16px 0 !important;
    border-radius: 6px;
    border-left: 4px solid #1a1a1a;
    border-bottom: none;
}

#property-description-wrap .block-title-property-doc h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    letter-spacing: -0.3px;
    text-align: left !important;
}

/* Property Documents list - each attached file gets the same gradient-card
   hover treatment as the Details/Features list items elsewhere on this
   page, plus a proper pill-style Download button instead of a bare text
   link with no visual weight. */
#property-description-wrap .property-documents {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 14px 18px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#property-description-wrap .property-documents + .property-documents {
    margin-top: 10px !important;
}

#property-description-wrap .property-documents:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

#property-description-wrap .property-document-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
}

#property-description-wrap .property-document-title .houzez-icon {
    color: #1a1a1a;
    opacity: 0.6;
    font-size: 16px;
}

#property-description-wrap .property-document-link a {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.25s ease;
}

#property-description-wrap .property-document-link a:hover {
    background: #000000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

#property-description-wrap .property-document-link a .houzez-icon {
    font-size: 12px;
}


/* ============================================
   DETAILS SECTION - ENHANCED DESIGN
   ============================================ */

/* width:100% (not just max-width) at every level of this chain: measuring
   in DevTools showed the widget itself gets 486.5px, but .detail-wrap
   renders at only 248px - too big a drop to be explained by any padding
   here, meaning something in Houzez's own base CSS sets a fixed `width`
   (not max-width) on one of these classes, likely left over from when
   this widget could be placed in a narrow sidebar. A `max-width` can't
   override an explicit `width`, so every level gets width:100% forced. */
#property-detail-wrap {
    padding: 0 !important;
    max-width: 1400px;
    width: 100% !important;
    margin: 0 auto;
}

#property-detail-wrap .block-wrap {
    padding: 0 0 40px 0 !important;
    max-width: none !important;
    width: 100% !important;
    background: transparent !important;
}

/* Main Header - Matching Overview Style */
#property-detail-wrap .block-title-wrap:first-child {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#property-detail-wrap .block-title-wrap:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-detail-wrap .block-title-wrap:first-child:hover::before {
    left: 100%;
}

#property-detail-wrap .block-title-wrap:first-child h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-detail-wrap .block-title-wrap:first-child h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area */
#property-detail-wrap .block-content-wrap {
    max-width: 1200px;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 40px;
}

#property-detail-wrap .detail-wrap {
    width: 100% !important;
}

/* Detail Items - Two Column Grid with Full Width Fields */

/* Estate's regular Details/What's Nearby widgets (elementor-element-640365b0
   etc.) have a raw `.detail-wrap { border-style: solid; }` rule from
   Elementor's own per-widget Custom CSS panel on that template (not part of
   this stylesheet, so it can't be edited directly) - neutralize it here so
   Estate and Building/Mall share identical, borderless spacing. */
#property-detail-wrap .detail-wrap {
    border: none !important;
}

#property-detail-wrap .detail-wrap ul.list-lined {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 40px 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

#property-detail-wrap .detail-wrap ul.list-lined li {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Label on top (centered), value below - Building/Mall's own per-widget
   Custom CSS (elementor-element-803c9ee/0577391 etc.) forces a left/right
   row layout with !important on `strong`/`span`, so every property here
   that needs to win against that also carries !important - this selector
   already outranks it on specificity (ID beats their class-only selector)
   once importance is matched. */
#property-detail-wrap .detail-wrap .list-lined-item {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 14px 18px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 4px !important;
}

/* Staggered animation */
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(1) .list-lined-item { animation-delay: 0.05s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(2) .list-lined-item { animation-delay: 0.1s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(3) .list-lined-item { animation-delay: 0.15s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(4) .list-lined-item { animation-delay: 0.2s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(5) .list-lined-item { animation-delay: 0.25s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(6) .list-lined-item { animation-delay: 0.3s; }
#property-detail-wrap .detail-wrap ul.list-lined li:nth-child(7) .list-lined-item { animation-delay: 0.35s; }

/* Shimmer effect */
#property-detail-wrap .detail-wrap .list-lined-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-detail-wrap .detail-wrap .list-lined-item:hover::before {
    left: 100%;
}

#property-detail-wrap .detail-wrap .list-lined-item:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Label - centered on top */
#property-detail-wrap .detail-wrap .list-lined-item strong {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    position: relative;
    z-index: 1;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
}

/* Value - below the label */
#property-detail-wrap .detail-wrap .list-lined-item span {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    text-align: center !important;
    position: relative;
    z-index: 1;
    flex: 0 0 auto !important;
    width: 100% !important;
}

/* Additional Details Subheader */
#property-detail-wrap .block-title-wrap:not(:first-child) {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 14px 20px;
    margin: 0 0 20px 0 !important;
    border-radius: 6px;
    border-left: 4px solid #1a1a1a;
    position: relative;
}

#property-detail-wrap .block-title-wrap:not(:first-child) h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
    letter-spacing: -0.3px;
    text-align: left !important;
}

/* Additional Details Items */
#property-detail-wrap .additional-details-ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

#property-detail-wrap .additional-details-ul li {
    padding: 0 !important;
    margin: 0 0 12px 0 !important;
    width: 100% !important;
}

#property-detail-wrap .additional-details-ul .list-lined-item {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #e9ecef;
    padding: 18px 20px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.4s forwards;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100% !important;
}

#property-detail-wrap .additional-details-ul .list-lined-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-detail-wrap .additional-details-ul .list-lined-item:hover::before {
    left: 100%;
}

#property-detail-wrap .additional-details-ul .list-lined-item:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-left-color: #1a1a1a;
    border-color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Additional details label */
#property-detail-wrap .additional-details-ul .list-lined-item strong {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    max-width: 100%;
    text-align: left !important;
}

/* Additional details value */
#property-detail-wrap .additional-details-ul .list-lined-item span {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #4a5568 !important;
    line-height: 1.7;
    text-align: left !important;
    display: block;
    position: relative;
    z-index: 1;
}

/* Icon indicator for additional details */
#property-detail-wrap .additional-details-ul .list-lined-item::after {
    content: '💡';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 18px;
    opacity: 0.15;
    transition: all 0.3s ease;
    z-index: 0;
}

#property-detail-wrap .additional-details-ul .list-lined-item:hover::after {
    opacity: 0.3;
    transform: scale(1.1);
}

/* Hide items with display:none (like PEZA) */
#property-detail-wrap .detail-wrap ul.list-lined li[style*="display: none"],
#property-detail-wrap .detail-wrap ul.list-lined li[style*="display:none"] {
    display: none !important;
}


/* ============================================
   WHAT'S NEARBY - LONG VALUE HANDLING
   Both templates' What's Nearby widget (Estate: elementor-element-640365b0,
   Building/Mall: elementor-element-29084ed1) share #property-detail-wrap
   with the regular Details section above, but its values are often a full
   sentence or a list of several places + distances rather than a short
   spec value ("120 sqm"). The regular Details 2-up grid + centered text
   works fine for short values, but centered multi-line paragraphs waste
   the width instead of using it - so these two specifically get a
   full-width single column, and a left-aligned "small caption label above
   a larger, readable value" layout instead of the centered short-value
   treatment.
   ============================================ */
/* IMPORTANT: every selector below includes #property-detail-wrap itself
   (not just the elementor-element-* hash) so its specificity (1 ID + N
   classes) is guaranteed higher than the shared rules above (also 1 ID,
   but fewer classes) - #property-detail-wrap is a valid descendant of
   the elementor-element-* wrapper, so this is just a more specific path
   to the same elements. Earlier versions of these rules omitted the ID
   and were silently losing every property fight against the shared
   #property-detail-wrap rules above (align-items, text-align, etc. all
   kept resolving to the shared design's centered values despite carrying
   !important on both sides - an ID always outranks any number of plain
   classes regardless of importance). */

/* The shared #property-detail-wrap .block-content-wrap caps out at
   max-width:1200px with 40px of side padding - fine for the regular
   Details section, but when this widget is squeezed into a half-width
   column next to the map, that fixed padding eats a large share of an
   already-narrow space. Let the content use the full width it actually
   has and trim the padding down instead. */
.elementor-element-640365b0 #property-detail-wrap .block-content-wrap,
.elementor-element-29084ed1 #property-detail-wrap .block-content-wrap {
    max-width: none !important;
    padding: 0 16px !important;
}

.elementor-element-640365b0 #property-detail-wrap .detail-wrap ul.list-lined,
.elementor-element-29084ed1 #property-detail-wrap .detail-wrap ul.list-lined {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 10px !important;
}

/* Dropped flexbox for the label/value stack entirely - percentage widths
   on flex children (even with align-items:stretch) were resolving to the
   text's own shrink-to-fit content width instead of the container's full
   width, leaving the wrapped paragraph sitting as a narrow left-aligned
   "island" with a lot of empty card to its right. Plain block layout has
   no such ambiguity: a block element's width:100% always resolves against
   its parent's actual content-box width, no exceptions. This also
   overrides the widget's own inline `d-flex` class on this element. */
.elementor-element-640365b0 #property-detail-wrap .detail-wrap .list-lined-item,
.elementor-element-29084ed1 #property-detail-wrap .detail-wrap .list-lined-item {
    display: block !important;
    text-align: left !important;
    padding: 16px 20px !important;
    width: 100% !important;
}

/* Label - back to normal case (not all caps), left-aligned above the
   value. */
.elementor-element-640365b0 #property-detail-wrap .detail-wrap .list-lined-item strong,
.elementor-element-29084ed1 #property-detail-wrap .detail-wrap .list-lined-item strong {
    display: block !important;
    text-align: left !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    width: 100% !important;
    margin: 0 0 5px 0 !important;
}

/* Value - the actual content, given full-width room to wrap across
   multiple lines naturally. Houzez's own core theme CSS
   (.block-content-wrap .detail-wrap li span in main.css) caps this at
   max-width:150px, left over from the original label-left/value-right
   layout - width alone can never overcome that since max-width clamps
   the rendered size regardless of what width says, so it has to be
   explicitly reset here. */
.elementor-element-640365b0 #property-detail-wrap .detail-wrap .list-lined-item span,
.elementor-element-29084ed1 #property-detail-wrap .detail-wrap .list-lined-item span {
    display: block !important;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    line-height: 1.7 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    width: 100% !important;
    max-width: none !important;
}


/* ============================================
   FEATURES SECTION - ENHANCED DESIGN
   ============================================ */

#property-features-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
}

#property-features-wrap .block-wrap {
    padding: 0 0 40px 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Matching Other Sections */
#property-features-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#property-features-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-features-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-features-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-features-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area */
#property-features-wrap .block-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Group Name Headers (Amenities, Features) */
#property-features-wrap .features.group_name {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 0 20px 0 !important;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    border-left: 4px solid #1a1a1a;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

#property-features-wrap .features.group_name:first-of-type {
    margin-top: 0 !important;
}

#property-features-wrap .features.group_name:not(:first-of-type) {
    margin-top: 35px !important;
}

/* Shimmer effect on group headers */
#property-features-wrap .features.group_name::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-features-wrap .features.group_name:hover::before {
    left: 100%;
}

/* Feature Lists - Grid Layout */
#property-features-wrap ul.list-unstyled {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 10px 0 !important;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

#property-features-wrap ul.list-unstyled li {
    padding: 0 !important;
    margin: 0 !important;
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 6px;
    border: 1px solid #e9ecef;
    padding: 12px 14px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.3s ease forwards;
}

/* Staggered animation for feature items */
#property-features-wrap ul.list-unstyled li:nth-child(1) { animation-delay: 0.05s; }
#property-features-wrap ul.list-unstyled li:nth-child(2) { animation-delay: 0.08s; }
#property-features-wrap ul.list-unstyled li:nth-child(3) { animation-delay: 0.11s; }
#property-features-wrap ul.list-unstyled li:nth-child(4) { animation-delay: 0.14s; }
#property-features-wrap ul.list-unstyled li:nth-child(5) { animation-delay: 0.17s; }
#property-features-wrap ul.list-unstyled li:nth-child(6) { animation-delay: 0.2s; }
#property-features-wrap ul.list-unstyled li:nth-child(7) { animation-delay: 0.23s; }
#property-features-wrap ul.list-unstyled li:nth-child(8) { animation-delay: 0.26s; }
#property-features-wrap ul.list-unstyled li:nth-child(9) { animation-delay: 0.29s; }
#property-features-wrap ul.list-unstyled li:nth-child(10) { animation-delay: 0.32s; }

/* Shimmer effect on hover */
#property-features-wrap ul.list-unstyled li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-features-wrap ul.list-unstyled li:hover::before {
    left: 100%;
}

#property-features-wrap ul.list-unstyled li:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Check Icon Styling */
#property-features-wrap ul.list-unstyled li .houzez-icon {
    color: #22c55e;
    font-size: 16px;
    margin-right: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

#property-features-wrap ul.list-unstyled li:hover .houzez-icon {
    color: #16a34a;
    transform: scale(1.15);
}

/* Feature Link Text */
#property-features-wrap ul.list-unstyled li a {
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

#property-features-wrap ul.list-unstyled li:hover a {
    color: #1a1a1a;
}

/* Override Bootstrap column classes */
#property-features-wrap .col-xl-4,
#property-features-wrap .col-lg-6,
#property-features-wrap .col-md-6,
#property-features-wrap .col-sm-12 {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
}

#property-features-wrap .row {
    margin-left: 0;
    margin-right: 0;
}

#property-features-wrap .g-4 {
    gap: 0 !important;
}

#property-features-wrap .ps-4 {
    padding-left: 0 !important;
}


/* ============================================
   GALLERY SECTION - ENHANCED DESIGN
   ============================================ */

/* Container for gallery section */
.elementor-element.elementor-element-4d74d1a {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Gallery Title - Consistent with other sections */
.elementor-element-52cb949 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-52cb949 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-52cb949 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-52cb949 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
}

.elementor-element-52cb949 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Divider below title */
.elementor-element-68b9262 {
    display: none !important;
}

/* Gallery Grid Container */
#property-gallery-grid {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}

.property-gallery-grid-wrap {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override Bootstrap grid */
.property-gallery-grid-wrap.row,
.property-gallery-grid-wrap .col {
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.property-gallery-grid-wrap.g-0 {
    gap: 12px !important;
}

/* Gallery Items */
.gallery-grid-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: #f5f6f7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

.gallery-grid-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid-item:nth-child(2) { animation-delay: 0.15s; }
.gallery-grid-item:nth-child(3) { animation-delay: 0.2s; }
.gallery-grid-item:nth-child(4) { animation-delay: 0.25s; }
.gallery-grid-item:nth-child(5) { animation-delay: 0.3s; }
.gallery-grid-item:nth-child(6) { animation-delay: 0.35s; }

.gallery-grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-grid-item:hover::before {
    opacity: 1;
}

.gallery-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
    transform: scale(1.05);
}

/* REMOVED: Zoom icon on hover - as requested */
.gallery-grid-item::after {
    display: none !important;
}


/* ============================================
   CONTACT SECTION - ENHANCED DESIGN
   ============================================ */

/* Container for contact section */
.elementor-element.elementor-element-23c3a68 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Contact Title - Consistent with other sections */
.elementor-element-4f2d378 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-4f2d378 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-4f2d378 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-4f2d378 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

.elementor-element-4f2d378 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hide divider below contact title */
.elementor-element-8272aac {
    display: none !important;
}

/* Banner Image Container */
.elementor-element-7ab73da {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}

.banner-image-module {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.2s forwards;
}

.banner-image-module:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-image-module img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    filter: none !important;
}

.banner-image-module:hover img {
    transform: scale(1.02);
    opacity: 1 !important;
}

.banner-image-module-link {
    position: absolute;
    cursor: pointer;
    z-index: 1;
    background: none !important;
    opacity: 0 !important;
}

/* Remove any default overlays */
.banner-image-module::before,
.banner-image-module::after {
    display: none !important;
}


/* ============================================
   ESTATE TEMPLATE - LOCATORS SECTION
   Same visual language as the Building template's LOCATORS SECTION further
   below - it's the same Elementor Pro Image Carousel widget, just a
   different template/hash set.
   Container: elementor-element-4d4c6ab
   Title:     elementor-element-be20935
   Divider:   elementor-element-62e7852
   Carousel:  elementor-element-402bab3 (confirmed from populated-state
              inspection - an Image Carousel widget, same markup as the
              Building template's elementor-element-c440fc1)
   ============================================ */

.elementor-element.elementor-element-4d4c6ab {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

.elementor-element-be20935 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-be20935 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-be20935 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-be20935 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
}

.elementor-element-be20935 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hide divider below locators title */
.elementor-element-62e7852 {
    display: none !important;
}

/* Carousel Container */
.elementor-element-402bab3 {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}

.elementor-element-402bab3 .elementor-image-carousel-wrapper {
    border-radius: 8px;
    overflow: visible;
    padding: 20px 0;
}

/* Carousel Slides - spacing between slides, plus a lightweight fallback
   opacity before JS (js/locators-carousel-fade.js) takes over and fades
   each slide by its real distance from the active/center one. The actual
   opacity/scale is driven from JS because Swiper.js sets its own inline
   styles on slides during transitions, which a CSS-only approach (even
   with !important) couldn't reliably win against or target by distance. */
.elementor-element-402bab3 .swiper-slide {
    margin: 0 12px !important;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fixed-height, flex-centered box so logos of different native
   dimensions/aspect ratios all occupy the same footprint. */
.elementor-element-402bab3 .swiper-slide-inner {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-sizing: border-box;
}

.elementor-element-402bab3 .swiper-slide:hover .swiper-slide-inner {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.elementor-element-402bab3 .swiper-slide-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
}

/* Navigation Buttons - the icon inside is an <i> icon font glyph (e.g.
   eicon-chevron-left), not an svg, so it's centered via flex on the
   button itself rather than styled directly. */
.elementor-element-402bab3 .elementor-swiper-button {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border: 1px solid #e9ecef;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.elementor-element-402bab3 .elementor-swiper-button:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.elementor-element-402bab3 .elementor-swiper-button i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.elementor-element-402bab3 .elementor-swiper-button:hover i,
.elementor-element-402bab3 .elementor-swiper-button:hover svg {
    color: #ffffff;
    fill: #ffffff;
}

/* Pagination Dots */
.elementor-element-402bab3 .swiper-pagination-bullet {
    background: #e9ecef;
    opacity: 1;
    transition: all 0.3s ease;
}

.elementor-element-402bab3 .swiper-pagination-bullet-active {
    background: #1a1a1a;
    width: 24px;
    border-radius: 12px;
}


/* ============================================
   ESTATE TEMPLATE - CONTACT SECTION
   Same visual language as the CONTACT / CONTACT SECTION - BUILDING TYPE
   blocks.
   Container: elementor-element-8c1bc7f
   Title:     elementor-element-6a7b25b
   Divider:   elementor-element-f7e5e9f
   Banner:    elementor-widget-Houzez_Banner_Image (widget-type selector;
              this widget's own element hash wasn't available to target
              directly. .banner-image-module itself, defined in the
              CONTACT SECTION block above, already applies the shared
              hover/shadow polish since that class isn't hash-scoped.)
   ============================================ */

.elementor-element.elementor-element-8c1bc7f {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

.elementor-element-6a7b25b .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-6a7b25b .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-6a7b25b .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-6a7b25b .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

.elementor-element-6a7b25b .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hide divider below contact title */
.elementor-element-f7e5e9f {
    display: none !important;
}

/* Banner image container - matches the Contact section's banner wrapper
   width/padding. */
.elementor-element-8c1bc7f .elementor-widget-Houzez_Banner_Image {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}


/* ============================================
   INQUIRY FORM - MODERN COMPACT DESIGN
   ============================================ */

/* Form Container */
.property-form-wrap {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-form-wrap:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Agent Details Section */
.agent-details {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid #dee2e6;
}

.agent-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e9ecef;
}

.agent-information {
    font-size: 13px;
}

.agent-information .agent-name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.agent-information .agent-name i {
    font-size: 12px;
    color: #6c757d;
}

.agent-information .agent-link a {
    font-size: 12px;
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.agent-information .agent-link a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Form Groups */
.property-form .form-group {
    margin-bottom: 10px !important;
}

/* Input Fields */
.property-form input.form-control,
.property-form textarea.form-control,
.property-form select.form-control {
    font-size: 13px !important;
    padding: 10px 12px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    color: #374151 !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
}

.property-form input.form-control:focus,
.property-form textarea.form-control:focus,
.property-form select.form-control:focus {
    border-color: #1a1a1a !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
    outline: none !important;
}

/* Placeholder Text */
.property-form input::placeholder,
.property-form textarea::placeholder {
    color: #9ca3af !important;
    font-size: 13px !important;
}

/* Textarea */
.property-form textarea.form-control {
    min-height: 90px !important;
    resize: vertical;
}

/* Dropdown/Select Styling */
.property-form .bootstrap-select .dropdown-toggle {
    font-size: 13px !important;
    padding: 10px 12px !important;
    border: 1px solid #e9ecef !important;
    border-radius: 6px !important;
    background: #ffffff !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03) !important;
    height: auto !important;
}

.property-form .bootstrap-select .dropdown-toggle:focus {
    border-color: #1a1a1a !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

.property-form .bootstrap-select .filter-option-inner-inner {
    font-size: 13px !important;
    color: #374151 !important;
}

.property-form .bootstrap-select.bs-placeholder .filter-option-inner-inner {
    color: #9ca3af !important;
}

/* Dropdown Menu */
.property-form .bootstrap-select .dropdown-menu {
    border: 1px solid #e9ecef !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    font-size: 13px !important;
}

.property-form .bootstrap-select .dropdown-menu li a {
    font-size: 13px !important;
    padding: 8px 12px !important;
}

/* GDPR Checkbox */
.property-form .hz-no-gdpr-checkbox {
    font-size: 12px !important;
    color: #6c757d !important;
    line-height: 1.5;
}

.property-form .gdpr-text-wrap {
    font-size: 12px !important;
}

.property-form .gdpr-text-wrap a {
    color: #0d6efd;
    text-decoration: none;
}

.property-form .gdpr-text-wrap a:hover {
    text-decoration: underline;
}

/* Submit Button */
.property-form .houzez-ele-button {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%) !important;
    border: none !important;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.property-form .houzez-ele-button:hover {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transform: translateY(-2px);
}

.property-form .houzez-ele-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

/* Loading Spinner */
.property-form .spinner-border-sm {
    width: 14px;
    height: 14px;
}

/* Form Messages */
.property-form .form_messages {
    font-size: 13px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 6px;
}


/* ============================================
   SIMILAR LISTINGS SECTION - ENHANCED DESIGN
   ============================================ */

/* Outer Elementor widget wrapper - AND its inner .elementor-widget-container
   child. Confirmed via the generated per-post CSS: Elementor puts a widget's
   configured background on `.elementor-element-HASH > .elementor-widget-
   container`, not on the outer .elementor-element-HASH div itself, so both
   need overriding (this is what made the earlier outer-only rule a no-op
   for widget-type sections like this one and Building's Available Units). */
.elementor-element.elementor-element-a6a3931,
.elementor-element.elementor-element-a6a3931 > .elementor-widget-container {
    background: transparent !important;
    background-color: transparent !important;
}

#similar-listings-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent !important;
    background-color: transparent !important;
}

#similar-listings-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#similar-listings-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#similar-listings-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#similar-listings-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#similar-listings-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Listing View Container */
#similar-listings-wrap .listing-view {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}

/* Individual Listing Cards */
#similar-listings-wrap .item-listing-wrap {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 0 !important;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

#similar-listings-wrap .item-listing-wrap:nth-child(1) { animation-delay: 0.1s; }
#similar-listings-wrap .item-listing-wrap:nth-child(2) { animation-delay: 0.15s; }
#similar-listings-wrap .item-listing-wrap:nth-child(3) { animation-delay: 0.2s; }
#similar-listings-wrap .item-listing-wrap:nth-child(4) { animation-delay: 0.25s; }
#similar-listings-wrap .item-listing-wrap:nth-child(5) { animation-delay: 0.3s; }
#similar-listings-wrap .item-listing-wrap:nth-child(6) { animation-delay: 0.35s; }

/* Shimmer effect on hover */
#similar-listings-wrap .item-listing-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#similar-listings-wrap .item-listing-wrap:hover::before {
    left: 100%;
}

#similar-listings-wrap .item-listing-wrap:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Item Wrap */
#similar-listings-wrap .item-wrap {
    position: relative;
    z-index: 1;
}

/* Override Bootstrap row gutters */
#similar-listings-wrap .listing-view.row {
    margin-left: 0;
    margin-right: 0;
}

#similar-listings-wrap .gy-4,
#similar-listings-wrap .gx-4 {
    gap: 0 !important;
}


/* ============================================
   MAP AND WHAT'S NEARBY - INTEGRATED DESIGN
   ============================================ */

/* Container for map and nearby section */
.elementor-element-6835e40 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
}

/* Map Section */
.elementor-element-ee3c532 {
    border-radius: 8px 0 0 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.houzez-elementor-map-wrap {
    border-radius: 8px 0 0 8px;
    overflow: hidden;
}

#houzez-single-listing-map-elementor {
    border-radius: 8px 0 0 8px;
    min-height: 400px;
}

/* What's Nearby (Building/Mall template, elementor-element-29084ed1)
   intentionally has NO bespoke styling here anymore. It shares
   id="property-detail-wrap" with the regular Details widget (and with
   Estate's own What's Nearby, elementor-element-640365b0), so it already
   inherits the plain DETAILS SECTION card design below via that ID -
   giving it the same look as Estate's, as requested, without needing a
   per-hash override. Only the map side (rounding/height matching within
   the elementor-element-6835e40 grid) is still handled here. */


/* ============================================
   STACKING AND FLOOR PLAN(S) SECTION - ENHANCED DESIGN
   ============================================ */

#property-floor-plans-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
}

#property-floor-plans-wrap .block-wrap {
    padding: 0 0 40px 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Matching Other Sections */
#property-floor-plans-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
    justify-content: flex-start !important;
}

#property-floor-plans-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-floor-plans-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-floor-plans-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-floor-plans-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area */
#property-floor-plans-wrap .block-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Accordion Items */
#property-floor-plans-wrap .accordion-tab {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.1s forwards;
}

#property-floor-plans-wrap .accordion-tab:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Accordion Header */
#property-floor-plans-wrap .accordion-header {
    padding: 14px 18px !important;
    cursor: pointer;
    position: relative;
}

#property-floor-plans-wrap .accordion-header::after {
    content: '▼';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

#property-floor-plans-wrap .accordion-header:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
}

#property-floor-plans-wrap .accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

#property-floor-plans-wrap .floor-information {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
    padding: 0;
}

/* Accordion Body */
#property-floor-plans-wrap .accordion-body {
    padding: 16px 18px !important;
    border-top: 1px solid #e9ecef;
}

#property-floor-plans-wrap .accordion-body img {
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#property-floor-plans-wrap .accordion-body a:hover img {
    transform: scale(1.02);
}

#property-floor-plans-wrap .floor-plan-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

#property-floor-plans-wrap .floor-plan-description strong {
    color: #1a1a1a;
}


/* ============================================
   LOCATORS SECTION - ENHANCED DESIGN (Building Type)
   ============================================ */

/* Container for locators section */
.elementor-element.elementor-element-9620a48 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Locators Title - Consistent with other sections */
.elementor-element-84fe2d4 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-84fe2d4 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-84fe2d4 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-84fe2d4 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

.elementor-element-84fe2d4 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Hide divider below locators title */
.elementor-element-f81fc62 {
    display: none !important;
}

/* Carousel Container */
.elementor-element-c440fc1 {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}

.elementor-element-c440fc1 .elementor-image-carousel-wrapper {
    border-radius: 8px;
    overflow: visible;
    padding: 20px 0;
}

/* Carousel Slides - spacing between slides, plus a lightweight fallback
   opacity before JS (js/locators-carousel-fade.js) takes over and fades
   each slide by its real distance from the active/center one. The actual
   opacity/scale is driven from JS because Swiper.js sets its own inline
   styles on slides during transitions, which a CSS-only approach (even
   with !important) couldn't reliably win against or target by distance. */
.elementor-element-c440fc1 .swiper-slide {
    margin: 0 12px !important;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fixed-height, flex-centered box so logos of different native
   dimensions/aspect ratios all occupy the same footprint. */
.elementor-element-c440fc1 .swiper-slide-inner {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-sizing: border-box;
}

.elementor-element-c440fc1 .swiper-slide:hover .swiper-slide-inner {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.elementor-element-c440fc1 .swiper-slide-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0);
}

/* Navigation Buttons - the icon inside is an <i> icon font glyph (e.g.
   eicon-chevron-left), not an svg, so it's centered via flex on the
   button itself rather than styled directly. */
.elementor-element-c440fc1 .elementor-swiper-button {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border: 1px solid #e9ecef;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

.elementor-element-c440fc1 .elementor-swiper-button:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.elementor-element-c440fc1 .elementor-swiper-button i {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.3s ease;
}

.elementor-element-c440fc1 .elementor-swiper-button:hover i,
.elementor-element-c440fc1 .elementor-swiper-button:hover svg {
    color: #ffffff;
    fill: #ffffff;
}

/* Pagination Dots */
.elementor-element-c440fc1 .swiper-pagination-bullet {
    background: #e9ecef;
    opacity: 1;
    transition: all 0.3s ease;
}

.elementor-element-c440fc1 .swiper-pagination-bullet-active {
    background: #1a1a1a;
    width: 24px;
    border-radius: 12px;
}


/* ============================================
   GALLERY SECTION - BUILDING TYPE (elementor-element-92a0723)
   ============================================ */

.elementor-element.elementor-element-92a0723 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

.elementor-element-22b8b4e9 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-22b8b4e9 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-22b8b4e9 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-22b8b4e9 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

.elementor-element-22b8b4e9 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.elementor-element-907ceae {
    display: none !important;
}


/* ============================================
   CONTACT SECTION - BUILDING TYPE (elementor-element-c65e2aa)
   ============================================ */

.elementor-element.elementor-element-c65e2aa {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

.elementor-element-1eda217 .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-1eda217 .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-1eda217 .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-1eda217 .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

.elementor-element-1eda217 .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.elementor-element-3a22ffc {
    display: none !important;
}

.elementor-element-8d32532 {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 0 40px 40px 40px;
}


/* ============================================
   META WIDGET MODULE - ENHANCED DESIGN
   ============================================ */

.elementor-element-2f971f7 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
}

.hs-meta-widget-module {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    border-left: 4px solid #1a1a1a;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 30px auto;
}

.hs-meta-widget-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.hs-meta-widget-module:hover::before {
    left: 100%;
}

.hs-meta-widget-module:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.hs-meta-widget-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    display: block !important;
    margin-bottom: 14px !important;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.hs-meta-widget-data {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #4a5568 !important;
    line-height: 1.8 !important;
    display: block !important;
    position: relative;
    z-index: 1;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* Add subtle icon indicator */
.hs-meta-widget-module::after {
    content: 'ℹ️';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    opacity: 0.15;
    transition: all 0.3s ease;
    z-index: 0;
}

.hs-meta-widget-module:hover::after {
    opacity: 0.3;
    transform: scale(1.1);
}


/* ============================================
   VIDEO SECTION - ENHANCED DESIGN
   ============================================ */

#property-video-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
}

#property-video-wrap .block-wrap {
    padding: 0 0 40px 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Matching Other Sections */
#property-video-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
    justify-content: flex-start !important;
}

#property-video-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-video-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-video-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-video-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area */
#property-video-wrap .block-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Video Container */
#property-video-wrap .block-video-wrap {
    background: linear-gradient(145deg, #fafbfc 0%, #f5f6f7 100%);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    /* Houzez's parent theme sets .block-video-wrap { height: 0; padding-bottom: 56.25%; }
       as its own (unused here) responsive-embed technique - this stylesheet makes the
       iframe responsive via aspect-ratio below instead, but that legacy height:0 was
       never cancelled, so combined with overflow:hidden it clipped the video down to
       almost nothing. */
    height: auto;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.4s ease 0.2s forwards;
}

#property-video-wrap .block-video-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

#property-video-wrap .block-video-wrap:hover::before {
    left: 100%;
}

#property-video-wrap .block-video-wrap:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Video iframe */
#property-video-wrap .block-video-wrap iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 6px;
    border: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

#property-video-wrap .block-video-wrap:hover iframe {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/*fixed the content overlapping of the content in details section in default property page*/
#property-description-wrap .container .block-wrap .block-content-wrap .fw-property-details-wrap .fw-property-amenities-wrap .fw-property-amenities.px-4.mb-4.no-wrap{
    white-space: nowrap !important;
}

#property-description-wrap .container .block-wrap .block-content-wrap .fw-property-details-wrap .fw-property-amenities-wrap .fw-property-amenities.px-4.mb-4.no-wrap div .fw-property-amenities-data {
    white-space: normal !important;
}


/* ============================================
   RESPONSIVE DESIGN - ALL SECTIONS
   ============================================ */

@media (max-width: 1200px) {
    #property-overview-wrap .property-overview-data .col,
    #property-overview-wrap .property-overview-data a {
        flex: 1 1 calc(25% - 6px) !important;
        min-width: calc(25% - 6px) !important;
    }
}

@media (max-width: 1024px) {
    #property-features-wrap ul.list-unstyled {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .property-gallery-grid-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 992px) {
    #property-overview-wrap .property-overview-data {
        padding: 0 20px 25px 20px;
    }

    #property-overview-wrap .property-overview-data .row {
        gap: 6px !important;
    }

    #property-overview-wrap .property-overview-data .col,
    #property-overview-wrap .property-overview-data a {
        flex: 1 1 calc(50% - 3px) !important;
        min-width: calc(50% - 3px) !important;
        padding: 9px 7px !important;
    }
}

@media (max-width: 768px) {
    /* All Section Headers */
    #property-overview-wrap .block-title-wrap,
    #property-description-wrap .block-title-wrap,
    #property-detail-wrap .block-title-wrap:first-child,
    #property-features-wrap .block-title-wrap,
    #property-video-wrap .block-title-wrap,
    .elementor-element-52cb949 .houzez_section_title_wrap {
        padding: 16px 0;
        margin-bottom: 20px !important;
    }

    #property-overview-wrap .block-title-wrap h2,
    #property-description-wrap .block-title-wrap h2,
    #property-detail-wrap .block-title-wrap:first-child h2,
    #property-features-wrap .block-title-wrap h2,
    #property-video-wrap .block-title-wrap h2,
    .elementor-element-52cb949 .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    #property-overview-wrap .block-title-wrap h2::before,
    #property-description-wrap .block-title-wrap h2::before,
    #property-detail-wrap .block-title-wrap:first-child h2::before,
    #property-features-wrap .block-title-wrap h2::before,
    #property-video-wrap .block-title-wrap h2::before,
    .elementor-element-52cb949 .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    /* Overview */
    #property-overview-wrap .property-overview-data {
        padding: 0 20px 22px 20px;
    }

    /* Description */
    #property-description-wrap .block-content-wrap {
        padding: 0 20px;
    }

    #property-description-wrap .hzele-property-content-wrap ul {
        grid-template-columns: 100%;
        gap: 12px;
    }

    #property-description-wrap .hzele-property-content-wrap ul li {
        padding: 14px 16px;
    }

    #property-description-wrap .hzele-property-content-wrap ul li p {
        font-size: 13px;
    }

    /* Details */
    #property-detail-wrap .block-content-wrap {
        padding: 0 20px;
    }

    #property-detail-wrap .detail-wrap ul.list-lined {
        grid-template-columns: 100%;
        gap: 10px;
        margin-bottom: 30px !important;
    }

    #property-detail-wrap .detail-wrap .list-lined-item {
        padding: 12px 16px !important;
    }

    #property-detail-wrap .detail-wrap .list-lined-item strong {
        font-size: 12px !important;
    }

    #property-detail-wrap .detail-wrap .list-lined-item span {
        font-size: 12px !important;
    }

    #property-detail-wrap .block-title-wrap:not(:first-child) {
        padding: 12px 16px;
        margin-bottom: 16px !important;
    }

    #property-detail-wrap .block-title-wrap:not(:first-child) h3 {
        font-size: 15px !important;
    }

    #property-detail-wrap .additional-details-ul .list-lined-item {
        padding: 16px 18px !important;
    }

    #property-detail-wrap .additional-details-ul .list-lined-item strong {
        font-size: 13px !important;
    }

    #property-detail-wrap .additional-details-ul .list-lined-item span {
        font-size: 12px !important;
    }

    /* Features */
    #property-features-wrap .block-content-wrap {
        padding: 0 20px;
    }

    #property-features-wrap .features.group_name {
        font-size: 16px !important;
        padding: 10px 16px;
        margin-bottom: 16px !important;
    }

    #property-features-wrap .features.group_name:not(:first-of-type) {
        margin-top: 28px !important;
    }

    #property-features-wrap ul.list-unstyled {
        grid-template-columns: 100%;
        gap: 8px;
    }

    #property-features-wrap ul.list-unstyled li {
        padding: 10px 12px !important;
    }

    #property-features-wrap ul.list-unstyled li a {
        font-size: 12px;
    }

    #property-features-wrap ul.list-unstyled li .houzez-icon {
        font-size: 14px;
        margin-right: 8px;
    }

    /* Gallery */
    #property-gallery-grid {
        padding: 0 20px 30px 20px;
    }

    .property-gallery-grid-wrap {
        grid-template-columns: 100%;
        gap: 10px;
    }

    /* Contact */
    .elementor-element-4f2d378 .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-4f2d378 .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    .elementor-element-7ab73da {
        padding: 0 20px 30px 20px;
    }

    /* Estate Locators / Contact */
    .elementor-element-be20935 .houzez_section_title,
    .elementor-element-6a7b25b .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-be20935 .houzez_section_title::before,
    .elementor-element-6a7b25b .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    .elementor-element-402bab3 {
        padding: 0 20px 30px 20px;
    }

    .elementor-element-8c1bc7f .elementor-widget-Houzez_Banner_Image {
        padding: 0 20px 30px 20px;
    }

    /* Similar Listings */
    #similar-listings-wrap .block-title-wrap h2 {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    #similar-listings-wrap .block-title-wrap h2::before {
        left: 20px;
        height: 20px;
    }

    #similar-listings-wrap .listing-view {
        padding: 0 20px 30px 20px;
    }

    /* Floor Plans */
    #property-floor-plans-wrap .block-title-wrap h2 {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    #property-floor-plans-wrap .block-title-wrap h2::before {
        left: 20px;
        height: 20px;
    }

    #property-floor-plans-wrap .block-content-wrap {
        padding: 0 20px;
    }

    #property-floor-plans-wrap .accordion-header {
        padding: 12px 16px !important;
    }

    #property-floor-plans-wrap .accordion-title {
        font-size: 15px;
    }

    #property-floor-plans-wrap .accordion-body {
        padding: 14px 16px !important;
    }

    /* Locators (Building type) */
    .elementor-element-84fe2d4 .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-84fe2d4 .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    .elementor-element-c440fc1 {
        padding: 0 50px 30px 50px !important;
    }

    .elementor-element-c440fc1 .elementor-swiper-button {
        width: 38px;
        height: 38px;
    }

    .elementor-element-c440fc1 .elementor-swiper-button svg {
        width: 18px;
        height: 18px;
    }

    .elementor-element-c440fc1 .swiper-slide-inner {
        padding: 20px;
        height: 100px;
    }

    .elementor-element-c440fc1 .swiper-slide-image {
        max-height: 60px;
    }

    /* Estate Locators - same mobile carousel adjustments */
    .elementor-element-402bab3 {
        padding: 0 50px 30px 50px !important;
    }

    .elementor-element-402bab3 .elementor-swiper-button {
        width: 38px;
        height: 38px;
    }

    .elementor-element-402bab3 .elementor-swiper-button svg {
        width: 18px;
        height: 18px;
    }

    .elementor-element-402bab3 .swiper-slide-inner {
        padding: 20px;
        height: 100px;
    }

    .elementor-element-402bab3 .swiper-slide-image {
        max-height: 60px;
    }

    /* Building Gallery */
    .elementor-element-22b8b4e9 .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-22b8b4e9 .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    /* Building Contact */
    .elementor-element-1eda217 .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-1eda217 .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    .elementor-element-8d32532 {
        padding: 0 20px 30px 20px;
    }

    /* Map */
    .elementor-element-ee3c532,
    .houzez-elementor-map-wrap,
    #houzez-single-listing-map-elementor {
        border-radius: 8px 8px 0 0;
    }

    /* What's Nearby mobile sizing now comes from the plain
       #property-detail-wrap rules' own 768px block above, matching Estate. */

    /* Meta Widget */
    .hs-meta-widget-module {
        padding: 20px 22px;
        margin: 20px 20px;
    }

    .hs-meta-widget-title {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }

    .hs-meta-widget-data {
        font-size: 13px !important;
    }

    /* Video */
    #property-video-wrap .block-content-wrap {
        padding: 0 20px;
    }

    #property-video-wrap .block-video-wrap {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    #property-overview-wrap .property-overview-data .col,
    #property-overview-wrap .property-overview-data a {
        flex: 1 1 100% !important;
        min-width: 100% !important;
    }
}


/* ============================================
   ESTATE THEME - SECTION UPDATES
   Commercial Properties in Estate + Gallery
   ============================================ */

/* ============================================
   COMMERCIAL PROPERTIES IN THE ESTATE - HEADER ONLY
   ============================================ */

/* Outer Elementor widget wrapper AND its inner .elementor-widget-container
   child (Building/Mall template's "Available Units & Spaces" widget shares
   this same #property-sub-listings-wrap ID). Confirmed via generated CSS:
   .elementor-element-be45bf2 > .elementor-widget-container{background-
   color:#FFFFFF} - Elementor puts the widget's background on that inner
   child, not the outer .elementor-element-be45bf2 div, so both need
   overriding. */
.elementor-element.elementor-element-be45bf2,
.elementor-element.elementor-element-be45bf2 > .elementor-widget-container {
    background: transparent !important;
    background-color: transparent !important;
}

#property-sub-listings-wrap {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto;
    background: transparent !important;
    background-color: transparent !important;
}

#property-sub-listings-wrap .block-wrap {
    padding: 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Header - Matching Other Sections */
#property-sub-listings-wrap .block-title-wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0;
    margin: 0 0 30px 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#property-sub-listings-wrap .block-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

#property-sub-listings-wrap .block-title-wrap:hover::before {
    left: 100%;
}

#property-sub-listings-wrap .block-title-wrap h2 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
}

#property-sub-listings-wrap .block-title-wrap h2::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Area - Adjusted padding to match */
#property-sub-listings-wrap .block-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
}


/* ============================================
   GALLERY SECTION - ESTATE THEME
   ============================================ */

/* Container for gallery section */
.elementor-element.elementor-element-b543408 {
    padding: 0 !important;
    max-width: 1400px;
    margin: 0 auto !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Gallery Title - Consistent with other sections */
.elementor-element-6947302a .houzez_section_title_wrap {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 18px 0 !important;
    margin: 0 !important;
    border-bottom: 2px solid #dee2e6;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.elementor-element-6947302a .houzez_section_title_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.elementor-element-6947302a .houzez_section_title_wrap:hover::before {
    left: 100%;
}

.elementor-element-6947302a .houzez_section_title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 auto !important;
    max-width: 1200px;
    padding: 0 40px 0 54px !important;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    text-align: left !important;
}

.elementor-element-6947302a .houzez_section_title::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* More Images Overlay (e.g., "3+") */
.gallery-grid-item.more-images {
    position: relative;
}

.gallery-grid-item.more-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: background 0.3s ease;
}

.gallery-grid-item.more-images:hover::after {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-grid-item.more-images span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.gallery-grid-item.more-images:hover span {
    font-size: 48px;
}

/* Hidden gallery items (for fancybox) */
.gallery-grid-item.gallery-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    /* Commercial Properties Header */
    #property-sub-listings-wrap .block-title-wrap {
        padding: 16px 0;
        margin-bottom: 20px !important;
    }

    #property-sub-listings-wrap .block-title-wrap h2 {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    #property-sub-listings-wrap .block-title-wrap h2::before {
        left: 20px;
        height: 20px;
    }

    #property-sub-listings-wrap .block-content-wrap {
        padding: 0 20px 30px 20px;
    }

    /* Gallery Section */
    .elementor-element-6947302a .houzez_section_title {
        font-size: 20px !important;
        padding: 0 20px 0 42px !important;
    }

    .elementor-element-6947302a .houzez_section_title::before {
        left: 20px;
        height: 20px;
    }

    .gallery-grid-item.more-images span {
        font-size: 36px;
    }

    .gallery-grid-item.more-images:hover span {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    #property-sub-listings-wrap .block-content-wrap {
        padding: 0 15px 25px 15px;
    }
}
