/* Virtual Tours Section */
.virtual-tour-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.virtual-tour-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}

.virtual-tour-thumb img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.virtual-tour-thumb:hover img {
    transform: scale(1.04);
}

.virtual-tour-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.25);
    transition: background 0.2s;
}

.virtual-tour-thumb:hover .virtual-tour-play {
    background: rgba(0,0,0,0.38);
}

.virtual-tour-play i {
    font-size: 64px;
    color: #ff0000;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    transition: transform 0.2s;
}

.virtual-tour-thumb:hover .virtual-tour-play i {
    transform: scale(1.1);
}


/* Hero Banner Section */
.hero-wrapper {
    position: relative;
}


.hero-section {
    position: relative;
    min-height: clamp(820px, 92vh, 1080px);
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel .carousel-inner {
    height: 100%;
    min-height: clamp(820px, 92vh, 1080px);
}

.hero-carousel .carousel-item {
    height: 100%;
    min-height: clamp(820px, 92vh, 1080px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 47, 0.74);
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-content {
    padding: 80px 0 60px;
    width: 100%;
}

.hero-content h1,
.hero-content p {
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .hero-wrapper .nav-bar {
        padding: 0;
    }
}

.hero-form-card {
    background: #fff;
    border-radius: 6px;
    padding: 36px 32px 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.22);
}

.hero-form-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.hero-form-card .form-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 4px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    font-size: 14px;
    padding: 10px 14px;
}

.hero-form-card .btn-send {
    background: #72B626;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 12px;
    border-radius: 4px;
    transition: background 0.2s;
}

.hero-form-card .btn-send:hover {
    background: #5a9a1e;
}

.hero-btn-brochure {
    background: #72B626;
    border: 2px solid #72B626;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-btn-brochure:hover {
    background: #5a9a1e;
    border-color: #5a9a1e;
    color: #fff;
}

.hero-btn-phone {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-btn-phone:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 100vh;
    }
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 100vh;
    }
    .hero-content {
        padding: 100px 0 40px;
    }
    .hero-form-card {
        padding: 28px 20px 24px;
        margin-top: 32px;
    }
}

/* Property Detail Modal */
.property-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.property-modal-content {
    background: #fff;
    border-radius: 4px;
    max-width: 1020px;
    width: 100%;
    max-height: 92vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.property-modal-body {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    max-height: 92vh;
}

.property-modal-gallery {
    flex: 2.5;
    min-width: 0;
    position: relative;
    background: #111;
    overflow: hidden;
}

.property-modal-gallery img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    font-size: 1.1rem;
    color: #333;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.gallery-arrow:hover {
    background: #fff;
}

.gallery-arrow-prev { left: 14px; }
.gallery-arrow-next { right: 14px; }

.property-modal-form {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
}

.property-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    color: #555;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px 8px;
    transition: color 0.2s;
    z-index: 10;
}

.property-modal-close:hover {
    color: #000;
}

.property-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a1a1a;
    padding-right: 24px;
}

