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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #d4af37;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Improve image loading */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Smooth transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-brand .logo-fallback h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin: 0;
}

.nav-brand .logo-fallback .tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-style: italic;
    margin: 0;
}

.nav-brand h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-brand .tagline {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(44, 95, 45, 0.7), rgba(44, 95, 45, 0.8)), 
                url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 10px;
    letter-spacing: 5px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--accent-color);
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 1.4s ease;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    animation: fadeInUp 1.6s ease;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-number, .feature-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.feature-text {
    font-size: 1rem;
    margin-top: 5px;
}

.btn-hero {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.8s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255,255,255,0.9);
}

/* About Section */
.about {
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
}

.highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.image-placeholder {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&h=1000&fit=crop') center/cover;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Project Highlights */
.project-highlights {
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.project-highlights h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-box h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Infrastructure Details */
.infrastructure-details {
    margin: 60px 0;
    padding: 50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.infrastructure-details h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.infra-detail-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 10px;
    border-top: 4px solid var(--secondary-color);
}

.infra-detail-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.infra-detail-card ul {
    list-style: none;
    padding: 0;
}

.infra-detail-card ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.infra-detail-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Developer Info */
.developer-info {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: var(--white);
}

.developer-info h3 {
    font-size: 2.2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}

.developer-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.developer-info p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.95);
}

.developer-track-record {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.track-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.track-item h4 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.track-item p {
    color: var(--white);
    font-size: 1rem;
}

/* Investment Section */
.investment {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
}

.colliers-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    line-height: 1.8;
}

/* Location Section */
.location-feature {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light-color);
    border-radius: 10px;
}

.location-feature h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box h4 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-description {
    margin-top: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.location-feature.naina {
    background: var(--white);
    border: 2px solid var(--secondary-color);
}

/* Global Investments */
.global-investments {
    margin-top: 60px;
}

.global-investments h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.investment-card {
    padding: 30px;
    background: var(--light-color);
    border-radius: 8px;
    border-top: 4px solid var(--accent-color);
    transition: transform 0.3s;
}

.investment-card:hover {
    transform: translateY(-5px);
}

.investment-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.investment-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Infrastructure */
.infrastructure {
    background: var(--light-color);
}

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

.infra-card {
    padding: 35px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--secondary-color);
}

.infra-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.infra-card p {
    color: var(--text-light);
}

/* Connectivity */
.connectivity {
    background: var(--white);
}

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

.connectivity-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.connectivity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.connectivity-card.major {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.connectivity-card.major h4,
.connectivity-card.major .distance {
    color: var(--white);
}

.connectivity-card.highlight {
    border: 2px solid var(--accent-color);
    background: var(--white);
}

.connectivity-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.connectivity-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connectivity-card.major h4 {
    color: var(--white);
}

.connectivity-card .distance {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.connectivity-card.major .distance {
    color: var(--accent-color);
}

.connectivity-card .desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.connectivity-card.major .desc {
    color: rgba(255,255,255,0.9);
}

/* Timeline */
.timeline {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: var(--white);
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.timeline-item {
    text-align: center;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-growth {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-item p {
    line-height: 1.6;
}

/* Attractions */
.attractions {
    background: var(--white);
    padding: 80px 0;
}

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

.attraction-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--light-color);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border-color: var(--secondary-color);
}

.attraction-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.attraction-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-card .distance {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.attraction-card .desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

/* Map Section */
.map-section {
    background: var(--light-color);
    padding: 80px 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.map-container iframe {
    display: block;
}

.map-link-container {
    text-align: center;
    margin-top: 30px;
}

.btn-map {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
}

.btn-map:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 95, 45, 0.4);
}

.map-address {
    margin-top: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
}

/* Amenities */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.amenity-card {
    text-align: center;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.amenity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 20px 0 10px;
    padding: 0 15px;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0 15px 20px;
}

/* Developer */
.developer {
    background: var(--light-color);
}

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

.dev-stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.dev-stat h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.dev-stat p {
    color: var(--text-light);
}

.developer-projects h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
    text-align: center;
}

.project-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-details {
    margin-top: 30px;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-brand p {
    font-style: italic;
    color: var(--secondary-color);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    margin: 10px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.8rem !important;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid,
    .infra-details-grid,
    .developer-track-record,
    .investment-stats,
    .feature-grid,
    .investment-grid,
    .infra-grid,
    .connectivity-grid,
    .attractions-grid,
    .timeline-container,
    .amenities-grid,
    .developer-stats,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-number, .feature-icon {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .highlights-grid,
    .infra-details-grid,
    .developer-track-record,
    .investment-stats,
    .feature-grid,
    .investment-grid,
    .infra-grid,
    .connectivity-grid,
    .attractions-grid,
    .timeline-container,
    .amenities-grid,
    .developer-stats,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-content h3,
    .project-highlights h3,
    .developer-info h3 {
        font-size: 1.5rem;
    }
    
    .stat-card h3,
    .timeline-growth {
        font-size: 2.5rem;
    }
    
    .btn-hero,
    .btn-submit,
    .btn-map {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-brand .logo {
        height: 50px;
    }
    
    /* Improve touch targets for mobile */
    .amenity-card,
    .connectivity-card,
    .attraction-card,
    .plot-card,
    .legal-card {
        padding: 20px 15px;
    }
    
    /* Better spacing on mobile */
    .project-highlights,
    .infrastructure-details,
    .developer-info {
        padding: 30px 20px;
    }
    
    /* Optimize images for mobile */
    .amenity-image {
        height: 150px;
    }
    
    .image-placeholder {
        height: 300px;
    }
    
    /* Better form on mobile */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: 1.3rem;
    }
}
