:root {
    /* --primary-color: #2F2F2F; */
    --primary-color: #2A3749;
    /* --secondary-color: #515151; */
    --secondary-color: #8FA1D6;
    --third-color: #ffffff;
    --text-color: #000000;
    --light-bg: #f5f5f5;
    --menu-color: #2F2F2F;
    --btn-bg-color: #ff6f00;
    --btn-text-color: #ffffff;
    --highlight-color: #2795d8;
    --sucess-color: Green;

}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    /* font-family: "Roboto", serif; */
    color: var(--text-color) !important;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--third-color);
    color: var(--menu-color) !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 10px -6px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;

}

.logo img {
    max-width: 35%;
}

.nav-links {
    display: flex;
    gap: 15px;
    /* Reduced gap to fit more items */
    align-items: center;
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s;
    padding-bottom: 5px;
    position: relative;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    /* Prevent text wrapping */
    font-size: 15px;
    /* Slightly smaller font if needed */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--menu-color);
}

.nav-phone-box {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 6px 12px;
    border-radius: 4px;
    /* margin-left: 20px; */
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    gap: 8px;
}

.nav-phone-box:hover {
    background: var(--primary-color);
    color: #fff;
}

.input-group {
    Padding-bottom: 20px;
    position: relative;
}

.input-group-rb {
    Padding-bottom: 10px !important;
    position: relative;
}

.input-width {
    width: 295px !important;
}

.input-width-rb {
    width: 290px !important;
}

/* Fix for Mobile Input Overlap */
.iti input,
.iti input[type=text],
.iti input[type=tel] {
    padding-left: 90px !important;
    /* Ensure enough space for flag + code */
}

@media (max-width: 1250px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .nav-phone-box {
        margin-left: 10px;
        padding: 6px 10px;
        font-size: 13px;
    }
}

/* Enquiry Box Updates */
.enquire-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    /* Match the gold color from image */
    color: white;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 998;
    border: none;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden by default, shown when box is minimized */
}

.enquiry-box.minimized {
    transform: translateY(100%);
    /* Hide completely off-screen */
}

/* Right Fixed Enquiry Box */
.enquiry-box {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #f9f9f9;
    padding: 15px;
    width: 290px;
    box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.8);
    z-index: 999;
    border-radius: 4px;
    transition: transform 0.4s ease-in-out;
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.btn-callback-header {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-callback-header:hover {
    background: var(--primary-color);
    color: white;
}

.close-enquiry-btn {
    font-size: 18px;
    cursor: pointer;
    color: #555;
    padding: 5px;
    line-height: 1;
}

.close-enquiry-btn:hover {
    color: #000;
}

.enquiry-box h3 {
    margin-bottom: 15px;
    font-size: 18px;
    text-align: center;
}

.enquiry-box input,
.enquiry-box textarea,
.enquiry-box select,
.modal-content input,
.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #585858;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: var(--third-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-submit:hover {
    background: var(--secondary-color);
}

.form-message {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.form-message.success {
    color: green;
}

.form-message.error {
    color: red;
}

/* Home Section */
.home-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.home-slider .slide {
    height: 600px;
    background-size: cover;
    background-position: center;
}



/* Redesigned Home Info Box */
.home-info-box.redesigned {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #fff;
    width: 350px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 1.2);
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    padding: 0;
}

.home-info-box .header-strip {
    background: var(--highlight-color);
    color: #ffffff;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
}

.home-info-box .box-content {
    padding: 10px 20px 10px;
}

.home-info-box h3 {
    font-size: 23px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-info-box .subtitle {
    font-size: 18px;
    color: #000000;
    margin-bottom: 15px;
}

.home-info-box .divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0 20px;
}

.developer-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.details-wrapper {
    /* Default no background for desktop if preferred, or add if needed */
    width: 100%;
}