@media (max-width: 767.98px) {
    .property-modal-body {
        flex-direction: column;
        max-height: none;
    }
    .property-modal-gallery {
        flex: none;
        height: 260px;
    }
    .property-modal-gallery img {
        min-height: 260px;
        height: 260px;
    }
    .property-modal-form {
        max-width: 100%;
        min-width: 0;
        padding: 24px 20px;
    }
    .property-modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
}
/********** Template CSS **********/
:root {
    --primary: #72B626;
    --secondary: #41B8C4;
    --light: #F4FAE8;
    --dark: #231F20;
    --bs-primary: #72B626;
    --bs-primary-rgb: 114, 182, 38;
    --bs-secondary: #41B8C4;
    --bs-secondary-rgb: 65, 184, 196;
    --bs-link-color: #72B626;
    --bs-link-hover-color: #5a9a1e;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: absolute;
    margin-top: 30px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

/* Close button is mobile-only — hidden on desktop */
.mobile-nav-close-btn {
    display: none;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(114, 182, 38, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(114, 182, 38, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(114, 182, 38, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(114, 182, 38, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


/*** About Us Section ***/
.about-founder-wrap {
    position: relative;
    padding: 24px 24px 24px 0;
}

.about-founder-img-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.about-founder-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    border-radius: 14px;
    display: block;
}

.about-founder-img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-founder-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 88%;
    height: 92%;
    border: 3px solid var(--primary);
    border-radius: 14px;
    z-index: 0;
    opacity: 0.2;
}

.founder-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    min-width: 210px;
    z-index: 3;
}

.founder-badge-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.founder-badge-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.2;
}

.founder-badge-company {
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.about-exp-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(114, 182, 38, 0.45);
    z-index: 3;
    min-width: 110px;
}

.about-exp-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}

.about-exp-num span { font-size: 1.4rem; }

.about-exp-label {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.92;
    margin-top: 4px;
    line-height: 1.3;
}

.about-eyebrow {
    display: inline-block;
    background: rgba(114, 182, 38, 0.1);
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(114, 182, 38, 0.35);
    margin-bottom: 14px;
}

.about-heading {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

.about-accent-bar {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin-bottom: 22px;
}

.about-para {
    color: #5a6575;
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-stat-item {
    background: #f4f9ee;
    border-radius: 10px;
    padding: 18px 12px;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    transition: .3s;
}

.about-stat-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(114, 182, 38, 0.25);
}

.about-stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    transition: .3s;
}

.about-stat-item:hover .about-stat-num { color: #fff; }

.about-stat-num span { font-size: 1.2rem; }

.about-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    margin-top: 6px;
    transition: .3s;
    line-height: 1.3;
}

.about-stat-item:hover .about-stat-label { color: rgba(255,255,255,0.92); }

.about-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.about-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 10px;
}

.about-feature-list li i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .about-founder-wrap {
        margin-bottom: 50px;
        padding: 20px 10px 20px 0;
    }
    .about-founder-img { height: 360px; }
    .founder-badge { left: 0; bottom: -20px; }
    .about-exp-badge { top: -10px; right: 0; }
    .about-heading { font-size: 1.8rem; }
}


/*** Amenities & Facilities ***/
.amenities-section {
    background: #f4f9ee;
}

.amenity-item {
    background: #fff;
    border-radius: 10px;
    padding: 22px 12px 18px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07);
    transition: .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(114, 182, 38, 0.15);
}

.amenity-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(114, 182, 38, 0.1);
    border: 1px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 22px;
    transition: .3s;
    flex-shrink: 0;
}

.amenity-item:hover .amenity-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.amenity-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.amenity-item.upcoming .amenity-icon {
    background: rgba(65, 184, 196, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

.amenity-item.upcoming:hover .amenity-icon {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.amenity-group-label {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 18px;
    border-radius: 20px;
}

.amenity-group-current {
    background: rgba(114, 182, 38, 0.12);
    color: var(--primary);
    border: 1px solid rgba(114, 182, 38, 0.35);
}

.amenity-group-upcoming {
    background: rgba(65, 184, 196, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(65, 184, 196, 0.35);
}


/*** Property Status Tags ***/
.property-tags-row {
    gap: 6px;
    flex-wrap: wrap;
}

.property-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tag-rera {
    background: rgba(114, 182, 38, 0.12);
    color: var(--primary);
    border: 1px solid rgba(114, 182, 38, 0.4);
}

.tag-ready {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
    border: 1px solid rgba(25, 135, 84, 0.35);
}

.tag-construction {
    background: rgba(65, 184, 196, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(65, 184, 196, 0.4);
}

.tag-completed {
    background: rgba(14, 46, 80, 0.1);
    color: var(--dark);
    border: 1px solid rgba(14, 46, 80, 0.3);
}


/*** Master Layout — thumbnail wrap ***/
.master-layout-wrap {
    position: relative;
    display: block;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
}
.master-layout-wrap:hover .master-layout-zoom-hint { opacity: 1; }
.master-layout-zoom-hint {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,.62);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px 6px 12px;
    border-radius: 6px;
    pointer-events: none;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .9;
    transition: opacity .2s;
}
.master-layout-zoom-hint::before {
    content: '';
    display: inline-block;
    width: 14px; height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.47 6.47 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z'/%3E%3C/svg%3E") no-repeat center/contain;
}

/*** Master Layout — fullscreen zoom/pan modal ***/
#mlModal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 999999;
    flex-direction: column;
    animation: mlFadeIn .2s ease;
}
#mlModal.open { display: flex; }
@keyframes mlFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Toolbar */
#mlToolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
#mlToolbar .ml-tool-group {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 3px;
}
#mlToolbar button {
    width: 36px; height: 36px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
#mlToolbar button:hover { background: rgba(255,255,255,.18); }
#mlZoomLevel {
    color: rgba(255,255,255,.85);
    font-size: .8rem;
    font-weight: 700;
    min-width: 46px;
    text-align: center;
    font-family: monospace;
    letter-spacing: .02em;
}
#mlTitle {
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    flex: 1;
}
#mlClose {
    width: 36px; height: 36px;
    border: none;
    background: rgba(255,60,60,.15);
    border-radius: 8px;
    color: #ff6b6b;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    margin-left: auto;
}
#mlClose:hover { background: rgba(255,60,60,.35); color: #fff; }

