:root {
    --navy: #0a192f;
    --gold: #c5a059;
    --dark-grey: #1e1e1e;
    --white: #ffffff;
    --light-grey: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: var(--dark-grey); line-height: 1.6; }

/* Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 8%; background: var(--navy); position: sticky; top: 0; z-index: 100; }
.logo { font-family: 'Playfair Display', serif; color: white; font-size: 1.4rem; font-weight: 700; }
.logo span { color: var(--gold); }
nav ul { display: flex; list-style: none; align-items: center; }
nav ul li { margin-left: 30px; }
nav ul li a { color: white; text-decoration: none; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }
.cta-btn { background: var(--gold); padding: 10px 20px; border-radius: 2px; }

/* Hero */
.hero { 
    height: 70vh; background: linear-gradient(rgba(10,25,47,0.7), rgba(10,25,47,0.7)), url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=2000'); 
    background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 15px; }
.hero p { font-size: 1.3rem; margin-bottom: 25px; }
.rera-badge { border: 1px solid var(--gold); padding: 5px 15px; color: var(--gold); display: inline-block; font-size: 0.9rem; margin-bottom: 10px; }
.location-tag { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; }

/* Services */
section { padding: 80px 10%; }
h2 { text-align: center; font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { padding: 40px; border: 1px solid #eee; transition: 0.4s; background: white; }
.service-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.service-card h3 { color: var(--navy); margin-bottom: 15px; }

/* Contact */
.contact { background: var(--light-grey); }
.contact-container { display: flex; gap: 60px; align-items: flex-start; }
.contact-info { flex: 1; }
.contact-info h2 { text-align: left; margin-bottom: 20px; }
.contact-info p { margin-bottom: 15px; font-size: 1.1rem; }
.contact-form { flex: 1; background: white; padding: 40px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
input, select, textarea { width: 100%; padding: 12px; margin-bottom: 20px; border: 1px solid #ddd; font-family: 'Montserrat', sans-serif; }
.primary-btn { background: var(--navy); color: white; border: none; padding: 15px 30px; font-weight: 700; width: 100%; cursor: pointer; }
.primary-btn:hover { background: var(--gold); }
.rera-text { margin-top: 30px; font-size: 0.8rem; font-weight: 700; color: var(--gold); }

/* Footer */
footer { background: var(--navy); color: white; text-align: center; padding: 30px; font-size: 0.8rem; }

/* Mobile */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .contact-container { flex-direction: column; }
}