* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.main_layout {
    padding-top: 40px;
    background-color: #ffffff;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    padding: 0 0 40px;
}

    .main_layout .location {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        font-weight: 500;
        color: #666;
        padding-bottom: 0;
        margin-block: 10px;
        border-bottom: 1px solid #05379a;
        padding-bottom: 12px;
    }
    .main_layout .location svg{
        stroke: #05379a;
    }

.main_title_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main_layout .main_title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.title_actions {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
}

.meta_details_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

    .meta_details_row .item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .meta_details_row .item .icon {
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #05379a;
            background: #05379a;
            border-radius: 50%;
            padding: 16px;
        }

        .meta_details_row .item .label {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

            .meta_details_row .item .label .label_text {
                font-size: 14px;
                font-weight: 600;
                color: #05379a;
            }

            .meta_details_row .item .label .value_text {
                font-size: 14px;
                font-weight: 500;
                color: #000;
            }
        .meta_details_row .item .icon svg {
            stroke: #fff;
        }

        .property_actions_overlay {
            position: absolute;
            bottom: 20px;
            right: 0;
            z-index: 3;
        }

.property_actions_buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-direction: row;
}

.property_action_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 90px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(5, 55, 154, 0.2);
}

    .property_action_button:hover {
        background-color: #042d7a;
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
        transform: translateY(-1px);
    }

    .property_action_button svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
    }

.main_image {
    position: relative;
    overflow: hidden;
    padding-block: 40px 20px;
}

    .main_image picture {
        display: block;
        width: 100%;
    }

    .main_image img {
        border-radius: 24px;
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
        max-height: 500px;
    }

.main_image_overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.artistic_impression_text {
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Location Section */
.location_section {
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.location_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin-bottom: 20px;
}

.location_content_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.location_info_card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 32px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}

.location_address_section {
    margin-bottom: 12px;
}

.location_address_heading {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.location_address_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.location_address_text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    flex: 1;
}

.location_direction_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #4A90E2;
    border: none;
    border-radius: 50px;
    padding-inline: 20px;
    height: 36px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s;
}

    .location_direction_button:hover {
        background-color: #3A7BC2;
    }

    .location_direction_button svg {
        width: 16px;
        height: 16px;
        stroke-width: 2.5;
    }

.location_separator {
    width: 100%;
    height: 1px;
    background-color: #E0E0E0;
    margin: 12px 0;
}

.location_transport_section {
    margin-top: 12px;
}