/* Canvas */
#mlCanvas {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    position: relative;
    touch-action: none;
}
#mlCanvas.dragging { cursor: grabbing; }
#mlImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    will-change: transform;
    display: block;
}

/* Hint bar */
#mlHint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,.5);
    color: rgba(255,255,255,.85);
    font-size: .75rem;
    padding: 6px 18px;
    border-radius: 20px;
    pointer-events: none;
    white-space: nowrap;
    transition: opacity .8s;
    backdrop-filter: blur(4px);
}

/* Mini-map */
#mlMinimap {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 130px;
    height: 80px;
    border: 1.5px solid rgba(255,255,255,.2);
    border-radius: 6px;
    overflow: hidden;
    opacity: .7;
    background: rgba(0,0,0,.4);
    display: none;
}
#mlMinimap img { width: 100%; height: 100%; object-fit: contain; opacity: .7; }
#mlMinimapVp {
    position: absolute;
    border: 1.5px solid #41B8C4;
    background: rgba(65,184,196,.15);
    pointer-events: none;
    transition: all .05s;
}

/* Mobile toolbar adjustments */
@media (max-width: 575px) {
    #mlToolbar { padding: 8px 10px; gap: 4px; }
    #mlToolbar button { width: 32px; height: 32px; font-size: .95rem; }
    #mlZoomLevel { font-size: .72rem; min-width: 38px; }
    #mlTitle { display: none; }
    #mlMinimap { display: none !important; }
}


/*** Footer Disclaimer ***/
.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
}


/*** Sold Out Corner Ribbon (top-right) ***/
.sold-out-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}

.sold-out-ribbon::before {
    content: 'Sold Out';
    position: absolute;
    top: 22px;
    right: -30px;
    width: 130px;
    padding: 7px 0;
    background: #c81e1e;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.sold-out-ribbon::after { content: none; }

/* Dark overlay on sold-out property image */
.sold-out-img-wrap img {
    filter: brightness(0.45);
}


/*** WhatsApp Sticky Button ***/
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 9998;
    transition: .3s;
}

.whatsapp-sticky i {
    font-size: 22px;
    line-height: 1;
}

