/* Premium Luxury Real Estate Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #8B0F0F;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Page Wrapper for Center Line */
.page-wrapper {
    position: relative;
    min-height: 100vh;
}

/* Center Vertical Line */
.center-line {
    position: fixed;
    left: 50%;
    top: 0;
    bottom: 20%;
    width: 3px;
    background: linear-gradient(to bottom, 
                rgba(255, 255, 255, 0.2) 0%, 
                rgba(255, 255, 255, 0.6) 50%, 
                rgba(255, 255, 255, 0.8) 100%);
    z-index: 999;
    pointer-events: none;
    transform: translateX(-50%);
    overflow: hidden;
}

/* Animated pulse traveling down the line */
.center-line::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(255, 255, 255, 0.8) 50%, 
                transparent 100%);
    animation: travelDown 3s ease-in-out infinite;
}

@keyframes travelDown {
    0% {
        top: -100px;
    }
    100% {
        top: calc(100% + 100px);
    }
}

/* Flickering Dot on Center Line */
.center-line-dot {
    position: fixed;
    left: 50%;
    bottom: 20%;
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(255, 255, 255, 0.5);
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                    0 0 40px rgba(255, 255, 255, 0.5);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.9);
        box-shadow: 0 0 30px rgba(255, 255, 255, 1),
                    0 0 60px rgba(255, 255, 255, 0.7);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: #8B0F0F;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 100%;
}

.hero-left {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: grayscale(10%) brightness(1);
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, transparent 0%, rgba(139, 15, 15, 0.3) 100%);
}

.hero-right {
    background: #8B0F0F;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: #ffffff;
    margin: 15px 0;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.hero-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.price-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: #ffffff;
    color: #8B0F0F;
    border-color: #ffffff;
}

.cta-button i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Section Container */
.section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #8B0F0F;
}

