/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mobile Menu Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Mobile Video Wrapper - Hidden on Desktop */
.mobile-video-wrapper {
    display: none;
}

/* Mobile Navigation - Hidden on Desktop */
.mobile-nav {
    display: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Main Container */
.desktop-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #FFFFFF;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: transparent;
}

/* Left Section - Content Area */
.left-section {
    flex: 0 0 50%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 80px 60px 80px;
    position: relative;
    min-height: 100vh;
}

.content-wrapper {
    position: absolute;
    top: calc(30px + 40vh);
    left: 140px;
    transform: translateY(-50%);
    width: calc(100% - 280px);
    max-width: 900px;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
}

/* Logo */
.logo-wrapper {
    position: absolute;
    top: 30px;
    left: 140px;
    width: 164.91px;
    height: 42.38px;
    margin-bottom: 40px;
    margin-top: 0;
    opacity: 1;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text Content */
.text-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.main-headline {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-style: normal;
    font-size: 42px;
    line-height: 130%;
    letter-spacing: 0;
    color: #213B2C;
    width: 100%;
    max-width: 900px;
    background: transparent;
    margin: 0;
    display: block;
    text-align: left;
    padding: 0;
    white-space: normal;
}

.subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0;
    color: #395645;
    width: 100%;
    max-width: 500px;
    background: transparent;
    margin: 0;
    display: block;
    text-align: left;
    padding: 0;
    white-space: normal;
}

/* Contact Button */
.contact-btn {
    background-color: #275139;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    width: 157px;
    height: 51px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
    position: relative;
    z-index: 15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 120px;
    max-width: 200px;
}

.contact-btn:hover {
    background-color: #1f3f2e;
    transform: translateY(-2px);
}

/* Right Section - Visual Area */
.right-section {
    flex: 0 0 50%;
    position: relative;
    background-color: transparent;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
}

/* Video Wrapper */
.video-wrapper {
    width: calc(100% - 40px);
    height: 80vh;
    position: relative;
    top: 30px;
    right: 0;
    margin: 0 20px 0 0;
    border-radius: 20px;
    overflow: hidden;
}

.background-video {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    border: 2px solid rgba(39, 81, 57, 0.05);
    box-shadow: inset 0px 0px 38.3px rgba(33, 59, 44, 0.25);
    border-radius: 20px;
}

/* Image Fade Top */
.image-fade-top {
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    top: 0;
    background: linear-gradient(360deg, rgba(247, 255, 252, 0) 31.27%, rgba(54, 87, 75, 0.84) 100%);
    border-radius: 20px;
    z-index: 2;
}

/* Image Fade Bottom */
.image-fade-bottom {
    position: absolute;
    width: 100%;
    height: 25%;
    left: 0;
    bottom: 0;
    background: linear-gradient(360deg, rgba(171, 74, 74, 0) 31.27%, rgba(171, 74, 74, 0.39) 100%);
    border-radius: 20px;
    transform: matrix(1, 0, 0, -1, 0, 0);
    z-index: 2;
}

/* Navigation */
.navigation {
    position: absolute;
    width: auto;
    height: 29px;
    left: 20px;
    top: 20px;
    z-index: 10;
    background: transparent;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 32px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    transition: opacity 0.2s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 0px;
    gap: 9px;
    width: 131.19px;
    height: 29px;
    border-bottom: 1px solid #FFFFFF;
}

.nav-cta span {
    width: 109px;
    height: 19px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
}

.arrow-icon {
    width: 9.33px;
    height: 9.33px;
    color: #FFFFFF;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Discover Section */
.discover-section {
    padding: 20px 0;
    text-align: center;
    position: relative;
}

/* Common Section Title Styles */
.discover-title,
.why-choose-title,
.amenities-title,
.investment-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 139%;
    letter-spacing: 0;
    color: #213B2C;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 600px;
}

.journey-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 139%;
    letter-spacing: 0;
    color: #213B2C;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 600px;
}

.section-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0;
    color: #395645;
    width: 100%;
    max-width: 800px;
    opacity: 1;
    background: transparent;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 20px;
}

/* Image Carousel Group */
.image-carousel-group {
    width: 100%;
    margin: 60px 0 0 0;
    padding: 0;
    text-align: center;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    position: relative;
}

.image-carousel-group:active {
    cursor: grabbing;
}

.carousel-svg {
    width: 100vw;
    height: auto;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-out;
    margin-left: calc(-50vw + 50%);
    transform: translateX(0);
}

.carousel-svg:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Why Choose Section */
.why-choose-section {
    background: #F2F8F2;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    position: relative;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 11px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 337.99px;
    display: flex;
    flex-direction: column;
}

.feature-image {
    width: calc(100% - 30px);
    height: 163.95px;
    border-radius: 10px;
    margin: 16.4px 15px 0 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 27px;
    color: #304D3C;
    margin: 20px 0 15px 0;
    padding: 0 20px;
    flex-shrink: 0;
}

.feature-card p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #395645;
    padding: 0 20px;
    margin-bottom: 20px;
    flex: 1;
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    text-align: center;
    background: #FFFFFF;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.amenity-item {
    text-align: center;
}

.amenity-icon {
    width: 64px;
    height: 64px;
    background: #40624E;
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.amenity-item:nth-child(1) .amenity-icon {
    background-image: url('assets/41.svg');
}

.amenity-item:nth-child(2) .amenity-icon {
    background-image: url('assets/42.svg');
}

.amenity-item:nth-child(3) .amenity-icon {
    background-image: url('assets/43.svg');
}

.amenity-item:nth-child(4) .amenity-icon {
    background-image: url('assets/44.svg');
}

.amenity-item:nth-child(5) .amenity-icon {
    background-image: url('assets/45.svg');
}

.amenity-item:nth-child(6) .amenity-icon {
    background-image: url('assets/46.svg');
}

.amenity-item h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #395645;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
}