.blue-banner {
    background: #444;
    /* Match existing desktop theme or use blue */
    color: #fff;
    padding: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.blue-banner.small-banner {
    background: #f5f5f5;
    /* Light grey for desktop standard look? Or keep colored? */
    color: var(--text-color);
    border-left: 3px solid var(--text-color);
    text-align: left;
    padding: 5px 10px;
}

.project-details-grid {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1.1fr 0.9fr;
    gap: 15px;
    text-align: left;
}

.detail-item {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    font-size: 14px;
}

.detail-item .label {
    color: #888;
    width: 90px;
    /* Fixed width to align values */
    flex-shrink: 0;
}

.detail-item .value {
    font-weight: 700;
    color: var(--text-color);
    white-space: nowrap;
}

.offer-strip {
    background: var(--text-color);
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    margin: 15px 0;
}

.home-info-box .info-bar {
    background: #f8f8f8;
    color: #444;
    padding: 5px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-area {
    margin-top: 20px;
    margin-bottom: 20px;
}

.config-text {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.price-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-text .small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.btn-enquire-dark {
    background: #222;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-enquire-dark:hover {
    background: #000;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.blink-anim {
    /* animation: blink 2s infinite; */
    animation: pulse-btn 2s ease forwards infinite;
}

/* Enquire Button & Animation */
.home-info-box .action-area {
    margin-bottom: 10px;
}

.btn-enquire-animated {
    /* background: linear-gradient(to bottom, #444, #222); */
    background: linear-gradient(to bottom, var(--btn-bg-color), var(--btn-bg-color));
    color: var(--btn-text-color);
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(130, 188, 236, 0.3);
    outline: none;
}

.btn-callback-animated {
    /* background: linear-gradient(to bottom, #444, #222); */
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-color));
    color: var(--btn-text-color);
    border: none;
    padding: 5px 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(130, 188, 236, 0.3);
    outline: none;
    margin-left: 40px;
}

.txt-enquire-animated {
    background: linear-gradient(to bottom, var(--highlight-color), var(--highlight-color));
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    outline: none;
    animation: pulse-btn 2s ease forwards infinite;
}

/* Button Pulse Animation */
@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(60, 60, 60, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(60, 60, 60, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(60, 60, 60, 0);
    }
}

.btn-enquire-animated {
    animation: pulse-btn 2s ease forwards infinite;
}

.btn-callback-animated {
    animation: pulse-btn 2s ease forwards infinite;
}

.txt-enquire-animated {
    animation: pulse-btn 2s ease forwards infinite;
}

/* RERA Text */
.home-info-box .rera-text {
    font-size: 9px;
    color: #000;
    margin: 5px 0 0;
    padding: 0 15px;
    line-height: 1.2;
}

/* Sections General */
.section {
    padding: 30px 0;
}

.bg-light {
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
}

/* Price Section */
.price-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    /* Force single row on desktop */
}

.price-card {
    background: #e4f3fe;
    padding: 25px;
    border: 1px solid #d8d7d7;
    text-align: left;
    flex: 1;
    /* Allow growing */
    min-width: 200px;
    max-width: 250px;
    border-radius: 8px;
    transition: transform 0.3s;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    box-shadow: rgb(0, 0, 0) 0px 5px 15px;
}

.price-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

@media (max-width: 991px) {
    .price-grid {
        flex-wrap: wrap;
        /* Wrap on smaller screens */
    }
}

.price-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2F2F2F;
}

