.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10px;
    z-index: 0;
}
.hero-overlay {
    display: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-dark);
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Reset and Base Styles */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fafb;
    color: #1f2937;
    line-height: 1.6;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #fff;
    --shadow: 0 4px 24px rgba(30,64,175,0.08);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

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

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 100;
    transition: var(--transition);
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo {
    width: 44px;
    height: 44px;
    border-radius: 8px;
}
.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    transition: var(--transition);
}
.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}
.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}
.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: 18px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-menu.active {
    left: 0;
}

/* Hero Section */
.hero {
        min-height: 100vh;
        background: linear-gradient(rgba(104, 146, 238, 0.45),rgba(143, 161, 218, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}
.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
    transition: var(--transition);
}
.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.03);
}

/* Section Styles */
section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}
        
    /* About Section */
    .about {
        background: var(--bg-light);
    }
    
    .about-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--text-light);
    }
    
    /* Services Section */
    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    }
    
    .service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    }
    
    .service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        color: var(--text-dark);
    }
    
    /* Properties Section */
    .properties {
        background: var(--bg-light);
    }
    
    .properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    }
    
    .property-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    }
    
    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    }
    
    .property-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    }
    
    .property-card h3 {
    padding: 1.2rem;
    text-align: center;
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 600;
    }
    
    /* Contact Section */
    .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .info-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .info-item i {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-top: 5px;
    }
    
    .info-item h4 {
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }
    
    .info-item p {
        color: var(--text-light);
    }
    
    .map-container {
        width: 100%;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    
    .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 20px;
        border: 1px solid #e5e7eb;
        border-radius: 5px;
        font-family: inherit;
        font-size: 1rem;
        transition: var(--transition);
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }
    
    .submit-btn {
        padding: 12px 30px;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .submit-btn:hover {
        background: var(--secondary-color);
    }
    
    /* Footer */
    .footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    }
    
    .social-links {
    display: flex;
    gap: 1.2rem;
    }
    
    .social-links a {
    color: var(--white);
    font-size: 1.3rem;
    transition: color 0.2s;
    }
    
    .social-links a:hover {
    color: #fbbf24;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
    .nav-flex {
        flex-direction: row;
        justify-content: space-between;
    }
    .nav-right {
        flex-direction: row;
        align-items: center;
    }
    .nav-menu {
        position: fixed;
        left: -100vw;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100vw;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 200;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .services-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }
}
    
    @media (max-width: 480px) {
    .hero-title {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}