@charset "utf-8";
/* CSS Document */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Header */
header {
	background: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(15px);
	padding: 1rem 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
	align-items: center;
}

.nav-links a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
}

.nav-links a:hover {
	color: #667eea;
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

.cta-nav {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white !important;
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s;
}

.cta-nav:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Hero Slider */
.hero-slider {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide.active {
	opacity: 1;
}

.slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.slide-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white;
	max-width: 800px;
	padding: 0 20px;
}

.slide h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
	animation: slideInDown 1s ease-out;
}

.slide p {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	animation: slideInUp 1s ease-out 0.3s both;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeIn 1s ease-out 0.6s both;
}

.btn {
	padding: 15px 35px;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: white;
	border: 2px solid white;
	backdrop-filter: blur(10px);
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left 0.7s;
}

.btn:hover::before {
	left: 100%;
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 3;
}

.nav-dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
}

.nav-dot.active {
	background: white;
	transform: scale(1.2);
}

.slider-arrows {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s;
	z-index: 3;
	backdrop-filter: blur(10px);
}

.slider-arrows:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.prev {
	left: 30px;
}

.next {
	right: 30px;
}

/* Floating Contact Button */
.floating-contact {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
	transition: all 0.3s;
	animation: pulse 2s infinite;
}
.floating-contact-whatsapp {
	position: fixed;
	bottom: 30px;
	right: 101px;
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
	transition: all 0.3s;
	animation: pulse 2s infinite;
}

.floating-contact:hover ..floating-contact-whatsapp:hover {
	transform: scale(1.1);
}

@keyframes pulse {
	0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
	50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.8); }
	100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

/* About Section */
.about {
	padding: 100px 0;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	position: relative;
}

.about::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"><circle cx="200" cy="200" r="3" fill="rgba(102,126,234,0.1)"/><circle cx="800" cy="300" r="4" fill="rgba(118,75,162,0.1)"/><circle cx="400" cy="600" r="2" fill="rgba(102,126,234,0.1)"/></svg>');
}

.section-title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.section-subtitle {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 4rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.about-content h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #333;
}

.about-content p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 1.5rem;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.feature-item {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	text-align: center;
	transition: all 0.3s;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.stat-card {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}

.stat-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.stat-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #667eea, #764ba2);
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(135deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
	font-weight: 500;
}

/* Properties Section */
.properties {
	padding: 100px 0;
	background: white;
}

.property-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.property-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	transition: all 0.3s;
	cursor: pointer;
}

.property-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.property-image {
	height: 250px;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
}

.property-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
	opacity: 0;
	transition: opacity 0.3s;
}

.property-card:hover .property-image::before {
	opacity: 1;
}

.property-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.property-details {
	padding: 1.5rem;
}

.property-price {
	font-size: 1.8rem;
	font-weight: bold;
	color: #667eea;
	margin-bottom: 0.5rem;
}

.property-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #333;
}

.property-location {
	color: #666;
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.property-features {
	display: flex;
	gap: 1rem;
	font-size: 0.9rem;
	color: #888;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	backdrop-filter: blur(5px);
}

.modal-content {
	background: white;
	margin: 3% auto;
	padding: 0;
	border-radius: 25px;
	width: 90%;
	max-width: 600px;
	position: relative;
	animation: modalSlideIn 0.4s ease-out;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.modal-header {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 1rem;
	text-align: center;
	position: relative;
}

.modal-header h2 {
	margin: 0;
	font-size: 1.8rem;
}

.close {
	position: absolute;
	right: 20px;
	top: 20px;
	color: white;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
}

.close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.modal-body {
	padding: 2rem;
}

.form-group {
	margin-bottom: 1rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e1e1e1;
	border-radius: 15px;
	font-size: 1rem;
	transition: all 0.3s;
	background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	background: white;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

/* Success/Error Messages */
.message {
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 1rem;
	font-weight: 500;
}

.success-message {
	background: linear-gradient(135deg, #d4edda, #c3e6cb);
	color: #155724;
	border: 1px solid #c3e6cb;
}

.error-message {
	background: linear-gradient(135deg, #f8d7da, #f5c6cb);
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Footer */
footer {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	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-section h3 {
	margin-bottom: 1rem;
	color: #ecf0f1;
}

.footer-section p,
.footer-section a {
	color: #bdc3c7;
	text-decoration: none;
	line-height: 1.8;
}

.footer-section a:hover {
	color: #667eea;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #34495e;
	color: #95a5a6;
}

/* Animations */
@keyframes slideInDown {
	from { opacity: 0; transform: translateY(-30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.slide h1 {
		font-size: 2.5rem;
	}

	.slide p {
		font-size: 1.2rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.modal-content {
		width: 95%;
		margin: 10% auto;
	}
}

/* Loading Animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