.location_transport_heading {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.location_advantages_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.location_advantage_category {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.location_advantage_category ul li{
      display:flex;
      gap:8px;
      padding-bottom:12px;
      font-size:14px;
}
    .location_advantage_category ul li .icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #05379a;
        border-radius: 24px;
        min-width:24px;
    }
.location_advantage_category ul li svg{
    min-width:16px;
    stroke:#fff;
}
.location_category_title {
    font-size: 16px;
    font-weight: 600;
    color: #05379a;
    margin-bottom: 4px;
}

.location_advantage_paragraph {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

    .location_advantage_paragraph strong {
        font-weight: 600;
        color: #05379a;
    }

.location_advantage_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location_advantage_item {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

    .location_advantage_item::before {
        content: '�';
        position: absolute;
        left: 0;
        color: #05379a;
        font-weight: 600;
        font-size: 18px;
        line-height: 1.4;
    }

    .location_advantage_item:last-child {
        margin-bottom: 0;
    }

.location_name {
    font-weight: 400;
    color: #000;
}

/* Show all categories */
.location_advantages_content .location_advantage_category {
    display: flex;
}

.location_read_more_button {
    background-color: #0149a3;
    color: #ffffff;
    border: none;
    border-radius: 90px;
    height: 36px;
    padding-inline: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .location_read_more_button:hover {
        background-color: #333;
    }

.location_map_card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 400px;
    max-height: 400px;
    overflow: hidden;
}

    .location_map_card iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

/* Feature Image Card with Expand Button */
.feature_image_card {
    position: relative;
}

.feature_image_expand_btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

    .feature_image_expand_btn:hover {
        background-color: #ffffff;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .feature_image_expand_btn svg {
        width: 20px;
        height: 20px;
        stroke: #333;
    }

/* Location Modal Styles */
.location_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

    .location_modal_overlay.active {
        display: flex;
    }

.location_modal_content {
    background-color: #ffffff;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.location_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #E0E0E0;
}

.location_modal_title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.location_modal_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: opacity 0.2s;
}

    .location_modal_close:hover {
        opacity: 0.6;
    }

    .location_modal_close svg {
        width: 24px;
        height: 24px;
    }

.location_modal_body {
    padding: 32px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .location_modal_body .location_advantage_category {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .location_modal_body .location_category_title {
        font-size: 18px;
        font-weight: 600;
        color: #05379a;
        margin-bottom: 8px;
    }

    .location_modal_body .location_advantage_category {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
    }

    .location_modal_body .location_category_title {
        font-size: 18px;
        font-weight: 600;
        color: #05379a;
        margin-bottom: 8px;
    }

    .location_modal_body .location_advantage_paragraph {
        font-size: 14px;
        font-weight: 400;
        color: #000;
        line-height: 1.6;
        margin: 0;
        display: block !important;
        /* Ensure all paragraphs are visible in modal */
    }

        .location_modal_body .location_advantage_paragraph strong {
            font-weight: 600;
            color: #05379a;
        }



/* amenities ection */
.amenities_section {
    padding-block: 40px 60px;
    border-bottom: 1px solid #E0E0E0;
}

    .amenities_section .amenities_row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .amenities_section .section_title {
        font-size: 24px;
        font-weight: 600;
        color: #05379a;
        margin-bottom: 24px;
    }

    .amenities_section .amenities_row .amenity_item {
        position: relative;
    }

        .amenities_section .amenities_row .amenity_item .icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border-radius: 60px;
            padding: 16px;
            margin-inline: auto;
            z-index: 2;
            position: relative;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        }

            .amenities_section .amenities_row .amenity_item .icon svg {
                stroke: #fff;
            }

        .amenities_section .amenities_row .amenity_item .background_icon {
            position: absolute;
            top: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: auto;
            height: 40px;
            z-index: 1;
        }

        .amenities_section .amenities_row .amenity_item .content {
            display: flex;
            flex-direction: column;
            background: linear-gradient(180deg, #F6F3EC 0%, #F6F3EC00 100%);
            border-radius: 30px;
            padding: 16px;
            text-align: center;
            padding-top: 60px;
            margin-top: -20px;
        }

    .amenities_section .amenities_row .amenity_title {
        font-size: 16px;
        font-weight: 600;
        color: #000;
        margin-bottom: 8px;
    }

    .amenities_section .amenities_row .amenity_description {
        font-size: 14px;
        font-weight: 400;
        color: #666;
        margin-bottom: 0;
    }

/* FAQ Section */
.faq_section {
    padding: 40px 0;
    position: relative;
}

.faq_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq_list {
    gap: 0;
    margin: 0 auto;
    column-gap: 0;
}

.faq_item {
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    padding-right: 24px;
    transition: opacity 0.2s;
}



    .faq_item:hover {
        opacity: 0.8;
    }

.faq_question_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    cursor: pointer;
}

.faq_question_icon {
    width: 40px;
    height: 40px;
    background-color: #F5F5F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .faq_question_icon svg {
        width: 20px;
        height: 20px;
        color: #05379a;
        stroke: #05379a;
        stroke-width: 2.5;
        fill: none;
    }

.faq_question_text {
    flex: 1;
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.faq_chevron_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .faq_chevron_icon svg {
        width: 20px;
        height: 20px;
        color: #000;
        transition: transform 0.3s;
    }

.faq_item.active .faq_chevron_icon svg {
    transform: rotate(180deg);
}

.faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 0 0 56px;
}

.faq_item.active .faq_answer {
    max-height: 500px;
    padding: 0 0 20px 56px;
}

.faq_answer p {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Media Section */
.media_section {
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

/* Media Tab Containers */
.media_tab_container {
    display: none;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    min-height: 480px;
}

    .media_tab_container.active {
        display: block;
    }

/* Video Tab Container */
#videoTabContainer .video_thumbnail_wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

    #videoTabContainer .video_thumbnail_wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Street View Tab Container */
#streetviewTabContainer iframe {
    width: 100%;
    height: 540px;
    border: none;
    border-radius: 16px;
    display: block;
}

.media_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.media_title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.media_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin: 0 0 20px 0;
}

/* Master Plan Section */
.master_plan_wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    border: 1px solid #E8E8E8;
}

    .master_plan_wrapper a {
        display: block;
        width: 100%;
        text-decoration: none;
        outline: none;
        cursor: pointer;
    }

    .master_plan_wrapper picture {
        display: block;
        width: 100%;
    }

.master_plan_image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.master_plan_wrapper:hover .master_plan_image {
    transform: scale(1.02);
}

/* Lightbox2 Custom Styling - Modern & Professional */
.lb-overlay {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

/* Remove any black backgrounds from lightbox elements */
.lb-outerContainer {
    background: transparent !important;
}

.lb-container {
    background: transparent !important;
}

.lb-wrapper {
    background: transparent !important;
}

.lb-container {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lb-wrapper {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.lb-image {
    max-width: 100% !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
}

/* Navigation Arrows - Simple SVG Icons */
.lb-nav a.lb-prev,
.lb-nav a.lb-next {
    opacity: 1 !important;
    visibility: visible !important;
    width: 48px !important;
    height: 48px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    z-index: 1000 !important;
    padding: 0 !important;
    top: 50% !important;
    position: relative;
    transform: translateY(-50%) !important;
}

.lb-nav a.lb-prev {
    left: -80px !important;
}

.lb-nav a.lb-next {
    right: -80px !important;
}

    /* Remove default icons */
    .lb-nav a.lb-prev:before,
    .lb-nav a.lb-next:before,
    .lb-nav a.lb-prev:after,
    .lb-nav a.lb-next:after {
        display: none !important;
    }

/* Add SVG icons */
.lb-nav a.lb-prev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m12 19-7-7 7-7'/%3E%3Cpath d='M19 12H5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 24px 24px !important;
}

.lb-nav a.lb-next {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 24px 24px !important;
}

/* Data Container - Hidden */
.lb-dataContainer {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.lb-number {
    display: none !important;
}

.lb-caption {
    display: none !important;
}

/* Close Button - Modern Design */
.lb-close {
    width: 48px !important;
    height: 48px !important;
    background: rgba(5, 55, 154, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 20px rgba(5, 55, 154, 0.4) !important;
    top: 30px !important;
    right: 30px !important;
    z-index: 1001 !important;
}

    .lb-close:hover {
        background: rgba(5, 55, 154, 1) !important;
        transform: scale(1.15) rotate(90deg) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        box-shadow: 0 6px 30px rgba(5, 55, 154, 0.6) !important;
    }

    .lb-close:after {
        content: '�' !important;
        color: #ffffff !important;
        font-size: 32px !important;
        font-weight: 300 !important;
        line-height: 1 !important;
        display: block !important;
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

/* Ensure navigation is always visible */
.lb-wrapper:hover .lb-nav a.lb-prev,
.lb-wrapper:hover .lb-nav a.lb-next {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Loading Spinner - White Only */
.lb-loader {
    border: 4px solid rgba(255, 255, 255, 0.3) !important;
    border-top: 4px solid rgba(255, 255, 255, 1) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto;
    animation: spin 1s linear infinite !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .lb-container {
        max-width: 95vw !important;
        max-height: 95vh !important;
        padding: 20px !important;
    }

    .lb-image {
        max-height: 75vh !important;
        padding: 5px !important;
    }

    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        opacity: 1 !important;
        visibility: visible !important;
        width: 40px !important;
        height: 40px !important;
        background-size: 20px 20px !important;
    }

    .lb-nav a.lb-prev {
        left: -30px !important;
    }

    .lb-nav a.lb-next {
        right: -30px !important;
    }

    .lb-close {
        width: 40px !important;
        height: 40px !important;
        top: 15px !important;
        right: 15px !important;
    }

        .lb-close:after {
            font-size: 28px !important;
        }
}

.media_nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.media_nav_button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #E0E0E0;
}

    .media_nav_button svg {
        width: 20px;
        height: 20px;
        stroke-width: 2;
    }

    .media_nav_button.active {
        background-color: #4A90E2;
        color: #ffffff;
    }

    .media_nav_button:hover:not(.active) {
        background-color: #f5f5f5;
    }

.media_carousel_wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    height: auto;
}

.media_carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* min-height: 480px; */
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    display: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

    .media_carousel.active {
        opacity: 1;
        visibility: visible;
        display: block;
        z-index: 1;
        position: relative;
    }

/* Gallery Carousel */
.gallery_carousel_wrapper,
.plans_carousel_wrapper {
    position: relative;
    width: 100%;
}

.gallery_carousel,
.plans_carousel {
    position: relative;
}

.gallery_slide_item,
.plans_slide_item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
}

    .gallery_slide_item a,
    .plans_slide_item a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        outline: none;
        cursor: pointer;
    }

    .gallery_slide_item picture,
    .plans_slide_item picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .gallery_slide_item img,
    .plans_slide_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .plans_slide_item img {
        object-fit: contain;
        background-color: #f9f9f9;
    }

    .gallery_slide_item:hover img,
    .plans_slide_item:hover img {
        transform: scale(1.05);
    }

/* Gallery Layout - Keep for backward compatibility */
.gallery_layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6px;
    /* height: 480px; */
    align-items: stretch;
}

.gallery_main_image {
    grid-column: 1;
    grid-row: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: stretch;
    max-height: 350px;
}

    .gallery_main_image a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        outline: none;
    }

    .gallery_main_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
    }

    .gallery_main_image:hover img {
        transform: scale(1.05);
    }