.whatsapp-sticky:hover {
    background: #1da851;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}


/* =============================================
   MOBILE RESPONSIVE STYLES
   ============================================= */

/* Tablet & below (≤991px) */
@media (max-width: 991.98px) {

    /* Normal navbar mobile */
    .nav-bar {
        padding: 0;
    }
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 16px;
        margin-right: 0;
    }
    .navbar-collapse {
        background: #fff;
        padding: 8px 16px 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    /* Hero section — overlay becomes relative so it pushes the section height */
    .hero-section {
        min-height: 100svh;
        overflow: visible;
    }
    .hero-carousel .carousel-inner,
    .hero-carousel .carousel-item {
        min-height: 100%;
        height: 100%;
    }
    .hero-overlay {
        position: relative;
        inset: auto;
        min-height: 100svh;
        width: 100%;
        background: rgba(10, 25, 47, 0.74);
        display: flex;
        align-items: flex-start;
        z-index: 1;
    }
    .hero-carousel {
        position: absolute;
        inset: 0;
        height: 100%;
    }
    .hero-content {
        padding: 80px 0 48px;
        text-align: center;
    }
    .hero-content .d-flex {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 1.7rem !important;
    }
    .hero-content p {
        font-size: 14px !important;
    }
    .hero-form-card {
        margin-top: 24px;
        margin-bottom: 40px;
        padding: 24px 20px;
        border-radius: 10px;
    }
    .hero-form-card h4 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    .hero-btn-brochure,
    .hero-btn-phone {
        font-size: 14px;
        padding: 10px 18px;
        width: auto;
    }
    /* Nav bar NOT sticky on mobile — handled by JS, but also lock via CSS */
    .nav-bar {
        position: relative !important;
    }

    /* ── Mobile nav side drawer ── */
    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    .mobile-nav-backdrop.active {
        opacity: 1;
        pointer-events: all;
    }
    #navbarCollapse {
        position: fixed !important;
        top: 0 !important;
        left: -290px !important;
        width: 270px !important;
        height: 100dvh !important;
        background: #fff !important;
        z-index: 9999 !important;
        flex-direction: column !important;
        padding: 64px 0 24px !important;
        overflow-y: auto !important;
        box-shadow: 4px 0 24px rgba(0,0,0,0.18) !important;
        transition: left 0.3s cubic-bezier(.4,0,.2,1) !important;
        display: flex !important;
    }
    #navbarCollapse.show {
        left: 0 !important;
    }
    #navbarCollapse .navbar-nav {
        flex-direction: column !important;
        width: 100%;
        padding: 0 8px;
    }
    #navbarCollapse .nav-link {
        padding: 13px 20px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        border-radius: 8px;
        margin-bottom: 2px;
        color: #1a1a2e !important;
    }
    #navbarCollapse .nav-link:hover,
    #navbarCollapse .nav-link.active {
        background: rgba(65,184,196,0.1);
        color: #41B8C4 !important;
    }
    .mobile-nav-close-btn {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 34px;
        height: 34px;
        background: #f2f2f2;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1rem;
        color: #333;
        z-index: 10;
        line-height: 1;
    }

    /* About section */
    .about-founder-wrap {
        margin-bottom: 40px;
    }
    .about-founder-img {
        height: 300px;
    }
    .about-heading {
        font-size: 1.6rem;
    }
    .about-stat-num {
        font-size: 1.5rem;
    }
    .founder-badge {
        left: 0;
        bottom: -16px;
        min-width: 180px;
        font-size: 12px;
        padding: 10px 14px;
    }
    .about-exp-badge {
        top: -10px;
        right: 0;
        min-width: 90px;
    }

    /* Master layout */
    .master-layout-wrap {
        border-radius: 6px;
    }

    /* Property cards */
    .property-item .p-4 {
        padding: 16px !important;
    }

    /* Virtual tours */
    .virtual-tour-play i {
        font-size: 48px;
    }

    /* Footer */
    .footer-menu a {
        margin: 0 6px;
        font-size: 13px;
    }
    .footer .copyright {
        font-size: 13px;
    }

    /* Back to top */
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 38px;
        height: 38px;
        line-height: 38px;
    }

    /* WhatsApp button */
    .whatsapp-sticky {
        bottom: 70px;
        right: 16px;
        font-size: 13px;
        padding: 10px 14px 10px 12px;
    }
    .whatsapp-sticky i {
        font-size: 18px;
    }
}

