 /* Custom Container */
.estate-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	margin-top: 80px;
	margin-bottom: 80px;
}
/* Hero Section */
.estate-hero {
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	margin-bottom: 30px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.estate-hero-img {
	width: 100%;
	height: 100%;
}
.estate-hero-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
	padding: 30px;
	color: white;
}
/* Property Info */
.estate-info {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-info-primary {
	flex: 1;
	min-width: 300px;
}
.estate-info-secondary {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	align-content: center;
}
.estate-info-item {
	flex: 1;
	min-width: 120px;
	padding: 15px;
	background-color: #efefef;
	border-radius: 10px;
	text-align: center;
}
.estate-title {
	font-size: 2.5rem;
	margin-bottom: 10px;
	font-weight: 500;
	color: #2c3e50;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
	line-height: 20px;
}
.estate-price {
	font-size: 1.8rem;
	color: #3f8343;
	font-weight: 600;
	margin-bottom: 10px;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.estate-address {
	color: #7f8c8d;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.estate-label {
	font-size: 0.9rem;
	color: #95a5a6;
	margin-bottom: 5px;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.estate-value {
	font-size: 1.2rem;
	font-weight: 600;
	color: #34495e;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
/* Details Section */
.estate-details {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-section-title {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #2c3e50;
	position: relative;
	padding-bottom: 10px;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
	font-weight: 500;
}
.estate-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 4px;
	background-color: #3f8343;
	border-radius: 2px;
}
.estate-description {
	color: #555;
	line-height: 1.8;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
	font-size: 15px;
}
/* Amenities Section */
.estate-amenities {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}
.estate-amenity {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	background-color: #efefef;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.estate-amenity:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.estate-amenity-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #dfedeb;
	border-radius: 50%;
	color: #3f8343;
}
/* Nearby Section */
.estate-nearby {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-nearby-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}
.estate-nearby-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background-color: #efefef;
	border-radius: 10px;
}
.estate-nearby-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #dfedeb;
	border-radius: 50%;
	color: #3f8343;
}
.estate-nearby-info {
	flex: 1;
}
.estate-nearby-name {
	font-weight: 500;
	color: #2c3e50;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
.estate-nearby-distance {
	font-size: 0.9rem;
	color: #7f8c8d;
	font-family: "Barlow Semi Condensed", sans-serif;
	letter-spacing: 1px;
}
/* Gallery Section */
.estate-gallery {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 15px;
}
.estate-gallery-item {
	height: 200px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
}
.estate-gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.estate-gallery-item:hover .estate-gallery-img {
	transform: scale(1.05);
}
/* Modal */
.estate-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	z-index: 1000;
	padding: 20px;
	overflow: auto;
}
.estate-modal-content {
	position: relative;
	max-width: 1000px;
	margin: 40px auto;
}
.estate-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 30px;
	cursor: pointer;
	background: none;
	border: none;
	z-index: 1001;
}
.estate-modal-img {
	width: 100%;
	max-height: 80vh;
	object-fit: contain;
}
.estate-modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.2);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 50%;
	font-size: 25px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.3s ease;
}
.estate-modal-nav:hover {
	background: rgba(255,255,255,0.4);
}
.estate-modal-prev {
	left: 20px;
}
.estate-modal-next {
	right: 20px;
}
/* Location Section */
.estate-location {
	background-color: white;
	border-radius: 15px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.estate-map {
	height: auto;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 20px;
}
.estate-map iframe {
	width: 100%;
	height: 400px;
	border: none;
}	
/* Responsive Styles */
@media (max-width: 768px) {
	.estate-hero {
		height: 50vh;
	}
	.estate-title {
		font-size: 2rem;
	}
	.estate-price {
		font-size: 1.5rem;
	}
	.estate-section-title {
		font-size: 1.5rem;
	}
	.estate-amenities-grid,
	.estate-nearby-grid,
	.estate-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	}
	.estate-modal-nav {
		width: 40px;
		height: 40px;
	}
}
@media (max-width: 480px) {
	.estate-hero {
		height: 40vh;
	}
	.estate-hero-overlay {
		padding: 15px;
	}
	.estate-title {
		font-size: 1.8rem;
	}
	.estate-info,
	.estate-details,
	.estate-amenities,
	.estate-nearby,
	.estate-gallery,
	.estate-location {
		padding: 20px;
	}
	.estate-amenities-grid,
	.estate-nearby-grid {
		grid-template-columns: 1fr;
	}
	.estate-gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}
	.estate-gallery-item {
		height: 150px;
	}
}