.gallery_thumbnails {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    align-items: stretch;
}

.gallery_thumbnail_column {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    min-height: 0;
}

.gallery_thumbnail_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex-shrink: 0;
    height: auto;
}

.gallery_thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

    .gallery_thumbnail a {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        outline: none;
    }

.gallery_thumbnail_column .gallery_thumbnail {
    flex: 1;
    min-height: 0;
    max-height: 220px;
}

.gallery_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* Floor plans specific styling */
#plansCarousel .gallery_thumbnail img,
#plansCarousel .gallery_main_image img {
    object-fit: contain;
    background-color: #f9f9f9;
}

.gallery_thumbnail:hover img {
    transform: scale(1.1);
}

/* .gallery_thumbnail.active {
    border: 3px solid #05379a;
} */

.gallery_thumbnail_more {
    position: relative;
}

.gallery_more_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    cursor: pointer;
}


/* Media Slides */
.media_slide {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.media_carousel.active .media_slide.active {
    display: block;
    opacity: 1;
    z-index: 1;
}

/* For video and streetview, show slide when carousel is active - MUST be after other rules */
#videoCarousel.active .media_slide,
#streetviewCarousel.active .media_slide {
    display: block !important;
    opacity: 1 !important;
    position: relative !important;
    visibility: visible !important;
    width: 100% !important;
}

    #videoCarousel.active .media_slide.active,
    #streetviewCarousel.active .media_slide.active {
        display: block !important;
        opacity: 1 !important;
    }

.media_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media_slide iframe {
    width: 100%;
    min-height: 480px;
    height: 480px;
    border: none;
    border-radius: 16px;
    display: block;
}

#streetviewCarousel.active .media_slide iframe {
    display: block !important;
    width: 100% !important;
    height: 480px !important;
    min-height: 480px !important;
    visibility: visible !important;
}

.video_carousel_wrapper {
    position: relative;
    width: 100%;
}

.video_carousel {
    position: relative;
}

.video_slide_item {
    position: relative;
}

.video_thumbnail_wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

    .video_thumbnail_wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.video_play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #FF0000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

    .video_play_button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .video_play_button svg {
        width: 40px;
        height: 40px;
        fill: #ffffff;
        margin-left: 4px;
    }

/* Video Modal Styles */
.video_modal_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .video_modal_overlay.active {
        display: flex;
    }

.video_modal_content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

    .video_modal_close:hover {
        background-color: rgba(255, 255, 255, 1);
    }

    .video_modal_close svg {
        width: 24px;
        height: 24px;
        color: #000;
    }

.video_modal_iframe_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

    .video_modal_iframe_wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

.media_carousel_prev,
.media_carousel_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

    .media_carousel_prev:hover,
    .media_carousel_next:hover {
        background-color: rgba(255, 255, 255, 1);
    }

.media_carousel_prev {
    left: 20px;
}

.media_carousel_next {
    right: 20px;
}

    .media_carousel_prev svg,
    .media_carousel_next svg {
        width: 24px;
        height: 24px;
        color: #000;
    }

.media_carousel_dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.media_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s;
}

    .media_dot.active {
        background-color: #ffffff;
    }

/* Info Tabs Section */
.info_section {
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.info_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin: 0 0 20px 0;
}

/* Pricing Section - Modern Glassmorphism Theme */
.pricing_section {
    padding: 60px 0;
    padding-inline: 10px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #E0E0E0;
}

/* .pricing_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(5, 55, 154, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 144, 226, 0.08) 0%, transparent 50%);
    pointer-events: none;
} */

.pricing_section_card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(5, 55, 154, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

    .pricing_section_card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #05379a 0%, #4A90E2 50%, #05379a 100%);
        background-size: 200% 100%;
        animation: shimmer 3s ease-in-out infinite;
        border-radius: 24px 24px 0 0;
    }

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.pricing_section_header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing_section_label {
    font-size: 14px;
    font-weight: 700;
    color: #05379a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 16px 0;
}

.pricing_section_title {
    font-size: 28px;
    font-weight: 700;
    color: #05379a;
    margin: 0;
    line-height: 1.3;
}

.similar_properties_section .pricing_table_wrapper {
    margin-bottom: 0;
}
.pricing_table_wrapper .highlights_paragraph_hidden,
.pricing_table_wrapper .about_paragraph_hidden{
    max-height: max-content;
}
.pricing_table_wrapper table{
    width:100%;
    margin-inline:auto !important;
    border: none;
}
.pricing_title_highlight {
    color: #4A90E2;
    position: relative;
    display: inline-block;
}

    .pricing_title_highlight::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #05379a 0%, #4A90E2 100%);
        border-radius: 2px;
        box-shadow: 0 2px 8px rgba(5, 55, 154, 0.2);
    }

.pricing_table_wrapper {
    margin-bottom: 32px;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 3px rgba(5, 55, 154, 0.05);
}