/* Mobile only (≤767px) */
@media (max-width: 767.98px) {

    /* Section headings */
    h1.display-5 { font-size: 1.5rem; }
    h2 { font-size: 1.4rem; }

    /* Hero */
    .hero-content h1 {
        font-size: 1.4rem !important;
    }
    .col-lg-5.offset-lg-1 {
        margin-top: 20px;
    }

    /* Amenities grid */
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .amenity-item {
        padding: 12px 6px;
    }
    .amenity-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .amenity-name {
        font-size: 11px;
    }

    /* Property filter buttons */
    #propertyFilter {
        justify-content: center !important;
        gap: 6px !important;
    }
    #propertyFilter .btn {
        font-size: 13px;
        padding: 6px 12px;
    }

    /* Virtual tours stacked */
    .virtual-tour-play i {
        font-size: 40px;
    }

    /* Footer disclaimer */
    .footer-disclaimer p {
        font-size: 11px !important;
    }
    .footer-menu {
        margin-top: 10px;
    }
    .footer-menu a {
        display: inline-block;
        margin: 4px 5px;
    }

    /* Property modal */
    .property-modal-body {
        flex-direction: column;
    }
    .property-modal-gallery {
        height: 220px;
    }

    /* Sold out ribbon — no changes needed on mobile */
}

/* Small phones (≤575px) */
@media (max-width: 575.98px) {

    /* Hero */
    .hero-content {
        padding: 72px 0 36px;
    }
    .hero-content h1 {
        font-size: 1.3rem !important;
    }
    .hero-content p {
        font-size: 13px !important;
    }
    .hero-btn-brochure,
    .hero-btn-phone {
        width: auto;
        justify-content: center;
        flex: 1 1 auto;
        min-width: 140px;
        text-align: center;
    }
    .hero-form-card {
        padding: 20px 16px;
        margin-bottom: 32px;
    }
    .hero-form-card .form-control,
    .hero-form-card .form-select {
        font-size: 13px;
        padding: 9px 12px;
    }

    /* Amenities grid smaller */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Property filter wrap */
    #propertyFilter {
        flex-wrap: wrap;
    }

    /* Section padding reduction */
    .container-fluid.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* About stats row */
    .about-stats-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Virtual tour cards full width */
    .virtual-tour-card {
        margin-bottom: 16px;
    }

    /* WhatsApp label hidden on very small screens */
    .whatsapp-sticky span {
        display: none;
    }
    .whatsapp-sticky {
        padding: 12px;
        border-radius: 50%;
    }
    .whatsapp-sticky i {
        font-size: 22px;
        margin: 0;
    }

    /* Footer copyright stacked */
    .copyright .col-md-6 {
        text-align: center !important;
    }
}
/* ── Contact Us Popup — Mobile Fix (≤640px) ── */
@media (max-width: 640px) {
    /* Stack the two columns vertically */
    #ivwg {
        flex-direction: column !important;
        min-height: auto !important;
    }

    /* Form side — full width, tighter padding */
    #i8br {
        padding: 28px 20px 20px !important;
        overflow-y: visible !important;
    }

    /* Contact info side — full width, stacks below form */
    #i9b43 {
        width: 100% !important;
        padding: 24px 20px !important;
        flex-shrink: 1 !important;
    }

    /* Tighten heading & subtext */
    #issdp {
        font-size: 1.25rem !important;
        margin-bottom: 4px !important;
    }
    #i04g {
        font-size: 0.9rem !important;
        margin-bottom: 18px !important;
    }

    /* Contact info heading */
    #i75it {
        font-size: 1rem !important;
        margin-bottom: 18px !important;
    }

    /* Reduce icon size */
    #ievmm, #i2bd4, #iavyr {
        width: 36px !important;
        height: 36px !important;
    }

    /* Address / phone / email text */
    #ij7nr, #izoca, #ie2yo {
        font-size: 0.82rem !important;
    }

    /* The GrapesJS form block inner padding */
    #i3t2w {
        padding: 24px 16px !important;
    }
    #ib70o {
        padding: 24px 20px !important;
    }
}

/* ── About Us Popup — Mobile Fix (≤640px) ── */
@media (max-width: 640px) {
    /* Increase image panel height so face is fully visible */
    #i3gf {
        height: 300px !important;
    }

    /* Show full image without cropping top */
    #i5c5n {
        object-position: center 10% !important;
    }

    /* Match list item font size to paragraph font size */
    #iwpy9,
    #iq0by,
    #i6qpw,
    #ithik {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
    }

    /* Match checkmark icon size to text */
    #iljhf,
    #i0wwi,
    #i9vm1,
    #i39wg {
        font-size: 0.82rem !important;
    }
}