.price-card .area {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.price-card .price {
    font-size: 28px;
    font-weight: 800;
    color: #2F2F2F;
    margin: 10px 0 5px;
}

.price-card .price .small {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.price-card .rate {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
}

.price-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.price-card .features li {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.price-card .features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 12px;
}

.get-quote-btn {
    width: 100%;
}

.btn-enquire,
.btn-download {
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--third-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-enquire:hover,
.btn-download:hover {
    background-color: var(--primary-color);
}

/* Site Plan & Gallery */
.site-plan-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sitemap-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    filter: blur(2px);
}

.sitemap-grid img:hover {
    transform: scale(1.03);
}

/* Amenities Redesign */
.amenities-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.amenity-column {
    flex: 1;
    min-width: 300px;
}

.zone-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.zone-title i {
    font-size: 24px;
}

/* Zone Colors */
.active-zone {
    color: #5b8bb7;
}

.rec-zone {
    color: #e88d3e;
}

.park-zone {
    color: #74b04f;
}

.kids-zone {
    color: #d6538b;
}

.mt-4 {
    margin-top: 30px;
}

.amenity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.amenity-list li {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.amenity-list li span {
    font-weight: 600;
    color: #888;
    margin-right: 12px;
    min-width: 25px;
    display: inline-block;
}

/* Responsive Amenities */
@media (max-width: 768px) {
    .amenities-container {
        flex-direction: column;
    }

    .amenity-column {
        width: 100%;
        margin-bottom: 30px;
    }
}


/* Location Section */
.location-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.map-box {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.location-details {
    flex: 1;
    min-width: 300px;
}

.address-box {
    background: var(--primary-color);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.address-box i {
    font-size: 30px;
    color: var(--third-color);
    margin-top: 5px;
}

.address-box h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.address-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

.landmarks-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.landmarks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.landmark-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eee;
}

.landmark-card i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
    text-align: center;
}

.landmark-card h5 {
    margin: 0 0 5px;
    font-size: 15px;
    color: var(--text-color);
}

.landmark-card p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }

    .landmarks-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--third-color);
    text-align: center;
    padding: 20px 0;
}

footer p:first-child {
    font-size: 10px;
    text-align: left;
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.6); */
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    background-color: var(--third-color);
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 625px;
    border-radius: 8px;
    position: relative;
    height: 570px;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Gallery Modal Special Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    /* Higher than other modals */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    position: relative;
    text-align: center;
    background: transparent;
    border: none;
}

.gallery-modal-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.close-gallery {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2002;
}

.close-gallery:hover,
.close-gallery:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Gallery Navigation */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {

    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color);
}

@media only screen and (max-width: 700px) {
    .gallery-modal-content {
        width: 100%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .enquiry-box {
        display: none;
    }

    .btn-mobile-enquire {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: var(--primary-color);
        color: var(--third-color);
        border: none;
        font-size: 18px;
        font-weight: bold;
        z-index: 999;
        cursor: pointer;
    }
}

@media (min-width: 992px) {
    .btn-mobile-enquire {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        background: var(--third-color);
        /* Fixed background matching navbar */
        text-align: center;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: var(--menu-color);
        border-bottom: none;
        padding: 5px 0;
        display: block;
    }

    .nav-links .nav-phone-box {
        display: inline-flex;
        margin: 10px auto;
        width: 80%;
        justify-content: center;
        padding: 12px;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
        background: #f5f5f5;
        border-bottom: none;
        /* No underline in mobile menu */
    }


    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    /* Mobile Banner Box Position */
    .home-section {
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .home-slider,
    .home-slider .slide {
        height: 150px;
        /* Reduced slider height */
        position: relative;
    }

    .home-info-box.redesigned {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 90%;
        max-width: 400px;
        margin: -20px auto 20px;
        /* Overlap slider slightly or just margin */
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 1.0);
        z-index: 10;
        background: #fff;
        padding-bottom: 20px;
        height: auto !important;
        display: block;
        overflow: hidden;
    }

    .home-info-box .header-strip {
        background: var(--highlight-color);
        /* Dark Blue */
        border-radius: 15px 15px 0 0;
        padding: 5px;
        font-size: 16px;
    }

    .blue-banner {
        background: var(--highlight-color);
        color: #fff;
        padding: 10px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 2px;
        font-size: 16px;
    }

    .blue-banner.small-banner {
        padding: 8px;
        font-size: 16px;
        margin-bottom: 1px;
    }

    .developer-name {
        text-align: center;
        font-weight: bold;
        color: var(--text-color);
        margin-bottom: 10px;
        font-size: 14px;
    }

    .details-wrapper {
        background: #e6e6e6;
        padding: 12px;
        margin: 10px -20px 20px;
        /* Negative margin to go edge to edge if parent has padding */
    }

    /* Adjust parent padding for edge-to-edge details */
    .home-info-box .box-content {
        padding: 10px 20px 0;
    }

    .home-info-box .box-content.bottom {
        padding: 0 20px 10px;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
        gap: 1px;
        /* Reduced gap since vertical list */
    }

    .detail-item {
        margin-bottom: 3px;

    }

    .detail-item .label {
        color: #888;
        font-size: 13px;
        width: 110px;
        /* Increased to fit 'Land Parcel' comfortably */
        /* Fixed width for alignment */
        display: inline-block;
        flex-shrink: 0;
    }

    .detail-item .value {
        font-weight: bold;
        color: var(--text-color);
        font-size: 13px;
    }

    .pricing-area {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .price-text {
        color: var(--primary-color);
        font-size: 30px;
        font-weight: 800;
    }

    .btn-enquire-animated {
        background: var(--btn-bg-color);
        /* Solid Blue */
        border-radius: 5px;
        width: 100%;
        max-width: 200px;
    }
}

/* Modal Features */
.modal-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.feature-group {
    flex: 1;
    text-align: left;
}

.feature-group h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

@media (max-width: 600px) {
    .modal-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Widgets */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-icon 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
}

.call-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    /* Positioned next to WhatsApp */
    background-color: #007bff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-icon 2s infinite;
}

.call-float:hover {
    color: #fff;
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.scroll-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: #FFF;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.scroll-top:hover {
    background-color: var(--secondary-color);
}

/* Sitemap Modal Special Styles */
.sitemap-modal {
    display: none;
    position: fixed;
    z-index: 2001;
    /* Higher than other modals */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.sitemap-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    position: relative;
    text-align: center;
    background: transparent;
    border: none;
}

.sitemap-modal-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.close-sitemap {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2002;
}

.close-sitemap:hover,
.close-sitemap:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Sitemap Navigation */
.sitemap-prev,
.sitemap-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    /* Add background for better visibility */
}