.pricing_table_wrapper {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
    font-family: 'Poppins', sans-serif;
}

    .pricing_table_wrapper thead {
        background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .pricing_table_wrapper thead tr{
        background:transparent !important
    }

    .pricing_table_wrapper th {
        padding: 20px 24px !important;
        text-align: left;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff !important;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
        white-space: nowrap;
        width: max-content !important;
        background: transparent !important;
    }

        .pricing_table_wrapper th:first-child {
            border-top-left-radius: 10px;
        }

        .pricing_table_wrapper th:last-child {
            border-top-right-radius: 10px;
        }

    .pricing_table_wrapper tbody tr {
        border-bottom: 1px solid rgba(5, 55, 154, 0.1);
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

        .pricing_table_wrapper tbody tr:nth-child(even) {
            background: rgba(240, 247, 255, 0.6);
        }

        .pricing_table_wrapper tbody tr:hover {
            background: rgba(5, 55, 154, 0.08);
            transform: translateX(4px);
            box-shadow: -4px 0 0 #05379a;
            border-left: 3px solid #4A90E2;
        }

        .pricing_table_wrapper tbody tr:last-child {
            border-bottom: none;
        }

    .pricing_table_wrapper td {
        padding: 18px 24px !important;
        font-size: 14px !important;
        color: #333 !important;
        font-weight: 500;
        vertical-align: middle;
        line-height: 1.6;
        width: max-content !important;
        border: none;
    }
        .pricing_table_wrapper td > *{
            font-size:15px !important
        }
        .pricing_table_wrapper td:first-child {
            font-weight: 600;
            color: #05379a;
        }

.pricing_action_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.pricing_phone_button,
.pricing_contact_button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #05379a;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #05379a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(5, 55, 154, 0.1);
}

a.pricing_phone_button {
    text-decoration: none;
}

a.pricing_phone_button::before {
    pointer-events: none;
}

    .pricing_phone_button::before,
    .pricing_contact_button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(5, 55, 154, 0.1), transparent);
        transition: left 0.5s ease;
    }

    .pricing_phone_button:hover::before,
    .pricing_contact_button:hover::before {
        left: 100%;
    }

    .pricing_phone_button:hover {
        background: rgba(5, 55, 154, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(5, 55, 154, 0.2);
        border-color: #4A90E2;
    }

.pricing_contact_button {
    background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
    color: #ffffff;
    border: 2px solid #05379a;
    box-shadow: 0 4px 15px rgba(5, 55, 154, 0.2);
}

    .pricing_contact_button:hover {
        background: linear-gradient(135deg, #042d7a 0%, #05379a 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(5, 55, 154, 0.4);
        border-color: #042d7a;
    }

    .pricing_phone_button svg,
    .pricing_contact_button svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

@media (max-width: 768px) {
    .pricing_section {
        margin: 40px -20px;
        padding: 40px 20px;
    }

    .pricing_section_card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .pricing_section_title {
        font-size: 28px;
    }

    .pricing_table_wrapper {
        overflow-x: auto;
    }

        .pricing_table_wrapper th,
        .pricing_table_wrapper td {
            padding: 14px 16px !important;
            font-size: 13px !important;
        }

    .pricing_action_buttons {
        flex-direction: column;
        width: 100%;
    }

    .pricing_phone_button,
    .pricing_contact_button {
        width: 100%;
        justify-content: center;
    }
}

/* About Developer Section */
.about_developer_section {
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.about_developer_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin: 0 0 20px 0;
}

.about_developer_content {
    margin-bottom: 20px;
}

.about_developer_paragraph {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

    .about_developer_paragraph:last-child {
        margin-bottom: 0;
    }

/* Only applied by JS when content overflows - enables overlay and truncation */
.about_developer_paragraph_hidden {
    max-height: 150px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    position: relative;
    padding-bottom: 12px;
    box-sizing: border-box;
}

    .about_developer_paragraph_hidden::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to bottom, transparent, #ffffff);
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s ease-out;
    }

    .about_developer_paragraph_hidden.expanded::after {
        opacity: 0;
    }

    .about_developer_paragraph_hidden.expanded {
        max-height: none !important;
    }

.about_developer_show_more_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .about_developer_show_more_button:hover {
        background-color: #042d7a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

    .about_developer_show_more_button svg {
        transition: transform 0.3s ease;
    }

    .about_developer_show_more_button.expanded svg {
        transform: rotate(180deg);
    }

/* Developer Properties Section */
.developer_properties_section {
    border-bottom: 1px solid #E0E0E0;
}

.developer_properties_section_title {
    font-size: 24px;
    font-weight: 600;



    
    color: #05379a;
    margin: 0 0 32px 0;
}

.developer_properties_carousel_wrapper {
    position: relative;
    padding: 0 20px 20px 20px;
}

/* Owl Carousel Custom Styles */
.developer_properties_carousel,
.video_carousel,
.gallery_carousel,
.plans_carousel {
    position: relative;
}

    /* Video Carousel Styles */
    .video_carousel .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        margin: 0;
    }

        .video_carousel .owl-nav button {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9) !important;
            border: 2px solid #E0E0E0 !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            pointer-events: all;
            margin: 0 !important;
        }

            .video_carousel .owl-nav button.owl-prev {
                left: 20px;
                position: absolute;
            }

            .video_carousel .owl-nav button.owl-next {
                right: 20px;
                position: absolute;
            }

            .video_carousel .owl-nav button:hover {
                background: #05379a !important;
                border-color: #05379a !important;
                color: #ffffff !important;
                box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
                transform: scale(1.1);
            }

            .video_carousel .owl-nav button span {
                font-size: 0;
                display: none;
            }

    .video_carousel .owl-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

        .video_carousel .owl-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D0D0D0 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none !important;
            padding: 0 !important;
            margin: 0 4px !important;
        }

            .video_carousel .owl-dots button.active {
                background: #05379a !important;
                width: 24px;
                border-radius: 5px;
            }

            .video_carousel .owl-dots button:hover {
                background: #4A90E2 !important;
            }

    /* Gallery and Plans Carousel Styles */
    .gallery_carousel .owl-nav,
    .plans_carousel .owl-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        margin: 0;
    }

        .gallery_carousel .owl-nav button,
        .plans_carousel .owl-nav button {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.9) !important;
            border: 2px solid #E0E0E0 !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            pointer-events: all;
            margin: 0 !important;
        }

            .gallery_carousel .owl-nav button.owl-prev,
            .plans_carousel .owl-nav button.owl-prev {
                left: 20px;
                position: absolute;
            }

            .gallery_carousel .owl-nav button.owl-next,
            .plans_carousel .owl-nav button.owl-next {
                right: 20px;
                position: absolute;
            }

            .gallery_carousel .owl-nav button:hover,
            .plans_carousel .owl-nav button:hover {
                background: #05379a !important;
                border-color: #05379a !important;
                color: #ffffff !important;
                box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
                transform: scale(1.1);
            }

            .gallery_carousel .owl-nav button span,
            .plans_carousel .owl-nav button span {
                font-size: 0;
                display: none;
            }

    .gallery_carousel .owl-dots,
    .plans_carousel .owl-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

        .gallery_carousel .owl-dots button,
        .plans_carousel .owl-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D0D0D0 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none !important;
            padding: 0 !important;
            margin: 0 4px !important;
        }

            .gallery_carousel .owl-dots button.active,
            .plans_carousel .owl-dots button.active {
                background: #05379a !important;
                width: 24px;
                border-radius: 5px;
            }

            .gallery_carousel .owl-dots button:hover,
            .plans_carousel .owl-dots button:hover {
                background: #4A90E2 !important;
            }