/* Connectivity Section */
.connectivity-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    background: #FFFFFF;
    position: relative;
}

.connectivity-header-mobile {
    display: none;
}

.connectivity-title {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 60px;
    opacity: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 139%;
    color: #213B2C;
    text-align: center;
    padding: 0;
}

.connectivity-content {
    flex: 1;
}

.connectivity-details {
    margin-top: 40px;
}

.connectivity-details p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #395645;
    margin-bottom: 20px;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
}

.divider {
    width: 100%;
    height: 1px;
    background: #BED9C9;
    margin: 20px 0;
}

.map-container {
    flex: 1;
}

.map {
    width: 479px;
    height: 410px;
    background: #FFF8F2;
    border-radius: 16px;
    background-image: url('assets/Map.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Growth Corridor Section */
.growth-corridor-section {
    background: #FFF8F2;
    padding: 80px 0;
    text-align: center;
}

.growth-corridor-title {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: bold;
    font-size: 40px;
    line-height: 139%;
    letter-spacing: 0;
    text-align: center;
    color: #213B2C;
    padding: 0;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #213B2C;
    margin-bottom: 40px;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.advantage-card {
    background: #FFFFFF;
    border-radius: 11px;
    padding: 40px 20px;
    text-align: center;
}

.advantage-icon {
    width: 52px;
    height: 50px;
    background: #EFF8EF;
    border-radius: 11px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.advantage-card:nth-child(1) .advantage-icon {
    background-image: url('assets/Lepakshi Knowledge Hub.svg');
}

.advantage-card:nth-child(2) .advantage-icon {
    background-image: url('assets/1000-Acre SEZ.svg');
}

.advantage-card:nth-child(3) .advantage-icon {
    background-image: url('assets/Infrastructure.svg');
}

.advantage-card:nth-child(4) .advantage-icon {
    background-image: url('assets/Appreciation.svg');
}

.advantage-card h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    color: #213B2C;
    margin-bottom: 15px;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
}

.advantage-card p {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: #395645;
}

.explore-btn {
    background: #275139;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    margin-top: 40px;
    width: auto;
    min-width: 200px;
    height: auto;
}

/* Investment Section */
.investment-section {
    background: transparent;
    padding: 80px 20px;
    text-align: center;
}

.investment-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.investment-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.placeholder-box {
    width: 350px;
    height: 350px;
    background: #E8F5E8;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.investment-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investment-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .placeholder-box {
        width: 350px;
        height: 380px;
        order: -1; /* Placeholder appears above content on mobile */
    }
    
    .immediate-benefits, .sustained-appreciation {
        padding: 30px 25px;
        text-align: center;
    }
}

.immediate-benefits, .sustained-appreciation {
    background: transparent;
    padding: 40px;
    text-align: left;
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}



.immediate-benefits h3, .sustained-appreciation h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 139%;
    color: #213B2C;
    margin-bottom: 30px;
    text-align: left;
}

.immediate-benefits ul, .sustained-appreciation ul {
    list-style: disc;
    padding-left: 0;
    text-align: left;
    margin: 0 auto;
}

.immediate-benefits ul li::marker, .sustained-appreciation ul li::marker {
    color: #213B2C;
    font-size: 18px;
}

.immediate-benefits li, .sustained-appreciation li {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #40624E;
    margin-bottom: 15px;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
    position: relative;
    padding-left: 2px;
}

/* Ideal For Section */
.ideal-for-section {
    width: 100%;
    max-width: 1200px;
    position: relative;
    opacity: 1;
    background: #FFFFFF;
    margin: 0 auto;
    padding: 80px 20px;
}

.ideal-for-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ideal-for-main-title {
    margin: 0 auto 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 139%;
    color: #213B2C;
    text-align: center;
    max-width: 600px;
}

.ideal-for-grid {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    opacity: 1;
}

.ideal-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}



.ideal-item:last-child {
    margin-bottom: 0;
}

