
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --bg-white: #FFFFFF;
    --primary-accent: #F97316; /* Industrial Orange */
    --primary-accent-hover: #EA580C;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F3F4F6;
    --brand-dark: #1A2B4C; /* Midnight Blue / Infra Dark */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header & Navbar */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Updated Logo CSS */
.logo {
    display: flex;
    align-items: center; /* Image aur text ko vertically center karega */
    gap: 12px; /* Image aur text ke beech ka space */
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Nayi class logo image ki height control karne ke liye */
.logo-img {
    height:60px; /* Aap apni image ke hisaab se is height ko 30px ya 50px kar sakte hain */
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--primary-accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 600;
    transition: color 0.3s ease;
    color: var(--brand-dark);
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary-accent);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--brand-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-accent);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
}

.btn:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.3);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(26, 43, 76, 0.8), rgba(26, 43, 76, 0.6)), url('https://images.unsplash.com/photo-1449844908441-8829872d2607?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary-accent);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    color: #E5E7EB;
}

/* Search Bar in Hero */
.search-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(255,255,255,0.2);
}

.search-bar select, .search-bar input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    min-width: 150px;
    font-family: inherit;
}

.search-bar button {
    flex: 0.5;
    min-width: 120px;
}

/* Sections */
.section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    color: var(--brand-dark);
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: var(--primary-accent);
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.property-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    color: var(--primary-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.property-details {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #E5E7EB;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* About Section */
.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: -20px 20px 0px rgba(249, 115, 22, 0.1); /* Subtle orange shadow */
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    background: var(--brand-dark);
    color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(26, 43, 76, 0.2);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #D1D5DB;
}

.contact-info i {
    color: var(--primary-accent);
    font-size: 1.2rem;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #E5E7EB;
}

.contact-form input, .contact-form select, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

/* Footer */
footer {
    background-color: var(--brand-dark);
    color: #fff;
    padding: 4rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #9CA3AF;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #6B7280;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    color: white;
}

/* Page Headers */
.page-header {
    background: linear-gradient(rgba(26, 43, 76, 0.9), rgba(26, 43, 76, 0.9)), url('https://images.unsplash.com/photo-1541888086425-d81bb19240f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    padding: 6rem 5% 4rem;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header span {
    color: var(--primary-accent);
}

.page-header p {
    color: #9CA3AF;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--bg-white);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
}