.section-left,
.section-right {
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-section .section-left,
.why-invest-section .section-left,
.developer-section .section-left:has(.full-image-wrapper) {
    padding: 0;
    display: block;
}

.section-content {
    max-width: 500px;
}

.section-number {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    margin: 15px 0;
}

/* Highlights Section */
.highlights-section {
    background: #8B0F0F;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.highlight-item {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-top-color: #ffffff;
}

.highlight-icon {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.highlight-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing-section {
    background: #8B0F0F;
}

.pricing-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.pricing-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.pricing-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
}

.pricing-amount span {
    font-size: 16px;
    font-weight: 400;
}

.payment-plan h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.payment-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.payment-step {
    text-align: center;
}

.step-percentage {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location Section */
.location-section {
    background: #8B0F0F;
}

.location-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.location-feature i {
    font-size: 12px;
    color: #ffffff;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    filter: grayscale(60%) invert(80%);
    display: block;
    border: 0;
}

/* Full bleed section image */
.full-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.full-section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Why Invest Section */
.why-invest-section {
    background: #8B0F0F;
}

.invest-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.invest-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.invest-reasons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.reason-number {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    min-width: 40px;
}

.reason-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.reason-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Developer Section */
.developer-section {
    background: #8B0F0F;
}

.developer-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.developer-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* min-height: 100vh; */
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    overflow: hidden;
}

.developer-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Full-bleed image inside developer-logo-wrapper */
.developer-logo-wrapper img[style*="object-fit: cover"] {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    filter: grayscale(10%) brightness(1);
    max-width: 100%;
    padding: 0;
}

/* Contact Section */
.contact-section {
    background: #8B0F0F;
    padding: 60px 60px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    text-align: center;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    cursor: pointer;
}

.form-group select option {
    background: #8B0F0F;
    color: #ffffff;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.submit-button:hover {
    background: #ffffff;
    color: #8B0F0F;
    border-color: #ffffff;
}

.submit-button i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.submit-button:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #6B0A0A;
    padding: 60px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-project-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-rera {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Smooth Transitions */
.cta-button,
.submit-button,
.modal-submit,
.float-btn,
.pricing-card,
.stat-item,
.highlight-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.cta-button:focus,
.submit-button:focus,
.modal-submit:focus,
.form-group input:focus,
.form-group select:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Loading State */
.submit-button:disabled,
.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* RERA Logo Top Right */
.rera-logo-top {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10000;
    transition: transform 0.3s ease;
}

.rera-logo-top:hover {
    transform: scale(1.05);
}

.rera-logo-top img {
    width: 200px;
    height: auto;
    display: block;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.call-btn {
    background: #25D366;
}

.whatsapp-btn {
    background: #25D366;
}

.float-btn:hover {
    transform: scale(1.1);
}

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

.modal-content {
    background: #8B0F0F;
    margin: 5% auto;
    padding: 60px;
    max-width: 600px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.modal-submit:hover {
    background: #ffffff;
    color: #8B0F0F;
    border-color: #ffffff;
}



/* Responsive Design */
@media (max-width: 1400px) {
    .section-left,
    .section-right {
        padding: 50px 40px;
    }
    
    .hero-right {
        padding: 60px 40px;
    }
}

@media (max-width: 1200px) {
    .hero-container,
    .section-container {
        grid-template-columns: 1fr;
    }

    .hero-left {
        height: 56vw; /* 4:5 ratio approx */
        min-height: unset;
        max-height: 420px;
    }

    .hero-image {
        height: 100%;
        min-height: unset;
    }

    .center-line,
    .center-line-dot {
        display: none;
    }

    .section-left,
    .section-right {
        padding: 60px 40px;
        min-height: auto;
    }
    
    .map-wrapper {
        aspect-ratio: 4 / 5;
        min-height: unset;
        height: auto;
        position: relative;
    }
    .map-wrapper iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
    }
}

@media (max-width: 992px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .developer-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-right {
        padding: 50px 30px;
    }

    .section-left,
    .section-right {
        padding: 50px 30px;
    }
    
    .hero-left {
        /* aspect-ratio: 4 / 5; */
        height: auto;
        min-height: unset;
        max-height: 380px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        min-height: unset;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-section {
        padding: 50px 30px;
    }
    
    .contact-form {
        gap: 15px;
    }

    .footer {
        padding: 50px 30px 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }
    
    .footer-phone {
        font-size: 20px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 40px 30px;
        max-width: 90%;
    }
    
    .rera-logo-top {
        top: 10px;
        right: 10px;
    }
    
    .rera-logo-top img {
        width: 120px;
    }
    
    .map-wrapper {
        aspect-ratio: 4 / 5;
        min-height: unset;
        height: auto;
        max-height: 380px;
        position: relative;
    }
    .map-wrapper iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(20px, 6vw, 28px);
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .price-value {
        font-size: 36px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 36px);
    }
    
    .section-left,
    .section-right {
        padding: 40px 20px;
    }
    
    .hero-right {
        padding: 40px 20px;
    }
    
    .hero-left {
        /* aspect-ratio: 4 / 5; */
        height: auto;
        min-height: unset;
        max-height: 320px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        min-height: unset;
    }

    .contact-title {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .contact-section {
        padding: 40px 20px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 15% 15px;
    }

    .modal-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 40px 20px 25px;
    }
    
    .footer-logo-img {
        max-width: 120px;
    }
    
    .footer-project-name {
        font-size: 16px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .rera-logo-top img {
        width: 100px;
    }
    
    .highlight-item {
        padding: 20px 0;
    }
    
    .highlight-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .highlight-item h3 {
        font-size: 16px;
    }
    
    .highlight-item p {
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .payment-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step-percentage {
        font-size: 28px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .developer-logo {
        max-width: 240px;
    }
    
    .cta-button,
    .submit-button,
    .modal-submit {
        padding: 15px 30px;
        font-size: 11px;
    }
    
    .form-group input,
    .form-group select {
        padding: 15px 18px;
        font-size: 13px;
    }
    
    .map-wrapper {
        aspect-ratio: 4 / 5;
        min-height: unset;
        height: auto;
        max-height: 320px;
        position: relative;
    }
    .map-wrapper iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
    }
}

@media (max-width: 400px) {
    .hero-left {
        /* aspect-ratio: 4 / 5; */
        height: auto;
        min-height: unset;
        max-height: 280px;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        min-height: unset;
    }
    
    .section-left,
    .section-right {
        padding: 30px 15px;
    }
    
    .hero-right {
        padding: 30px 15px;
    }
    
    .contact-section {
        padding: 30px 15px;
    }
    
    .rera-logo-top img {
        width: 80px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .map-wrapper {
        aspect-ratio: 4 / 5;
        min-height: unset;
        height: auto;
        max-height: 280px;
        position: relative;
    }
    .map-wrapper iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        min-height: unset;
    }
}