.ideal-icon {
    width: 64px;
    height: 64px;
    background: #40624E;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ideal-icon.urban {
    background-color: #F2F8F2;
    background-image: url('assets/Urban Professionals.svg');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.ideal-icon.families {
    background-color: #F2F8F2;
    background-image: url('assets/Families.svg');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.ideal-icon.retirement {
    background-color: #F2F8F2;
    background-image: url('assets/Retirement Planners.svg');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.ideal-icon.agriculture {
    background-color: #F2F8F2;
    background-image: url('assets/Agriculture Enthusiasts.svg');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
}

.ideal-content {
    flex: 1;
}

.ideal-content h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0;
    color: #40624E;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
}

.ideal-content .bold-text {
    font-weight: 700;
    font-style: bold;
}

.ideal-content .regular-text {
    font-weight: 500;
    font-style: medium;
}

/* Phase Development Section - fixed positioning */
.phase-development-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background: #F2F8F2;
    padding: 50px 0;
    overflow: visible;
}

.phase-development-title {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 0 40px 0;
    opacity: 1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-style: bold;
    font-size: 40px;
    line-height: 139%;
    letter-spacing: 0;
    color: #213B2C;
    text-align: left;
    padding: 0;
}

.development-features {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
    min-height: 600px;
}


.development-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.development-features li {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 31px;
    color: #40624E;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.development-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background-image: url('assets/Tick Mark.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.development-image {
    width: 100%;
    max-width: 700px;
    height: 600px;
    background-image: url('assets/Farm Plot.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    margin: 0 auto;
    overflow: visible;
}



/* Journey Section */
.journey-section {
    padding: 80px 0;
    text-align: left;
    background: #FFFFFF;
}

.journey-description {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    color: #40624E;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
    text-shadow: 0px 4px 33.8px rgba(0, 0, 0, 0.25);
}

/* Explore Farm Plots Button */
.explore-farm-plots-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 40px;
    gap: 10px;
    width: 253px;
    height: 51px;
    margin: 60px auto 0;
    background: #275139;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.explore-farm-plots-btn:hover {
    background: #1f3f2e;
    transform: translateY(-2px);
}

.explore-farm-plots-btn span {
    width: 173px;
    height: 27px;
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    background: transparent;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .desktop-container {
        width: 100%;
        height: auto;
    }
    
    .hero-section {
        flex-direction: column;
    }
    
    .left-section {
        flex: none;
        min-height: 50vh;
        padding: 30px 40px;
        width: 100%;
        order: 1;
    }
    
    .right-section {
        flex: none;
        min-height: 50vh;
        width: 100%;
        padding: 0 40px 30px 40px;
        order: 2;
    }
    
    .content-wrapper {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        left: auto;
    }
    
    .text-content {
        position: relative;
        top: 0;
        left: 0;
        width: auto;
        height: auto;
        gap: 25px;
        text-align: center;
    }
    
    .logo-wrapper {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .logo {
        width: 200px;
        height: auto;
    }
    
    .main-headline {
        font-size: 36px;
        width: auto;
        height: auto;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 18px;
        width: auto;
        height: auto;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .contact-btn {
        margin: 0 auto;
        width: 160px;
        height: 48px;
        font-size: 15px;
    }
    
    .navigation {
        top: 20px;
        left: 20px;
        width: auto;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .video-wrapper {
        width: 100%;
        height: 400px;
        position: relative;
        top: 0;
        margin: 0;
        border-radius: 12px;
    }
    
    .background-video {
        width: 100%;
        height: 100%;
        position: relative;
        top: 0;
        left: 0;
        border-radius: 12px;
    }
    
    .image-fade-top,
    .image-fade-bottom {
        width: 100%;
        height: auto;
        position: relative;
        left: 0;
    }
    
    .section {
        padding: 50px 40px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .section-description {
        font-size: 18px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .connectivity-section {
        flex-direction: column;
        text-align: center;
        padding: 50px 40px;
    }
    
    .investment-content {
        grid-template-columns: 1fr;
    }
    
    .investment-row {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .placeholder-box {
        width: 100%;
        max-width: 500px;
        height: 300px;
        order: -1;
    }
    
    .development-features {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: 600px;
    }
    
    .development-image {
        order: -1;
        max-width: 100%;
        height: 400px;
    }
    
    .ideal-for-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 15px 0;
    }
    
    .left-section {
        padding: 25px 30px;
    }
    
    .right-section {
        padding: 0 30px 25px 30px;
    }
    
    .logo {
        width: 180px;
    }
    
    .main-headline {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .contact-btn {
        width: 150px;
        height: 45px;
        font-size: 14px;
    }
    
    .video-wrapper {
        height: 350px;
    }
    
    .section {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        gap: 25px;
    }
    
    .development-image {
        height: 350px;
    }
    
    .placeholder-box {
        height: 250px;
    }
}

@media (max-width: 768px) {
    
    .hero-section {
        flex-direction: column;
        min-height: 100vh;
        padding: 0;
    }
    
    .left-section {
        padding: 0;
        width: 100%;
        order: 1;
        position: relative;
    }
    
    .right-section {
        width: 100%;
        order: 2;
        padding: 0;
    }
    
    .video-wrapper {
        position: relative;
        width: calc(100% - 40px);
        height: 40vh;
        margin: 20px;
        border-radius: 20px;
    }
    
    .background-video {
        border-radius: 20px;
    }
    
    .image-fade-top,
    .image-fade-bottom {
        border-radius: 20px;
    }
    
    .logo-wrapper {
        position: absolute;
        top: 20px;
        left: 20px;
        margin-bottom: 0;
        text-align: left;
    }
    
    .logo {
        width: 120px;
        height: auto;
    }
    
    .content-wrapper {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        left: auto;
        top: auto;
        padding: 80px 20px 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .text-content {
        gap: 0;
        text-align: center;
        align-items: center;
        max-width: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .main-headline {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
        order: 1;
    }
    
    .subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        order: 3;
    }
    
    .contact-btn {
        order: 4;
    }
    
    
    .contact-btn {
        width: 160px;
        height: 48px;
        font-size: 16px;
        margin: 0 auto;
    }
    
    .video-wrapper {
        height: 40vh;
        margin: 20px;
        border-radius: 20px;
        width: calc(100% - 40px);
        top: 0;
        order: 2;
        position: relative;
    }
    
    .background-video {
        border-radius: 20px;
    }
    
    .navigation {
        top: 10px;
        left: 10px;
        width: auto;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .discover-title,
    .why-choose-title,
    .amenities-title,
    .investment-title,
    .journey-title,
    .growth-corridor-title,
    .connectivity-title,
    .phase-development-title {
        font-size: 28px;
    }
    
    .image-carousel-group {
        padding: 0;
        margin: 40px 0 0 0;
    }
    
    .carousel-svg {
        width: 100vw;
        border-radius: 0;
        margin-left: calc(-50vw + 50%);
    }
    
    .connectivity-section {
        padding: 60px 20px;
    }
    
    .growth-corridor-section {
        padding: 60px 20px;
    }
    
    .investment-section {
        padding: 60px 20px;
    }
    
    .ideal-for-section {
        padding: 60px 20px;
    }
    
    .phase-development-section {
        padding: 30px 20px;
    }
    
    .journey-section {
        padding: 60px 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Ensure modals are visible when displayed */
.modal[style*="block"] {
    display: block !important;
}

.modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
    border: 1px solid #e5e7eb;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: #6b7280;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 25px;
    transition: all 0.2s ease;
    z-index: 1001;
    pointer-events: auto;
    user-select: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 1px solid #e5e7eb;
}

.close:hover,
.close:focus {
    color: #213B2C;
    background: rgba(255, 255, 255, 1);
    border-color: #213B2C;
    transform: scale(1.1);
}

.modal-content h2 {
    color: #213B2C;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.modal-content p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #213B2C;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
}

.form-group label::after {
    content: ' *';
    color: #ef4444;
    font-weight: 700;
}

.form-group label[for="contactEmailAddress"]::after,
.form-group label[for="emailAddress"]::after {
    content: '';
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #213B2C;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #213B2C;
    box-shadow: 0 0 0 3px rgba(33, 59, 44, 0.1);
}

.form-group input[type="date"] {
    color: #213B2C;
}

.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    background: #ffffff;
    color: #213B2C;
    line-height: 1.5;
}

.form-group textarea:focus {
    outline: none;
    border-color: #213B2C;
    box-shadow: 0 0 0 3px rgba(33, 59, 44, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    color: #213B2C;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.checkbox-item:hover {
    color: #395645;
    background: rgba(33, 59, 44, 0.05);
    border-color: #d1d5db;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 14px;
    position: relative;
    transition: all 0.2s ease;
    background-color: white;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: #213B2C;
    border-color: #213B2C;
    transform: scale(1.1);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 13px;
    font-weight: bold;
}

.checkbox-item input[type="checkbox"]:checked ~ span {
    color: #213B2C;
    font-weight: 600;
}

.checkbox-item input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(33, 59, 44, 0.1);
}

.checkbox-item:has(input[type="checkbox"]:checked) {
    background: rgba(33, 59, 44, 0.08);
    border-color: #213B2C;
}

/* Error state for checkbox group */
.checkbox-group.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.checkbox-group.error .checkbox-item {
    border-color: rgba(239, 68, 68, 0.3);
}

.checkbox-group.error label {
    color: #ef4444;
}

.submit-btn {
    width: 100%;
    background: #213B2C;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 15px;
}

.submit-btn:hover {
    background: #395645;
}

.submit-btn:active {
    background: #1f2937;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group select:valid {
    border-color: #51cf66;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 25px 20px;
        width: 95%;
        max-height: 90vh;
        border-radius: 12px;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .submit-btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .checkbox-group {
        gap: 10px;
    }
    
    .checkbox-item {
        font-size: 14px;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .floating-success {
        top: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 14px 18px;
    }
}

/* Message Styles */
.message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    animation: messageSlideIn 0.3s ease-out;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Success State */
.success-animation {
    background: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
}

.success-icon {
    font-size: 20px;
    font-weight: bold;
    color: #10b981;
    text-align: center;
    margin-bottom: 8px;
}

.success-text {
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    color: #065f46;
    font-size: 14px;
}

/* Floating Success Message */
.floating-success {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #10b981;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    max-width: 300px;
    animation: slideInRight 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-success .success-icon {
    font-size: 20px;
    color: white;
    margin: 0;
}

.floating-success .success-text {
    color: white;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successIconPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes successShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes formSuccessGlow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

/* ===========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =========================================== */

/* Mobile Navigation - Default hidden - REMOVED CONFLICTING RULE */

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(33, 59, 44, 0.95);
    z-index: 999;
    backdrop-filter: blur(10px);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav .nav-item {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.mobile-nav .nav-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    border-radius: 8px;
    padding: 15px 30px;
    margin-top: 20px;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .desktop-container {
        max-width: 100%;
    }
    
    .hero-section {
        flex-direction: column;
        min-height: auto;
    }
    
    .left-section {
        flex: none;
        padding: 40px 60px;
        min-height: auto;
        justify-content: flex-start;
    }
    
    .right-section {
        flex: none;
        min-height: 60vh;
        padding: 20px;
    }
    
    .video-wrapper {
        position: relative;
        width: 90%;
        height: 500px;
        top: 0;
        right: 0;
        margin: 0 auto;
    }
    
    .navigation {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 30px;
    }
    
    .main-headline {
        font-size: 38px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .features-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .connectivity-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }
    
    .map {
        width: 100%;
        max-width: 500px;
        height: 350px;
    }
    
    .development-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .development-image {
        order: -1;
        height: 400px;
    }
}

/* Mobile Styles (up to 768px) - Clean and Working */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .mobile-menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: white !important;
        color: #213B2C !important;
        border: 2px solid #213B2C !important;
        border-radius: 8px !important;
        padding: 8px !important;
        font-size: 24px !important;
        z-index: 1000 !important;
        cursor: pointer !important;
        width: 50px !important;
        height: 50px !important;
        text-align: center !important;
        line-height: 30px !important;
    }
    
    .mobile-menu-toggle:hover {
        color: #2d4a35 !important;
        transform: scale(1.1) !important;
    }
    
    .navigation {
        display: none;
    }
    
    .desktop-container {
        max-width: 100%;
    }
    
    .hero-section {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }
    
    .left-section {
        flex: none;
        padding: 0;
        min-height: auto;
        justify-content: flex-start;
        position: relative;
        order: 1;
    }
    
    .right-section {
        flex: none;
        min-height: 50vh;
        padding: 0;
        order: 2;
    }
    
    .video-wrapper {
        position: relative;
        width: calc(100% - 40px);
        height: 40vh;
        top: 0;
        right: 0;
        margin: 20px;
        border-radius: 20px;
        order: 2;
    }
    
    .background-video {
        border-radius: 20px;
    }
    
    .image-fade-top,
    .image-fade-bottom {
        border-radius: 20px;
    }
    
    .logo-wrapper {
        position: absolute;
        top: 20px;
        left: 20px;
        margin-bottom: 0;
        text-align: left;
    }
    
    .logo {
        width: 120px;
        height: auto;
    }
    
    .content-wrapper {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        left: auto;
        top: auto;
        padding: 80px 20px 0 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .text-content {
        gap: 0;
        text-align: center;
        align-items: center;
        max-width: 400px;
        display: flex;
        flex-direction: column;
    }
    
    .main-headline {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
        text-align: center;
        order: 1;
    }
    
    .subtitle {
        font-size: 18px;
        line-height: 1.4;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        order: 3;
    }
    
    .contact-btn {
        width: 160px;
        height: 48px;
        font-size: 16px;
        margin: 0 auto;
        order: 4;
    }
    
    /* Restructure mobile layout to show video between headline and subtitle */
    .hero-section {
        display: flex;
        flex-direction: column;
    }
    
    .left-section {
        order: 1 !important;
    }
    
    .right-section {
        order: 2 !important;
    }
    
    /* Simple mobile layout - video after headline */
    .hero-section {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .left-section {
        order: 1 !important;
    }
    
    .right-section {
        order: 2 !important;
    }
    
    /* Show video on mobile but make it smaller and centered */
    .right-section .video-wrapper {
        display: block !important;
        order: 2 !important;
        margin: 20px 0 !important;
        text-align: center !important;
    }
    
    .right-section .video-wrapper .background-video {
        width: 100% !important;
        max-width: 500px !important;
        height: 40vh !important;
        object-fit: cover !important;
        border-radius: 20px !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Reorder text content */
    .text-content {
        display: flex !important;
        flex-direction: column !important;
        order: 1 !important;
        align-items: center !important;
    }
    
    .main-headline {
        order: 1 !important;
        text-align: center !important;
    }
    
    .subtitle {
        order: 3 !important;
        text-align: center !important;
    }
    
    .contact-btn {
        order: 4 !important;
        margin-bottom: 10px !important;
    }
    
    /* Reduce gap between hero section and next section */
    .hero-section {
        margin-bottom: 20px !important;
    }
    
    
    /* Section Titles */
    .discover-title,
    .why-choose-title,
    .amenities-title,
    .investment-title,
    .growth-corridor-title,
    .connectivity-title,
    .phase-development-title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .journey-title {
        font-size: 32px;
        margin-bottom: 30px;
        text-align: left;
        padding-left: 20px;
        margin: 0 0 30px 0;
    }
    
    .section-description {
        font-size: 16px;
        margin: 40px auto 0;
        padding: 0 20px;
    }
    
    /* Grid Layouts */
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    /* Amenities Section Mobile Layout - Horizontal Icons and Text */
    .amenity-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .amenity-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    
    .feature-card {
        height: auto;
        padding-bottom: 20px;
    }
    
    .feature-image {
        height: 200px;
        margin: 20px 20px 0 20px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin: 20px 0 15px 0;
    }
    
    .feature-card p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    /* Amenities */
    .amenity-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 15px;
    }
    
    .amenity-item h3 {
        font-size: 16px;
    }
    
    /* Connectivity */
    .connectivity-section {
        flex-direction: column;
        gap: 30px;
        padding: 60px 20px;
        text-align: center;
    }
    
    .connectivity-header-mobile {
        display: block;
        text-align: center;
        order: 1;
    }
    
    .connectivity-content {
        order: 3;
        text-align: center;
    }
    
    .connectivity-content > div:first-child {
        display: none;
    }
    
    .map-container {
        order: 2;
        display: flex;
        justify-content: center;
        margin: 20px 0;
        width: 100%;
        min-height: 300px;
    }
    
    .map {
        width: 100%;
        max-width: 400px;
        height: 300px;
        border-radius: 12px;
        background: #FFF8F2;
        background-image: url('assets/Map.svg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    /* Growth Corridor */
    .growth-corridor-section {
        padding: 60px 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .advantage-icon {
        width: 48px;
        height: 46px;
        margin-bottom: 15px;
    }
    
    .advantage-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .advantage-card p {
        font-size: 14px;
    }
    
    /* Growth Corridor Button Mobile */
    .explore-btn {
        margin-top: 30px;
        padding: 14px 28px;
        font-size: 16px;
        min-width: 180px;
    }
    
    /* Investment Section */
    .investment-section {
        padding: 60px 20px;
    }
    
    .investment-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .placeholder-box {
        width: 100%;
        max-width: 350px;
        height: 320px;
        order: -1;
    }
    
    .immediate-benefits,
    .sustained-appreciation {
        padding: 30px 20px;
        text-align: center;
    }
    
    .immediate-benefits h3,
    .sustained-appreciation h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .immediate-benefits li,
    .sustained-appreciation li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    /* Ideal For Section */
    .ideal-for-section {
        padding: 60px 20px;
    }
    
    .ideal-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        margin-bottom: 30px;
        align-items: flex-start;
    }
    
    .ideal-icon {
        width: 56px;
        height: 56px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .ideal-content h3 {
        font-size: 16px;
        text-align: left;
    }
    
    /* Phase Development */
    .phase-development-section {
        padding: 60px 0;
        background: #F2F8F2;
    }
    
    .phase-development-section .development-features {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        min-height: auto !important;
        padding: 0 24px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        position: relative !important;
    }
    
    /* Add title as pseudo-element at the top */
    .phase-development-section .development-features::before {
        content: "Phase 1 Development: Limited Opportunity" !important;
        display: block !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
        font-size: 32px !important;
        line-height: 1.3 !important;
        color: #213B2C !important;
        margin: 0 0 24px 0 !important;
        text-align: left !important;
        order: 1 !important;
    }
    
    /* Mobile: Hide the title inside development-content */
    .phase-development-section .development-content .phase-development-title {
        display: none !important;
    }
    
    .phase-development-section .development-image {
        height: 450px !important;
        width: 100% !important;
        margin: 0 auto !important;
        background-image: url('assets/Farm Plot.svg') !important;
        background-size: contain !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        border-radius: 12px !important;
        order: 2 !important;
    }
    
    .phase-development-section .development-content {
        text-align: left !important;
        order: 3 !important;
    }
    
    
    .phase-development-section .development-content ul {
        text-align: left !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .phase-development-section .development-features li {
        font-size: 16px !important;
        line-height: 1.5 !important;
        margin-bottom: 16px !important;
        padding-left: 32px !important;
        color: #40624E !important;
        font-family: 'Manrope', sans-serif !important;
        font-weight: 500 !important;
    }
    
    .phase-development-section .development-features li::before {
        width: 14px !important;
        height: 14px !important;
        top: 6px !important;
        left: 0 !important;
    }
    
    /* Journey Section */
    .journey-section {
        padding: 60px 20px;
    }
    
    .journey-description {
        font-size: 16px;
        margin: 40px 0 0 0;
        padding-left: 20px;
        text-align: left;
    }
    
    /* Buttons */
    .explore-farm-plots-btn {
        width: 200px;
        height: 45px;
        font-size: 16px;
        margin-top: 40px;
    }
    
    .explore-farm-plots-btn span {
        font-size: 16px;
    }
    
    /* Image Carousel */
    .image-carousel-group {
        margin: 40px 0 0 0;
    }
    
    .carousel-svg {
        width: 100vw;
        height: auto;
        margin-left: calc(-50vw + 50%);
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 10px 0;
    }
    
    .left-section {
        padding: 20px 25px;
    }
    
    .right-section {
        padding: 0 25px 20px 25px;
    }
    
    .logo {
        width: 160px;
    }
    
    .main-headline {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .contact-btn {
        width: 140px;
        height: 42px;
        font-size: 13px;
    }
    
    .video-wrapper {
        height: 280px;
    }
    
    .section {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .development-image {
        height: 300px;
    }
    
    .placeholder-box {
        height: 350px;
    }
    
    .ideal-for-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .hero-section {
        padding: 15px 0;
        min-height: 100vh;
    }
    
    .left-section {
        padding: 15px;
    }
    
    .right-section {
        padding: 0 15px;
    }
    
    .video-wrapper {
        height: 250px;
        border-radius: 8px;
    }
    
    .logo-wrapper {
        margin-bottom: 20px;
    }
    
    .logo {
        width: 120px;
        height: auto;
    }
    
    .main-headline {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .subtitle {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .contact-btn {
        width: 140px;
        height: 40px;
        font-size: 13px;
        padding: 8px 15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 100px;
        max-width: 160px;
    }
    
    .section {
        padding: 30px 15px;
    }
    
    .discover-title,
    .why-choose-title,
    .amenities-title,
    .investment-title,
    .growth-corridor-title,
    .connectivity-title,
    .phase-development-title {
        font-size: 28px;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .journey-title {
        font-size: 28px;
        margin-bottom: 25px;
        text-align: left;
        padding-left: 15px;
        margin: 0 0 25px 0;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card,
    .amenity-card,
    .advantage-card {
        padding: 20px 15px;
        text-align: left;
    }
    
    .feature-icon,
    .amenity-icon,
    .advantage-icon {
        width: 50px;
        height: 50px;
        margin: 0 0 15px 0;
    }
    
    .feature-title,
    .amenity-title,
    .advantage-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-description,
    .amenity-description,
    .advantage-description {
        font-size: 13px;
        line-height: 1.4;
    }
    
    
    .investment-row {
        flex-direction: column;
        gap: 24px;
        padding: 0 8px;
    }
    
    .placeholder-box {
        width: 100%;
        height: 320px;
        order: -1;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .investment-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .immediate-benefits,
    .sustained-appreciation {
        background: transparent;
        border-radius: 12px;
        padding: 24px 20px;
    }
    
    .development-features {
        display: flex !important;
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
        max-width: 360px;
        margin: 0 auto;
    }
    
    /* Hide the original title */
    .development-content .phase-development-title {
        display: none !important;
    }
    
    /* Image second */
    .development-image {
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        order: 2;
    }
    
    /* Content third */
    .development-content {
        order: 3;
    }
    
    /* Add title as pseudo-element for smaller screens */
    .development-features::before {
        content: "Phase 1 Development: Limited Opportunity" !important;
        display: block !important;
        font-family: 'Playfair Display', serif !important;
        font-weight: 700 !important;
        font-size: 28px !important;
        line-height: 1.3 !important;
        color: #213B2C !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
        order: 1 !important;
    }
    
    .development-features li {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 14px;
        padding-left: 28px;
    }
    
    .development-features li::before {
        width: 12px;
        height: 12px;
        top: 5px;
    }
    
    
    .ideal-for-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 8px;
    }
    
    .ideal-item {
        background: transparent;
        border-radius: 16px;
        padding: 20px 16px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ideal-icon {
        width: 64px;
        height: 64px;
        margin: 0;
        border-radius: 12px;
        flex-shrink: 0;
    }
    
    .ideal-title {
        font-size: 16px;
        margin-bottom: 12px;
        font-weight: 600;
        color: #1a1a1a;
    }
    
    .ideal-description {
        font-size: 13px;
        line-height: 1.5;
        color: #666666;
    }
    
    .contact-form {
        background: transparent;
        border-radius: 16px;
        padding: 24px 20px;
    }
    
    .form-group input,
    .form-group textarea {
        border-radius: 12px;
        border: 2px solid #f0f0f0;
        font-size: 14px;
        padding: 12px 16px;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #275139;
        box-shadow: 0 0 0 3px rgba(39, 81, 57, 0.1);
    }
    
    .submit-btn {
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        padding: 14px 24px;
        background: linear-gradient(135deg, #275139 0%, #1e3d2a 100%);
        box-shadow: 0 4px 16px rgba(39, 81, 57, 0.3);
    }
    
    .image-carousel-group {
        height: 200px;
        margin: 0;
        border-radius: 0;
        overflow: hidden;
        position: relative;
    }
    
    .carousel-svg {
        height: 100%;
        object-fit: cover;
        width: 100%;
    }
    
    .discover-section {
        background: #ffffff;
        border-radius: 20px 20px 0 0;
        margin-top: -20px;
        position: relative;
        z-index: 10;
    }
    
    .discover-section,
    .why-choose-section,
    .amenities-section,
    .investment-section,
    .journey-section,
    .growth-corridor-section,
    .connectivity-section,
    .phase-development-section,
    .ideal-for-section,
    .contact-section {
        padding: 30px 15px;
    }
    
    .contact-form {
        max-width: 100%;
        padding: 15px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 10px;
        border-radius: 6px;
    }
    
    .submit-btn {
        width: 100%;
        height: 40px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .journey-description {
        margin: 20px 0 0 0;
        padding-left: 15px;
        text-align: left;
    }
    
    .features-grid,
    .amenities-grid,
    .advantages-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-section {
        padding: 24px 0;
        margin-top: 0;
        background: #1a1a1a;
        border-radius: 20px 20px 0 0;
        position: relative;
        z-index: 10;
    }
    
    .copyright {
        font-size: 12px;
        text-align: center;
        color: #ffffff;
        font-weight: 400;
        opacity: 0.8;
    }
    
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 12px;
        padding: 12px;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
    }
    
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .mobile-nav a {
        color: white;
        text-decoration: none;
        font-size: 24px;
        font-weight: 500;
        padding: 15px 30px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-nav a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .close-mobile-nav {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
    }
    
    .feature-image {
        height: 180px;
        margin: 15px 15px 0 15px;
    }
    
    .feature-card h3 {
        font-size: 16px;
        margin: 15px 0 12px 0;
    }
    
    .feature-card p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .amenity-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .amenity-item h3 {
        font-size: 14px;
    }
    
    .advantage-card {
        padding: 25px 15px;
    }
    
    .advantage-icon {
        width: 40px;
        height: 38px;
        margin-bottom: 12px;
    }
    
    .advantage-card h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .advantage-card p {
        font-size: 12px;
    }
    
    .immediate-benefits,
    .sustained-appreciation {
        padding: 25px 15px;
    }
    
    /* Amenities Section Mobile Layout - Horizontal Icons and Text */
    .amenity-item {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
    }
    
    .amenity-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    
    .immediate-benefits h3,
    .sustained-appreciation h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .immediate-benefits li,
    .sustained-appreciation li {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .ideal-icon {
        width: 48px;
        height: 48px;
    }
    
    .ideal-content h3 {
        font-size: 14px;
    }
    
    .development-image {
        height: 350px;
    }
    
    .development-features li {
        font-size: 13px;
        margin-bottom: 12px;
        padding-left: 30px;
    }
    
    .development-features li::before {
        width: 12px;
        height: 12px;
        top: 5px;
    }
    
    .journey-description {
        font-size: 14px;
        margin: 30px 0 0 0;
        padding-left: 15px;
        text-align: left;
    }
    
    .explore-farm-plots-btn {
        width: 180px;
        height: 40px;
        font-size: 14px;
        margin-top: 30px;
    }
    
    .explore-farm-plots-btn span {
        font-size: 14px;
    }
    
    .map {
        height: 280px;
        max-width: 350px;
        background: #FFF8F2;
        background-image: url('assets/Map.svg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
    }
    
    .placeholder-box {
        height: 280px;
    }
}

/* Landscape Mobile Styles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        flex-direction: row;
        min-height: 100vh;
    }
    
    .left-section {
        flex: 0 0 50%;
        padding: 20px;
    }
    
    .right-section {
        flex: 0 0 50%;
        min-height: 100vh;
    }
    
    .video-wrapper {
        height: 80vh;
        width: 90%;
    }
    
    .main-headline {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 14px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo,
    .carousel-svg,
    .feature-image,
    .amenity-icon,
    .advantage-icon,
    .ideal-icon {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .hero-section,
    .video-wrapper,
    .navigation,
    .mobile-nav {
        display: none !important;
    }
    
    .left-section {
        position: static;
        padding: 20px;
        min-height: auto;
    }
    
    .main-headline,
    .subtitle {
        color: #000 !important;
    }
    
    .desktop-container {
        max-width: 100%;
        box-shadow: none;
    }
}

/* Footer Section */
.footer-section {
    background: #213B2C;
    color: #FFFFFF;
    padding: 30px 0;
    margin-top: 80px;
    text-align: center;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #B8D4B8;
}

.copyright-icon {
    font-size: 16px;
    font-weight: 600;
}

.copyright-text {
    font-weight: 400;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-section {
        padding: 25px 0;
        margin-top: 60px;
    }
    
    .copyright {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 11px;
    }
}

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

@media (max-width: 768px) {
    /* Test mobile styles are loading */
    body {
        background-color: #f0f0f0 !important;
    }
    
    /* Mobile Layout - Single Column */
    .hero-section {
        flex-direction: column !important;
        height: auto !important;
        min-height: 100vh !important;
        margin-bottom: 20px !important;
        padding-bottom: 20px !important;
    }
    
    .left-section {
        width: 100% !important;
        padding: 80px 20px 20px 20px !important;
        order: 1 !important;
    }
    
    .right-section {
        display: none !important;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: white !important;
        color: #213B2C !important;
        border: 2px solid #213B2C !important;
        border-radius: 8px !important;
        padding: 8px !important;
        font-size: 24px !important;
        z-index: 1000 !important;
        cursor: pointer !important;
        width: 50px !important;
        height: 50px !important;
        text-align: center !important;
        line-height: 30px !important;
    }
    
    .mobile-menu-toggle:hover {
        color: #2d4a35 !important;
        transform: scale(1.1) !important;
    }
    
    /* Mobile Video - Show and Position */
    .mobile-video-wrapper {
        display: block !important;
        order: 2 !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 20px auto !important;
        text-align: center !important;
    }
    
    .mobile-video {
        width: 100% !important;
        height: 40vh !important;
        object-fit: cover !important;
        border-radius: 20px !important;
        display: block !important;
    }
    
    /* Text Content Ordering */
    .main-headline {
        order: 1 !important;
        font-size: 2.2rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .subtitle {
        order: 3 !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }
    
    .contact-btn {
        order: 4 !important;
        margin: 0 auto 20px auto !important;
        display: block !important;
        margin-bottom: 10px !important;
    }
    
    /* Mobile Navigation */
    .mobile-nav {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(33, 59, 44, 0.95) !important;
        z-index: 999 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .mobile-nav.active {
        display: flex !important;
    }
    
    .mobile-nav .nav-item {
        color: white !important;
        font-size: 1.5rem !important;
        margin: 20px 0 !important;
        text-decoration: none !important;
        padding: 15px 30px !important;
        border-radius: 8px !important;
        transition: background-color 0.3s ease !important;
        text-align: center !important;
    }
    
    .mobile-nav .nav-item:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-cta {
        background: rgba(255, 255, 255, 0.1) !important;
        border: 2px solid white !important;
    }
    
    .nav-cta:hover {
        background: rgba(255, 255, 255, 0.2) !important;
    }
    
    .arrow-icon {
        margin-left: 10px !important;
        display: inline-block !important;
        transition: transform 0.3s ease !important;
    }
    
    .nav-cta:hover .arrow-icon {
        transform: translateX(5px) !important;
    }
    
    /* Hide desktop elements on mobile */
    .desktop-container {
        overflow-x: hidden !important;
    }
    
    /* Adjust other sections for mobile */
    .section {
        padding: 40px 20px !important;
    }
    
    .section h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }
    
    .section p {
        text-align: center !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

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

/* Mobile Navigation - Hidden on Desktop */
.mobile-nav {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Hide desktop elements */
    .right-section {
        display: none !important;
    }
    
    .navigation {
        display: none !important;
    }
    
    /* Show mobile elements */
    .mobile-menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        background: white !important;
        color: #213B2C !important;
        border: none !important;
        border-radius: 8px !important;
        padding: 8px !important;
        font-size: 24px !important;
        z-index: 9999 !important;
        cursor: pointer !important;
        width: 50px !important;
        height: 50px !important;
        text-align: center !important;
        line-height: 30px !important;
    }
    
    .mobile-video-wrapper {
        display: block !important;
        width: 100% !important;
        height: 300px !important;
        margin: 30px 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        order: 2 !important;
    }
    
    .mobile-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .mobile-nav {
        display: none !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(33, 59, 44, 0.95) !important;
        z-index: 9998 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .mobile-nav.active {
        display: flex !important;
    }
    
    .mobile-nav .nav-item {
        color: white !important;
        font-size: 1.5rem !important;
        margin: 20px 0 !important;
        text-decoration: none !important;
        padding: 15px 30px !important;
        border-radius: 8px !important;
        transition: background-color 0.3s ease !important;
        text-align: center !important;
        white-space: nowrap !important;
        min-width: 200px !important;
    }
    
    /* Hero section mobile layout */
    .hero-section {
        flex-direction: column !important;
        min-height: auto !important;
    }
    
    .left-section {
        flex: 1 !important;
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .content-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }
    
    .text-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .main-headline {
        font-size: 28px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        order: 1 !important;
    }
    
    .subtitle {
        font-size: 16px !important;
        text-align: center !important;
        order: 3 !important;
    }
    
    .contact-btn {
        order: 4 !important;
        align-self: center !important;
    }
    
    .logo-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin-bottom: 20px !important;
    }
    
    /* Section spacing */
    .discover-section,
    .why-choose-section,
    .amenities-section,
    .investment-section,
    .journey-section,
    .growth-corridor-section,
    .connectivity-section,
    .phase-development-section,
    .ideal-for-section,
    .contact-section {
        padding: 30px 15px !important;
    }
    
    /* Footer mobile */
    .footer-section {
        padding: 24px 0 !important;
        margin-top: 0 !important;
        background: #213B2C !important;
        border-radius: 0 !important;
    }
    
    .copyright {
        font-size: 12px !important;
        text-align: center !important;
        color: #B8D4B8 !important;
    }
}


