        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: #2d3748; overflow-x: hidden; }
        
        /* Header */
        .header { position: fixed; top: 0; width: 100%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); z-index: 1000; transition: all 0.3s ease; }
        .header.scrolled { background: rgba(255, 255, 255, 0.98); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); }
        
        .nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; max-width: 1400px; margin: 0 auto; }
        
        .logo { font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        
        .nav-links { display: flex; gap: 2rem; align-items: center; }
        .nav-links a { text-decoration: none; color: #4a5568; font-weight: 500; transition: color 0.3s ease; position: relative; }
        .nav-links a:hover { color: #667eea; }
        .nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: #667eea; transition: width 0.3s ease; }
        .nav-links a:hover::after { width: 100%; }
        
        .login-btn { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 0.7rem 1.5rem; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
        .login-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }
        
        /* Hero Section */
        .hero { min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
        
        .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="300" r="100" fill="url(%23a)"/><circle cx="400" cy="700" r="200" fill="url(%23a)"/></svg>') no-repeat center; background-size: cover; opacity: 0.3; }
        
        .hero-content { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
        
        .hero-text { color: white; }
        .hero-title { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; }
        .hero-subtitle { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.6; }
        
        .hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 2.5rem; font-weight: 800; display: block; }
        .stat-label { font-size: 0.9rem; opacity: 0.8; }
        
        .search-section { background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px); padding: 2rem; border-radius: 20px; margin-top: 2rem; }
        .search-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; color: white; }
        .search-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
        .search-input { padding: 1rem; border: none; border-radius: 12px; background: rgba(255, 255, 255, 0.9); font-size: 1rem; }
        .search-btn { background: #ff6b6b; color: white; border: none; padding: 1rem 2rem; border-radius: 12px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
        .search-btn:hover { background: #ff5252; transform: translateY(-2px); }
        
        .hero-visual { position: relative; }
        .property-cards { position: relative; height: 500px; }
        .floating-card { position: absolute; background: white; border-radius: 15px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); padding: 1.5rem; max-width: 280px; animation: float 6s ease-in-out infinite; }
        .floating-card:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
        .floating-card:nth-child(2) { top: 150px; right: 0; animation-delay: 2s; }
        .floating-card:nth-child(3) { bottom: 0; left: 50px; animation-delay: 4s; }
        
        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        
        .card-image { width: 100%; height: 120px; background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); border-radius: 10px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
        .card-title { font-weight: 600; color: #2d3748; margin-bottom: 0.5rem; }
        .card-price { color: #667eea; font-weight: 700; font-size: 1.2rem; }
        .card-location { color: #718096; font-size: 0.9rem; }

/* Properties Section */
.properties-section { padding: 6rem 0; background: #f8fafc; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 3rem; font-weight: 800; color: #2d3748; margin-bottom: 1rem; }
.section-header p { font-size: 1.2rem; color: #718096; }

.properties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.property-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.property-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.property-card img { width: 100%; height: 250px; object-fit: cover; }
.property-card .card-content { padding: 1.5rem; }
.property-card h3 { font-size: 1.3rem; font-weight: 600; color: #2d3748; margin-bottom: 0.5rem; }
.property-card p { color: #718096; margin-bottom: 1rem; }
.property-card .card-price { font-size: 1.5rem; font-weight: 700; color: #667eea; }
.property-card .card-location { color: #a0aec0; font-size: 0.9rem; margin-top: 0.5rem; }

.btn-primary { display: inline-block; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 1rem 2rem; border-radius: 25px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); }

/* Services Section */
.services-section { padding: 6rem 0; background: white; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.service-card { text-align: center; padding: 2rem; border-radius: 15px; transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-5px); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; font-weight: 600; color: #2d3748; margin-bottom: 1rem; }
.service-card p { color: #718096; line-height: 1.6; }

/* About Section */
.about-section { padding: 6rem 0; background: #f8fafc; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; font-weight: 700; color: #2d3748; margin-bottom: 1.5rem; }
.about-text p { color: #718096; margin-bottom: 1.5rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.about-stat { text-align: center; }
.about-stat .stat-number { font-size: 2.5rem; font-weight: 800; color: #667eea; display: block; }
.about-stat .stat-label { color: #718096; font-size: 0.9rem; }
.about-image { display: flex; justify-content: center; align-items: center; }
.image-placeholder { width: 300px; height: 300px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 4rem; color: white; }

/* Contact Section */
.contact-section { padding: 6rem 0; background: white; }
.contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon { font-size: 2rem; width: 60px; height: 60px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-item h3 { color: #2d3748; margin-bottom: 0.5rem; }
.contact-item p { color: #718096; }
.contact-form { background: #f8fafc; padding: 2rem; border-radius: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 1rem; border: 2px solid #e2e8f0; border-radius: 10px; margin-bottom: 1rem; font-size: 1rem; transition: border-color 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #667eea; }

/* Footer */
.footer { background: #2d3748; color: white; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.footer-section h4 { margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #cbd5e0; text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: white; }
.social-links { display: flex; gap: 1rem; }
.social-links a { background: #4a5568; padding: 0.5rem 1rem; border-radius: 5px; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #4a5568; color: #cbd5e0; }

/* Responsive */
@media (max-width: 768px) {
    .hero-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .nav-links { display: none; }
    .about-content { grid-template-columns: 1fr; }
    .contact-content { grid-template-columns: 1fr; }
}