.sitemap-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.sitemap-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.sitemap-prev:hover,
.sitemap-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.rera-p {
    padding: 10px 0 0 0;
}

.zoho-form-iframe {
    width: 100%;
    /* responsive width */
    max-width: 610px;
    /* original form width */
    height: 520px;
    /* stable desktop height */
    border: none;
    display: block;
    margin: 0 auto;
    /* center on larger screens */
}

/* Mobile height adjustment */
@media (max-width: 480px) {
    .zoho-form-iframe {
        height: 520px !important;
        /* extra height for mobile keyboards and longer forms */
    }
}

/* Redesigned Modal Styles */
.redesigned-modal {
    background-color: #ffffff !important;
    color: #fff;
    border: none;
    padding: 30px 40px;
    height: auto;
    max-width: 295px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.redesigned-modal .close-modal {
    color: #000000;
    opacity: 0.7;
    top: 15px;
    right: 20px;
}

.redesigned-modal .close-modal:hover {
    opacity: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.modal-header img {
    width: 30%;
}

.modal-subtitle {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.redesigned-modal input,
.redesigned-modal select,
.redesigned-modal textarea {
    border: 1px solid #585858 !important;
    color: #000000 !important;
    border-radius: 2px !important;
    padding: 12px 15px !important;
    margin-bottom: 20px !important;
    font-size: 14px;
}

.redesigned-modal input::placeholder,
.redesigned-modal textarea::placeholder {
    color: #aab2bd;
}

.redesigned-modal select {
    color: #fff;
}

/* Ensure selected option is visible */

.redesigned-modal button[type="submit"] {
    background: linear-gradient(to bottom, var(--btn-bg-color), var(--btn-bg-color));
    color: var(--btn-text-color);
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(130, 188, 236, 0.3);
    outline: none;
    /* Remove pulse if preferred for clean look, or keep */
}

/* .redesigned-modal button[type="submit"]:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
} */

.modal-features-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.modal-features-footer .feature-item {
    display: flex;
    flex-direction: column;
    /* Stack icon and text */
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    font-size: 11px;
    line-height: 1.3;
    flex: 1;
}

.modal-features-footer .feature-item i {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
    /* White icons as per ref */
    width: auto;
}

/* Validation Styling */
.error-msg {
    color: #ff6b6b;
    font-size: 12px;
    text-align: left;
    margin-top: -15px;
    /* Pull closer to input above */
    margin-bottom: 15px;
    display: none;
    padding-left: 2px;
}

.input-error {
    border-color: #ff6b6b !important;
}