.developer_properties_carousel {
    position: relative;
}

    .developer_properties_carousel .owl-stage-outer {
        padding: 10px 0;
    }

    .developer_properties_carousel .owl-item {
        padding: 0 12px;
    }

    .developer_properties_carousel .owl-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: auto;
        bottom: -60px;
        width: auto;
        display: flex;
        gap: 12px;
        justify-content: center;
        pointer-events: none;
        z-index: 10;
    }

        .developer_properties_carousel .owl-nav button {
            width: 48px;
            height: 48px;
            background: #ffffff !important;
            border: 2px solid #E0E0E0 !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            pointer-events: all;
            margin: 0 !important;
            position: relative;
        }

            .developer_properties_carousel .owl-nav button.owl-prev {
                left: auto;
                position: relative;
            }

            .developer_properties_carousel .owl-nav button.owl-next {
                right: auto;
                position: relative;
            }

            .developer_properties_carousel .owl-nav button:hover {
                background: #05379a !important;
                border-color: #05379a !important;
                color: #ffffff !important;
                box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
                transform: scale(1.1);
            }

            .developer_properties_carousel .owl-nav button.disabled {
                opacity: 0.3;
                cursor: not-allowed;
            }

                .developer_properties_carousel .owl-nav button.disabled:hover {
                    background: #ffffff !important;
                    border-color: #E0E0E0 !important;
                    color: #000 !important;
                    transform: scale(1);
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                }

            .developer_properties_carousel .owl-nav button span {
                font-size: 0;
                display: none;
            }

    .developer_properties_carousel .owl-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }

        .developer_properties_carousel .owl-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #D0D0D0 !important;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none !important;
            padding: 0 !important;
            margin: 0 4px !important;
        }

            .developer_properties_carousel .owl-dots button.active {
                background: #05379a !important;
                width: 24px;
                border-radius: 5px;
            }

            .developer_properties_carousel .owl-dots button:hover {
                background: #4A90E2 !important;
            }

.developer_property_card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .developer_property_card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: #05379a;
    }

.developer_property_card_image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

    .developer_property_card_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.developer_property_card:hover .developer_property_card_image img {
    transform: scale(1.1);
}

.developer_property_card_badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(5, 55, 154, 0.3);
}

.developer_property_card_content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.developer_property_card_title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.developer_property_card_location {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin: 0;
}

    .developer_property_card_location svg {
        flex-shrink: 0;
        color: #05379a;
    }

.developer_property_card_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid #F0F0F0;
}

.developer_property_card_type {
    font-size: 13px;
    font-weight: 500;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 50%;
}

.developer_property_card_price {
    font-size: 15px;
    font-weight: 600;
    color: #05379a;
}

