
:root {
    --primary-color: #2E7D32; 
    --primary-dark: #1B5E20;
    --secondary-color: #4CAF50;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f7fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; color: var(--text-dark); line-height: 1.6; background-color: var(--white); }
a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; color: var(--primary-dark); margin-bottom: 10px; }
.divider { height: 3px; width: 80px; background-color: var(--secondary-color); margin: 0 auto; }

.btn { display: inline-block; padding: 10px 25px; border-radius: 5px; font-weight: 500; cursor: pointer; transition: var(--transition); border: none; text-align: center; }
.btn-primary { background-color: var(--primary-color); color: var(--white); }
.btn-primary:hover { background-color: var(--primary-dark); }
.btn-outline { background-color: transparent; color: var(--primary-color); border: 2px solid var(--primary-color); }
.btn-outline:hover { background-color: var(--primary-color); color: var(--white); }
.btn-lg { padding: 15px 40px; font-size: 1.1rem; }

.header { background-color: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo h1 { color: var(--primary-dark); font-size: 1.8rem; }
.logo span { color: var(--secondary-color); }

.nav-list { display: flex; gap: 25px; }
.nav-list li a { font-weight: 500; color: var(--text-dark); transition: var(--transition); }
.nav-list li a:hover, .nav-list li a.active { color: var(--primary-color); }

.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; box-shadow: var(--shadow); border-radius: 4px; padding: 10px 0; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 10px 20px; }
.dropdown-menu li a:hover { background: var(--bg-light); }

.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-color); cursor: pointer; }

.hero { height: 500px; background-color: var(--primary-dark); background-image: linear-gradient(rgba(27, 94, 32, 0.8), rgba(27, 94, 32, 0.8)), url('https://images.unsplash.com/photo-1565514020179-026b92b84bb6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); }
.hero-content h2 { font-size: 3rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.search-box { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: var(--shadow); max-width: 800px; margin: 0 auto; }
.search-fields { display: flex; gap: 15px; }
.search-fields select, .search-fields button { flex: 1; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-size: 1rem; color: var(--text-dark); }

.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.property-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border-color); }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.placeholder-img { height: 200px; background: linear-gradient(45deg, #e0e0e0, #f5f5f5); display: flex; align-items: center; justify-content: center; color: #999; position: relative; overflow: hidden; }
.placeholder-img img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 15px; right: 15px; background: var(--secondary-color); color: white; padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; z-index: 1; }
.property-content { padding: 20px; }
.property-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-dark); }
.location { color: var(--text-light); margin-bottom: 15px; font-size: 0.9rem; }
.property-details { display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); font-size: 0.9rem; }
.price { font-weight: 700; font-size: 1.2rem; color: var(--primary-color); margin-bottom: 15px; }
.property-card .btn { width: 100%; }

.page-header { background-color: var(--bg-light); padding: 60px 0; text-align: center; border-bottom: 1px solid var(--border-color); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 40px 20px; border-radius: 8px; text-align: center; box-shadow: var(--shadow); }
.service-card i { font-size: 3rem; color: var(--secondary-color); margin-bottom: 20px; }
.cta-section { background-color: var(--primary-dark); color: var(--white); padding: 60px 0; }

.form-container, .content-box { background: var(--white); padding: 30px; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid var(--border-color); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-family: inherit; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.filter-bar { display: flex; gap: 15px; }
.filter-bar select { padding: 10px; border: 1px solid var(--border-color); border-radius: 4px; }

.footer { background-color: #1a1a1a; color: #ccc; padding-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 20px; }
.footer-col h3 span { color: var(--secondary-color); }
.footer-col h4 { color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--secondary-color); }
.footer-bottom { border-top: 1px solid #333; padding: 20px 0; text-align: center; font-size: 0.9rem; }

.whatsapp-float { position: fixed; bottom: 30px; right: 30px; background-color: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 100; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); }

@media (max-width: 768px) {
    .mobile-menu-btn { display: block; }
    .nav-list { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); }
    .nav-list.active { display: flex; }
    .dropdown-menu { position: static; box-shadow: none; padding-left: 20px; }
    .hero-content h2 { font-size: 2rem; }
    .search-fields { flex-direction: column; }
    .grid-2-col { grid-template-columns: 1fr; }
}