.developer_property_card_button {
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

    .developer_property_card_button:hover {
        background: linear-gradient(135deg, #042d7a 0%, #05379a 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

@media (max-width: 1024px) {
    .developer_properties_carousel_wrapper {
        padding: 0 40px 20px 40px;
    }

    .developer_properties_carousel .owl-nav button.owl-prev {
        left: auto;
        position: relative;
    }

    .developer_properties_carousel .owl-nav button.owl-next {
        right: auto;
        position: relative;
    }
}

@media (max-width: 768px) {
    .developer_properties_carousel_wrapper {
        padding: 0 20px 20px 20px;
    }

    .developer_properties_carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }

        .developer_properties_carousel .owl-nav button.owl-prev {
            left: auto;
            position: relative;
        }

        .developer_properties_carousel .owl-nav button.owl-next {
            right: auto;
            position: relative;
        }

    .developer_property_card_image {
        height: 200px;
    }

    .developer_property_card_content {
        padding: 16px;
    }

    .developer_property_card_title {
        font-size: 16px;
    }
}

/* About Section */
.about_section {
    padding: 40px 0;
    border-bottom: 1px solid #E0E0E0;
}

.about_section_title {
    font-size: 24px;
    font-weight: 600;
    color: #05379a;
    margin: 0 0 20px 0;
}

.about_content {
    margin-bottom: 20px;
}

.about_paragraph {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

    .about_paragraph:last-child {
        margin-bottom: 0;
    }

.about_paragraph_hidden,
.highlights_paragraph_hidden {
    max-height: 120px;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    position: relative;
}

    .about_paragraph_hidden::after,
    .highlights_paragraph_hidden::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40px;
        background: linear-gradient(to bottom, transparent, #ffffff);
        pointer-events: none;
        opacity: 1;
        transition: opacity 0.3s ease-out;
    }

    .about_paragraph_hidden.expanded::after,
    .highlights_paragraph_hidden.expanded::after {
        opacity: 0;
    }

    .about_paragraph_hidden.expanded,
    .highlights_paragraph_hidden.expanded {
        max-height: none !important;
    }

.about_show_more_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .about_show_more_button:hover {
        background-color: #042d7a;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

    .about_show_more_button svg {
        transition: transform 0.3s ease;
    }

    .about_show_more_button.expanded svg {
        transform: rotate(180deg);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.info_table_wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #E8E8E8;
}

.info_table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
}

    .info_table thead {
        background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
    }

    .info_table th {
        padding: 18px 28px;
        text-align: left;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        border-bottom: none;
    }

        .info_table th:first-child {
            border-top-left-radius: 16px;
        }

        .info_table th:last-child {
            border-top-right-radius: 16px;
        }

    .info_table tbody tr {
        border-bottom: 1px solid #F0F0F0;
        transition: all 0.3s ease;
        background-color: #ffffff;
    }

        .info_table tbody tr:first-child {
            border-top: none;
        }

        .info_table tbody tr:last-child {
            border-bottom: none;
        }

        .info_table tbody tr:hover {
            background-color: #F8F9FF;
            box-shadow: 0 2px 8px rgba(5, 55, 154, 0.1);
            border-left: 3px solid #4A90E2;
        }

        .info_table tbody tr:nth-child(even) {
            background-color: #FAFAFA;
        }

            .info_table tbody tr:nth-child(even):hover {
                background-color: #F8F9FF;
            }

    .info_table td {
        padding: 18px 28px;
        font-size: 14px;
        color: #333;
        vertical-align: top;
        line-height: 1.7;
    }

.info_table_label {
    font-weight: 600;
    color: #05379a;
    width: 35%;
    min-width: 250px;
    font-size: 14px;
}

.info_table_value {
    font-weight: 400;
    color: #555;
    line-height: 1.7;
    font-size: 14px;
}

/* Contact Fixed Button */
.contact_fixed_button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(5, 55, 154, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .contact_fixed_button:hover {
        background-color: #042d7a;
        box-shadow: 0 6px 25px rgba(5, 55, 154, 0.4);
        transform: translateY(-2px);
    }

    .contact_fixed_button svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
    }

/* WhatsApp Fixed Button */
.whatsapp_fixed_button {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .whatsapp_fixed_button:hover {
        background-color: #20BA5A;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
        transform: translateY(-2px) scale(1.05);
    }

    .whatsapp_fixed_button svg {
        width: 28px;
        height: 28px;
        fill: #ffffff;
    }

/* Contact Popover */
.contact_popover {
    position: fixed;
    bottom: -100%;
    right: 30px;
    width: 420px;
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

    .contact_popover.active {
        bottom: 80px;
    }

.contact_popover_header {
    background: linear-gradient(135deg, #05379a 0%, #4A90E2 100%);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #ffffff;
}

.contact_popover_header_content {
    flex: 1;
}

.contact_popover_title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.contact_popover_subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact_popover_close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

    .contact_popover_close:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .contact_popover_close svg {
        width: 20px;
        height: 20px;
        color: #ffffff;
    }

.contact_popover_body {
    padding: 24px 16px;
    overflow: visible;
}

.contact_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .contact_form_group label {
        font-size: 14px;
        font-weight: 600;
        color: #000;
    }

    .contact_form_group input,
    .contact_form_group textarea {
        padding: 12px 16px;
        border: 1px solid #E0E0E0;
        border-radius: 8px;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
        color: #000;
        transition: border-color 0.2s;
        outline: none;
    }

        .contact_form_group input:focus,
        .contact_form_group textarea:focus {
            border-color: #05379a;
        }

    .contact_form_group textarea {
        resize: vertical;
        min-height: 100px;
    }

.contact_form_submit {
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

    .contact_form_submit:hover {
        background-color: #042d7a;
    }

/* Inline success/error message below property form submit button */
.contact_form_message {
    margin-top: 12px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.45;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact_form_message:not(:empty) {
    opacity: 1;
    visibility: visible;
}

.contact_form_message_success {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.contact_form_message_error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact_form_msg_icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.contact_form_message_success .contact_form_msg_icon {
    background: #10b981;
    color: #fff;
}

.contact_form_message_error .contact_form_msg_icon {
    background: #ef4444;
    color: #fff;
}

/* Popover Overlay */
.contact_popover_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .contact_popover_overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* Property Footer Actions */

.share_button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 90px;
    padding-inline: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(5, 55, 154, 0.2);
}

    .share_button:hover {
        background-color: #042d7a;
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
        transform: translateY(-1px);
    }

    .share_button svg {
        width: 16px;
        height: 16px;
        stroke: #ffffff;
    }

.status_button {
    background-color: #f7f7f8;
    color: #05379a;
    border: 1px solid #05379a;
    border-radius: 90px;
    padding-inline: 20px;
    height: 40px;
    font-size: 13px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .status_button svg {
        width: 20px !important;
        height: 20px !important;
        fill: #05379a !important;
    }

    .status_button:hover {
        background-color: #05379a;
        color: #ffffff;
    }
    .status_button:hover svg {
        fill: #ffffff !important;
    }

.developer_button {
    background-color: #f7f7f8;
    color: #05379a;
    border:1px solid #05379a;
    border-radius: 90px;
    padding-inline: 20px;
    height: 40px;
    font-size: 13px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    gap: 6px;
}

    .developer_button svg {
        width: 20px !important;
        height: 20px !important;
        fill: #121212 !important;
    }

    .developer_button:hover {
        background-color: #05379a;
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

    .developer_button:hover svg {
        fill: #ffffff !important;
    }

/* Share Property Modal */
.share_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

    .share_modal_overlay.active {
        opacity: 1;
        visibility: visible;
    }

.share_modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 90%;
    max-width: 480px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .share_modal.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

.share_modal_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.share_modal_title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.share_modal_close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s;
    border-radius: 4px;
}

    .share_modal_close:hover {
        background-color: #f5f5f5;
        color: #000;
    }

    .share_modal_close svg {
        width: 20px;
        height: 20px;
    }

.share_modal_body {
    padding: 24px;
}

.share_url_section {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.share_url_input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f9f9f9;
    outline: none;
    transition: all 0.2s;
}

    .share_url_input:focus {
        border-color: #05379a;
        background-color: #fff;
    }

.share_copy_button {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

    .share_copy_button:hover {
        background-color: #042d7a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

    .share_copy_button svg {
        width: 16px;
        height: 16px;
        stroke: #ffffff;
    }

.share_social_section {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.share_social_button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

    .share_social_button svg {
        width: 20px;
        height: 20px;
    }

.share_facebook {
    background-color: #1877F2;
    color: #ffffff;
}

    .share_facebook:hover {
        background-color: #166FE5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
    }

.share_twitter {
    background-color: #1DA1F2;
    color: #ffffff;
}

    .share_twitter:hover {
        background-color: #1A91DA;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
    }

.share_whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

    .share_whatsapp:hover {
        background-color: #22C55E;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

.share_telegram {
    background-color: #0088cc;
    color: #ffffff;
}

    .share_telegram:hover {
        background-color: #0077B5;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    }

.share_separator {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

    .share_separator::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #e0e0e0;
    }

.share_separator_text {
    position: relative;
    background-color: #ffffff;
    padding: 0 16px;
    color: #666;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.share_download_button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #05379a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

    .share_download_button:hover {
        background-color: #042d7a;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(5, 55, 154, 0.3);
    }

    .share_download_button svg {
        width: 20px;
        height: 20px;
        stroke: #ffffff;
    }

/* Gallery Modal */
.gallery_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
}

    .gallery_modal_overlay.active {
        opacity: 1;
        visibility: visible;
    }

.gallery_modal_content {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0;
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: max-content;
}

.gallery_modal_image_wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

    .gallery_modal_image_wrapper img {
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        display: block;
    }

.gallery_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

    .gallery_modal_close:hover {
        background-color: #f5f5f5;
        transform: scale(1.1);
    }

    .gallery_modal_close svg {
        width: 24px;
        height: 24px;
        stroke: #000;
    }

.gallery_modal_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery_modal_item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background-color: #f5f5f5;
    cursor: pointer;
    transition: transform 0.2s;
}

    .gallery_modal_item:hover {
        transform: scale(1.02);
    }

    .gallery_modal_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ============================================
   MOBILE RESPONSIVE STYLES (576px and below)
   ============================================ */
@media (max-width: 576px) {
    /* Container & Layout */
    .container {
        padding: 0 16px;
    }
    .faq_question_wrapper{
        gap:12px;
    }
    .main_layout {
        padding: 30px 0 20px;
        border-radius: 16px;
    }

        /* Main Title */
        .main_layout .main_title {
            font-size: 20px;
            gap: 8px;
        }

    .main_title_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .title_actions {
        width: 100%;
        flex-wrap: nowrap;
        gap: 8px;
        justify-content: flex-start;
        overflow: auto;
    }

    .share_button,
    .developer_button,
    .status_button {
        height: 36px;
        padding-inline: 16px;
        font-size: 12px;
    }

    .share_button {
        width: 36px;
        min-width: 36px;
        padding-inline: 0;
    }

    .title_actions button span {
        min-width: max-content;
    }

    /* Meta Details Row */
    .meta_details_row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        align-items: flex-start;
    }

        .meta_details_row .item {
            width: 100%;
            justify-content: flex-start;
            align-items: start;
        }

            .meta_details_row .item .icon {
                width: 32px;
                height: 32px;
                padding: 0;
                border:1px solid #05379a;
            }

                .meta_details_row .item .icon svg {
                    width: 16px;
                    height: 16px;
                }

            .meta_details_row .item .label .label_text,
            .meta_details_row .item .label .value_text {
                font-size: 13px;
            }

    /* Main Image */
    .main_image {
        padding-block: 0;
    }

        .main_image img {
            border-radius: 16px;
        }

    .property_actions_overlay {
        bottom: 12px;
        right: 0;
    }

    .property_actions_buttons {
        gap: 8px;
    }

    .property_action_button {
        padding: 10px 16px;
        font-size: 10px;
    }

        .property_action_button svg {
            width: 12px;
            height: 12px;
        }

    .main_image_overlay {
        bottom: 12px;
        right: 12px;
    }

    .artistic_impression_text {
        padding: 6px 12px;
        font-size: 10px;
    }

    /* About Section */
    .about_section,
    .about_developer_section {
        padding: 30px 0;
    }

    .about_section_title,
    .about_developer_section_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .about_paragraph,
    .about_developer_paragraph {
        font-size: 14px;
        line-height: 1.7;
    }

    .about_show_more_button,
    .about_developer_show_more_button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Location Section */
    .location_section {
        padding: 30px 0;
    }

    .location_section_title {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.4;
    }

    .location_content_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location_info_card {
        padding: 24px 20px;
        min-height: max-content;
        max-height: max-content;
    }

    .location_map_card {
        min-height: max-content;
        max-height: max-content;
        order: -10;
    }

    .location_address_text {
        font-size: 16px;
    }

    .location_address_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .location_direction_button {
        width: 100%;
        justify-content: center;
    }

    .location_transport_heading {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .location_advantage_paragraph {
        font-size: 13px;
    }

    .location_category_title {
        font-size: 15px;
    }


    /* amenities section */
    .amenities_section .section_title {
        font-size: 20px;
    }

    /* Highlights Section */
    .info_section {
        padding: 30px 0;
    }

    .info_section_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .info_table_wrapper {
        border-radius: 12px;
    }

    .info_table th {
        padding: 14px 16px;
        font-size: 11px;
    }

    .info_table td {
        padding: 14px 16px;
        font-size: 13px;
    }

    .info_table_label {
        min-width: 200px;
        font-size: 13px;
    }

    .info_table_value {
        font-size: 13px;
    }

    /* Pricing Section */
    .pricing_section {
        padding: 30px 0;
        margin: 20px -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing_section_card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .pricing_section_label {
        font-size: 11px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .pricing_section_title {
        font-size: 20px;
        line-height: 1.3;
    }

    .pricing_table_wrapper {
        border-radius: 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }


        .pricing_table_wrapper th {
            padding: 12px 10px !important;
            font-size: 10px !important;
            letter-spacing: 0.8px;
        }

        .pricing_table_wrapper td {
            padding: 12px 10px !important;
            font-size: 10px !important;
        }
            .pricing_table_wrapper td > * {
                font-size: 10px !important;
            }
    .pricing_action_buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .pricing_phone_button,
    .pricing_contact_button {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Similar Properties Section */
    .similar_properties_section {
        padding: 30px 0;
        margin: 20px -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Developer Properties Carousel */
    .developer_properties_section_title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .developer_properties_carousel_wrapper {
        padding: 0 0 20px 0;
    }

    .developer_properties_carousel .owl-nav button {
        width: 36px;
        height: 36px;
    }

        .developer_properties_carousel .owl-nav button.owl-prev {
            left: auto;
            position: relative;
        }

        .developer_properties_carousel .owl-nav button.owl-next {
            right: auto;
            position: relative;
        }

    .developer_property_card_image {
        height: 180px;
    }

    .developer_property_card_content {
        padding: 16px;
    }

    .developer_property_card_title {
        font-size: 16px;
    }

    .developer_property_card_location {
        font-size: 13px;
    }

    .developer_property_card_type,
    .developer_property_card_price {
        font-size: 12px;
    }

    .developer_property_card_button {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Media Sections */
    .media_section {
        padding: 30px 0;
    }

    .media_section_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    /* Gallery Layout */
    .gallery_layout {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery_main_image {
        max-height: 250px;
        grid-column: 1;
        grid-row: 1;
    }

    .gallery_thumbnails {
        grid-column: 1;
        grid-row: 2;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
    }

    .gallery_thumbnail_column {
        flex-direction: row;
        min-width: 0;
    }

        .gallery_thumbnail_column .gallery_thumbnail {
            min-width: 100px;
            max-height: 100px;
            flex: 0 0 100px;
        }

    .gallery_thumbnail_row {
        display: flex;
        gap: 8px;
    }

    .gallery_thumbnail {
        min-width: 100px;
        flex: 0 0 100px;
    }

    /* Master Plan */
    .master_plan_wrapper {
        border-radius: 12px;
    }

    .master_plan_image {
        border-radius: 12px;
    }

    /* Plans Section */
    #plansCarousel .gallery_main_image {
        max-height: 300px;
    }

    /* Video Section */
    .video_thumbnail_wrapper {
        height: 250px;
        border-radius: 12px;
        min-height: 250px;
    }

    .video_play_button {
        width: 60px;
        height: 60px;
    }

        .video_play_button svg {
            width: 30px;
            height: 30px;
        }

    .video_carousel .owl-nav button,
    .gallery_carousel .owl-nav button,
    .plans_carousel .owl-nav button {
        width: 40px !important;
        height: 40px !important;
    }

        .video_carousel .owl-nav button.owl-prev,
        .gallery_carousel .owl-nav button.owl-prev,
        .plans_carousel .owl-nav button.owl-prev {
            left: 10px !important;
        }

        .video_carousel .owl-nav button.owl-next,
        .gallery_carousel .owl-nav button.owl-next,
        .plans_carousel .owl-nav button.owl-next {
            right: 10px !important;
        }

    .gallery_slide_item,
    .plans_slide_item {
        height: 250px;
    }

    /* Amenities Section */
    .amenities_section {
        padding: 30px 0;
    }

    .section_title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .amenities_section .amenities_row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 0;
    }

    .amenities_section {
        border-bottom: none;
    }

        .amenities_section .amenities_row .amenity_item .icon {
            width: 40px;
            height: 40px;
            padding: 0;
        }

            .amenities_section .amenities_row .amenity_item .icon svg {
                width: 20px;
            }

        .amenities_section .amenities_row .amenity_item .background_icon {
            height: 28px;
        }

    .amenity_item {
        padding: 20px 0;
    }

    .amenities_section .amenities_row .amenity_item .content {
        padding-top: 40px;
    }

    .amenities_section .amenities_row .amenity_title {
        font-size: 12px;
    }


    /* FAQ Section */
    .faq_list {
        grid-template-columns: 1fr;
    }

    .faq_section {
        padding: 30px 0;
    }

    .faq_section_title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .faq_item {
        padding: 16px 0;
        border-right: none;
    }

        .faq_item:nth-child(even) {
            padding-left: 0;
        }

    .faq_question_text {
        font-size: 14px;
    }

    .faq_answer_text {
        font-size: 13px;
    }

    .whatsapp_fixed_button {
        bottom: 120px;
        width: 48px;
        height: 48px;
    }

        .whatsapp_fixed_button svg {
            width: 20px;
        }
    /* Contact Fixed Button */
    .contact_fixed_button {
        bottom: 60px;
        right: 20px;
        padding: 10px 16px;
        font-size: 13px;
    }

    /* Lightbox Mobile */
    .lb-container {
        max-width: 100% !important;
        width: 100%;
        max-height: 95vh !important;
        padding: 10px !important;
    }

    .lb-image {
        max-height: 80vh !important;
        border-radius: 8px !important;
    }

    .lb-nav a.lb-prev,
    .lb-nav a.lb-next {
        width: 40px !important;
        height: 40px !important;
        background-size: 20px 20px !important;
        top: -30px !important;
    }

    .lb-nav a.lb-prev {
        left: 10px !important;
    }

    .lb-nav a.lb-next {
        right: 10px !important;
    }

    .lightbox .lb-image {
        border: none !important;
    }

    .lb-close {
        width: 36px !important;
        height: 36px !important;
        top: 10px !important;
        right: 10px !important;
    }

        .lb-close:after {
            font-size: 24px !important;
        }

    /* Gallery Modal */
    .gallery_modal_content {
        padding: 0;
        margin: 20px;
        border-radius: 12px;
        top: 50%;
        transform: translateY(-50%);
    }

    .gallery_modal_image_wrapper {
        min-height: max-content;
    }

        .gallery_modal_image_wrapper img {
            max-height: 75vh;
            border-radius: 8px;
        }

    .gallery_modal_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gallery_modal_close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    /* Location Modal */
    .location_modal_content {
        padding: 40px 20px 20px;
        margin: 20px;
        max-height: 90vh;
    }

    .location_modal_title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact_popover {
        width: max-content;
        min-width: 300px;
        right: 20px;
        max-width: calc(100% - 40px);
        border-radius: 12px;
    }

    .contact_popover_header {
        gap: 12px;
        padding: 12px;
    }

    .contact_popover_title {
        font-size: 14px;
    }

    .contact_popover_subtitle {
        font-weight: 12px;
    }

    .contact_popover_body {
        padding-inline: 12px;
    }

    .contact_form_group input {
        padding-block: 0;
        height: 40px;
        font-size: 13px;
    }

    .contact_form_submit {
        height: 44px;
        padding-block: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 600;
    }
}

.back-to-top {
    display: none !important;
}

p[data-f-id="pbf"] {
    display: none !important;
}
