/* /web_list/assets/style.css - Production Optimized */

/* CSS Reset and Base */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	line-height: 1.4;
	color: #333;
	background: #fff;
}

.main {
	/* height: 100vh;
	margin-bottom: 10px; */
	min-height: 35vh;

}

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




/* Screen reader only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Header */
.header {
	background: #fff;
	border-bottom: 1px solid #f5f4f4;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	position: relative;
	padding: 0 5px;
}

.logo img {
	height: 32px;
	width: auto;
}

/* Navigation */
.desktop-nav {
	display: flex;
	gap: 32px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.nav {
	display: flex;
	gap: 24px;
}

.nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 400;
	font-size: 14px;
	transition: color 0.2s;
	padding: 8px 0;
}

.nav-link:hover {
	color: #e53e3e;
}

/* Header Controls */
.header-controls {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex-direction: row;
	align-content: space-between;
	justify-content: space-between;
	flex-wrap: wrap;
}

.menu-controls {
	display: flex;
	align-items: center;
	gap: 16px;
}

.header-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}

/* Button Base Styles */
.favorites-btn,
.language-btn,
.filters-toggle-btn,
.favorites-active-btn {
	background: transparent;
	border: none;
	padding: 8px 12px;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s;
	color: #666;
	font-size: 14px;
	white-space: nowrap;
	height: 40px;
}

.favorites-btn:hover,
.language-btn:hover,
.filters-toggle-btn:hover {
	background: #f5f5f5;
	color: #e53e3e;
}

.favorites-count {
	background: #e53e3e;
	color: white;
	font-size: 12px;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 10px;
	min-width: 18px;
	text-align: center;
	line-height: 1.2;
}

/* Language Switcher */
.language-switcher {
	position: relative;
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	min-width: 140px;
	z-index: 1000;
	display: none;
	margin-top: 4px;
}

.language-dropdown.show {
	display: block;
}

.language-dropdown a {
	display: block;
	padding: 10px 16px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: background-color 0.2s;
}

.language-dropdown a:hover {
	background: #f5f5f5;
}

/* Mobile Menu */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
	border-radius: 12px;
	gap: 3px;
}

.mobile-menu-btn span {
	width: 20px;
	height: 2px;
	background: #333;
	transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(3px, -3px)
}

.mobile-nav {
	display: none;
	background: white;
	border-top: 1px solid #e0e0e0;
	padding: 12px 10px;
}

.mobile-nav.show {
	display: block;
	animation: slideDown 0.3s ease;
}

.mobile-nav-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mobile-nav-link {
	/* text-decoration: none; */
	color: #555;
	font-weight: 500;
	font-size: 16px;
	padding: 5px 0;
	/* border-bottom: 1px solid #f0f0f0; */
	transition: color 0.2s;
}

.mobile-nav-link:hover {
	color: #e53e3e;
}

/* Breadcrumbs */
.breadcrumbs {
	margin: 8px 0;
}

.breadcrumb-list {
	display: flex;
	list-style: none;
	gap: 0;
	font-size: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.breadcrumb-list li {
	display: flex;
	align-items: center;
}

.breadcrumb-list li::after {
	content: '›';
	margin: 0 8px;
	color: #999;
	font-size: 16px;
	font-weight: 200;
}

.breadcrumb-list li:last-child::after {
	display: none;
}

.breadcrumb-list a {
	color: #666;
	text-decoration: none;
	font-weight: 500;
	padding: 4px 0;
	transition: color 0.2s;
}

.breadcrumb-list a:hover {
	color: #e53e3e;
}

.breadcrumb-list li:last-child span {
	color: #333;
	font-weight: 600;
}

/* Page Header */
.page-header {
	background: #fff;
	padding: 0 15px 10px 5px;
}

.page-title {
	font-size: 28px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
	white-space: pre-wrap;
}

.results-info {
	/* display: flex;
	gap: 16px; */
	font-size: 16px;
	color: #666;
	margin: 18px 0px 0px 0;
	font-weight: 500;
}

.results-count {
	padding-right: 20px;
}

.results-sort {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Map Button */
.map-btn {
	background: #333;
	color: white;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: background-color 0.2s;
	white-space: nowrap;
	height: 40px;
}

.map-btn:hover {
	background: #444;
}

/* Filters */
.filters {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 28px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.filters-hidden {
	display: none;
}

.filters-visible {
	display: block;
	animation: slideDown 0.3s ease;
}

.filters-form {
	padding: 0 10px;
}

.filters-row {
	display: flex;
	gap: 16px;
	align-items: end;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.filter-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 140px;
	flex: 1;
}

.filter-group label {
	font-size: 13px;
	color: #666;
	font-weight: 500;
}

.filter-group input,
.filter-group select {
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
	background: white;
}

.filter-group input:focus,
.filter-group select:focus {
	border-color: #e53e3e;
}

.filter-group select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
	padding-right: 40px;
}

.filters-actions {
	display: flex;
	gap: 10px;
}

.filter-apply {
	background: #FF1500;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 12px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	transition: background-color 0.3s ease;
}

.filter-apply:hover {
	background: #e60000;
}

.filter-clear {
	background: transparent;
	color: #666;
	border: 1px solid #ddd;
	padding: 10px 20px;
	border-radius: 12px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.3s ease;
}

.filter-clear:hover {
	background: #f5f5f5;
	border-color: #bbb;
}

/* Properties Grid */
.properties-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 20px;
	/* margin-bottom: 15px; */
	padding: 0px 5px;
}

.property-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.property-card {
	background: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	border-radius: 27px;
	/* margin: 8px 4px; */
	/* padding-bottom: 0px; */
	height: 98%;
}

.property-image {
	position: relative;
	max-height: 350px;
	overflow: hidden;
	border-radius: 28px;
	margin-bottom: 10px;
	background: #eee;
	/* height: 100%; */
}

.property-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
	aspect-ratio: 16 / 12;
}

/* .property-location a::after {
	content: '›';
	margin: 0 8px;
	color: #999;
	font-size: 16px;
	font-weight: 200;
} */

.property-image img:hover {
	transform: scale(1.3);
}

.simple-placeholder {
	width: 100%;
	min-height: 240px;
	background: #f5f5f5;
	border-radius: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: #999;
}

.simple-placeholder svg {
	opacity: 0.6;
	stroke: #999;
}

.simple-placeholder span {
	font-size: 12px;
	font-weight: 500;
	color: #999;
}

/* Property Badges */
.property-badges {
	position: absolute;
	top: 14px;
	left: 16px;
	display: flex;
	gap: 6px;
	z-index: 10;
}

.badge {
	padding: 7px 13px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 400;
	color: white;
	backdrop-filter: blur(3px);
}

.badge-new {
	background: rgba(0, 255, 0, 0.6);
}

.badge-featured {
	background: rgba(255, 0, 0, 0.6);
}

.badge-3dtour {
	background: rgba(0, 123, 255, 0.8);
}

/* Favorite Button */
.favorite-btn {
	position: absolute;
	top: 12px;
	right: 14px;
	background: transparent;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	color: #666;
	z-index: 10;
}

.favorite-btn:hover {
	/* background: rgba(255, 255, 255, 0.4); */
	transform: scale(1.15);
	color: #e74c3c;
}

.favorite-btn.favorite-active {
	color: #ff1500;
}

.favorite-btn svg {
	transition: all 0.3s ease;
	fill: rgba(51, 51, 51, 0.575);
	stroke-width: 1.1;
	stroke: #fff;
}

.favorite-btn.favorite-active svg {
	fill: red !important;
	color: red !important;
	stroke: red !important;
}

.favorite-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Property Content */
.property-content {
	padding: 0 9px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.property-specs {
	display: flex;
	gap: 4px;
	/* margin-bottom: 8px; */
	font-size: 14px;
	color: #333;
	flex-direction: row;
	flex-wrap: wrap;
}



.property-specs a {
	color: #333;
	text-decoration: none;
}

.property-specs a:hover {
	color: #222;
	text-decoration: underline;
}

.prop_type {
	font-size: 14px;
	font-weight: 500;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;


	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.prop_type a {
	/* white-space: nowrap; */

}

.property-card-link .spec {
	color: #666;
	font-size: 16px;
	white-space: nowrap;

}

.property-price {
	/* margin-bottom: 8px; */
}

.price {
	font-size: 22px;
	font-weight: 500;
	color: #333;
}

.currency {
	font-size: 14px;
	color: #666;
	margin-left: 4px;
}

.period {
	font-size: 14px;
	color: #666;
}

.property-address {
	font-size: 13px;
	color: #999;
	margin-bottom: 4px;
	/* line-height: 1.3; */
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.property-location {
	color: #666;
	font-size: 13px;
	/* margin-bottom: 8px; */
}

.property-location a {
	color: #666;
	font-size: 13px;
	/* margin-bottom: 8px; */
}

.property-project {
	font-size: 13px;
	font-weight: 400;
	color: #333;
	line-height: 1.3;
}

.property-project {
	font-size: 13px;
	font-weight: 400;
	color: #333;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clickable-project a {
	color: #333;



}

.clickable-project {
	padding: 3px 10px;
	border-radius: 10px;
	margin: 0px -10px;
}


.properties-section {
	/* padding: 0px 15px; */
}

/* Pagination */
.pagination {
	background: #fff;
	padding: 20px 0;
	margin-bottom: 10px;
	text-align: center;
}

.pagination-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.pagination-link {
	border-radius: 28px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.2s;
	min-width: 40px;
	text-align: center;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagination-link:hover {
	background: #f5f5f5;
	border-color: #ccc;
}

.pagination-current {
	background: #e6e6e6;
	color: #323232;
	border-color: #c6c6c6;
}

.pagination-prev,
.pagination-next {
	font-weight: 500;
}

/* SEO Content */
.seo-content {
	background: #fff;
	padding: 12px 15px;
	margin-bottom: 40px;
}

.seo-content h2,
.seo-content h3 {
	color: #333;
	margin-bottom: 16px;
}

.seo-content h2 {
	font-size: 24px;
}

.seo-content h3 {
	font-size: 20px;
	margin: 24px 0 12px;
}

.search-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 2fr));
	font-size: 14px;
	gap: 2px;
	color: #333;
}

.search-grid a {
	color: #333;
	padding: 5px 4px;
	display: block;
	transition: color 0.2s;
}

.search-grid a:hover {
	color: #c53030;
}

/* Footer */
.footer {
	background: #2d3748;
	color: #a0aec0;
	padding: 40px 15px;
	/* position: fixed;
		bottom: 0px;
		width: 100%; */

}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-bottom: 32px;
	justify-items: start;
	justify-content: space-around;
}

.footer-section h4 {
	color: #fff;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 600;
}

.footer-section ul {
	list-style: none;
}

.footer-section li {
	margin-bottom: 8px;
}

.footer-section a {
	color: #a0aec0;
	text-decoration: none;
	transition: color 0.2s;
	font-size: 14px;
}

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

.footer-section p {
	color: #a0aec0;
	font-size: 14px;
	margin-bottom: 4px;
}

.footer-bottom {
	border-top: 1px solid #4a5568;
	text-align: center;
	font-size: 14px;
	display: flex;
	align-items: baseline;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 10px;
}

.footer-bottom-left {
	display: flex;
	gap: 14px;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.footer-bottom-left a {
	color: #a0aec0;
}

.footer-bottom-right {
	display: flex;
	gap: 5px;
	margin-top: 16px;
	justify-content: flex-end;
}


.footer-bottom-right a {
	color: #a0aec0;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s;
}

.footer-bottom-right a:hover {
	color: #fff;
}

/* Social Links */
.social-links {
	display: flex;
	gap: 5px;
	margin-top: 16px;
	justify-content: center;
}

.social-links a {
	width: 36px;
	height: 36px;
	/* background: #4a5568; */
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #a0aec0;
	transition: all 0.2s;
}

.social-links a:hover {
	background: #718096;
	color: #fff;
}

/* Notifications */
.notification {
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 9999;
	max-width: 400px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: slideInRight 0.3s ease;
	overflow: hidden;
}

.notification-info {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	color: #0d47a1;
}

.notification-success {
	background: #e8f5e8;
	border-left: 4px solid #4caf50;
	color: #1b5e20;
}

.notification-error {
	background: #ffebee;
	border-left: 4px solid #f44336;
	color: #c62828;
}

.notification-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	font-size: 14px;
	font-weight: 500;
}

.notification-close {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: inherit;
	opacity: 0.7;
	padding: 0 4px;
	margin-left: 12px;
	transition: opacity 0.2s;
}

.notification-close:hover {
	opacity: 1;
}

/* Search Notification */
.search-notification {
	background: #fff3cd;
	border: 1px solid #ffeaa7;
	border-radius: 25px;
	padding: 12px 16px;
	margin-bottom: 20px;
	animation: slideIn 0.3s ease;
}

.search-notification-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	color: #856404;
}

.clear-search-btn {
	background: none;
	border: none;
	font-size: 16px;
	cursor: pointer;
	color: #856404;
	padding: 0 4px;
	transition: color 0.2s;
}

.clear-search-btn:hover {
	color: #533f01;
}

/* Animations */
@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Focus States */
.property-card-link:focus {
	/* outline: 1px solid #e53e3e;
	outline-offset: 2px;
	border-radius: 34px; */
}

.favorite-btn:focus,
.language-btn:focus,
.favorites-btn:focus,
.mobile-menu-btn:focus {
	outline: 2px solid #e53e3e;
	outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.container {
		max-width: 1200px;
		padding: 0 18px;
	}

	.properties-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px 20px;
	}

	.property-image {
		max-height: 77%;
	}
}

@media (max-width: 900px) {
	.properties-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 20px;

	}

	.property-card-link .spec {
		font-size: 22px;
	}

	.property-image {
		max-height: 77%;
	}

	.property-specs {
		font-size: 16px;
		/* gap: 8px; */
	}

	.prop_type {
		font-size: 16px;
	}

	.price {
		font-size: 26px;
	}

	.property-project {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.header-content {
		height: 56px;
	}

	.desktop-nav {
		display: none;
	}

	.mobile-menu-btn {
		display: flex;
	}

	.header-controls {
		gap: 12px;
	}

	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.results-sort {
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}

	.lazy-slide video {
		height: 300px !important;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 18px;
	}

	.header-content {
		height: 50px;
	}

	.logo img {
		height: 28px;
	}

	.page-title {
		font-size: 20px;
	}

	.results-info {
		/* flex-direction: column; */
		/* gap: 4px; */
		font-size: 16px;
	}

	.filters {
		padding: 16px;
	}

	.property-card {

		height: 100%;
	}

	.properties-grid {
		grid-template-columns: 1fr;
		/* margin-bottom: 15px; */
	}

	.property-image {
		height: 67%;
	}

	.pagination {
		padding: 16px 0;
		/* margin-bottom: 32px; */
	}

	.pagination-links {
		gap: 4px;
	}

	.pagination-link {
		font-size: 14px;
		/* min-width: 32px; */
	}

	.seo-content {
		padding: 20px 10px;
		margin-bottom: 32px;
	}

	.seo-content h2 {
		font-size: 20px;
	}

	.seo-content h3 {
		font-size: 18px;
	}

	.footer {
		padding: 32px 5px;
	}

	.footer-content {
		gap: 24px;
		margin-bottom: 24px;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.breadcrumb-list {
		font-size: 13px;
	}

	.breadcrumb-list li::after {
		margin: 0 6px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 12px;
	}

	.page-title {
		font-size: 18px;
	}

	.notification {
		top: 60px;
		left: 16px;
		right: 16px;
		max-width: none;
	}

	.language-dropdown {
		right: -16px;
		min-width: 120px;
	}

	.footer-bottom-right {
		/* flex-direction: column; */
		gap: 8px;
	}

	.pagination-prev,
	.pagination-next {
		display: none;
	}

	.lazy-slide video {
		height: 300px !important;
	}
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
	.mobile-nav {
		display: none !important;
	}
}


////

/* Property Slider */
.property-slider {
	position: relative;
	height: 220px;
	overflow: hidden;
	border-radius: 28px;
	background: #f5f5f5;
}

.slider-container {
	width: 100%;
	height: 100%;
}

.slider-slide {
	width: 100%;
	height: 100%;
	display: none;
}

.slider-slide.active {
	display: block;
}



/* Navigation */
.slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	opacity: 0;
	transition: all 0.2s ease;
	color: #333;
}

.property-slider:hover .slider-nav {
	opacity: 1;
}

.slider-prev {
	left: 12px;
}

.slider-next {
	right: 12px;
}

/* Dots indicator */
.slider-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	z-index: 20;
}

.slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.2s ease;
}

.slider-dot.active {
	background: rgba(255, 255, 255, 0.9);
	transform: scale(1.2);
}

/* Mobile optimizations */
@media (max-width: 768px) {
	.slider-nav {
		display: none;
	}

}

.slider-slide img,
.slider-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* Video in slider */
.slider-slide video {
	width: 100%;
	/* max-height: 212px; */
	object-fit: cover;
	display: block;
	border-radius: 28px;
}

.lazy-slide video {
	width: 100%;
	height: 15rem;
	object-fit: cover;
	display: block;
}

.lazy-video {
	/* max-height: 300px; */

}

/* Calculator styles - добавить в конец файла */

/* Page Header для калькулятора */
.page-header {
	text-align: center;
	margin: 20px 0 30px 0;
	padding: 0 15px;
}

.page-header h1 {
	font-size: 28px;
	font-weight: 500;
	color: #333;
	margin-bottom: 12px;
}

.page-description {
	font-size: 16px;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.4;
}

/* Quick Stats */
.quick-stats {
	margin: 30px 0;
	padding: 0 15px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.stat-card {
	background: #fff;
	padding: 24px;
	border-radius: 27px;
	text-align: center;
	border: 1px solid #e0e0e0;
	transition: all 0.2s ease;
}

.stat-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 22px;
	font-weight: 500;
	color: #e53e3e;
	margin-bottom: 8px;
}

.stat-label {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

/* Navigation Sections */
.navigation-section {
	margin: 40px 0;
	padding: 0 15px;
}

.navigation-section h2 {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333;
}

.nav-grid {
	display: grid;
	gap: 20px;
	margin-bottom: 30px;
}

.countries-grid {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cities-grid {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.districts-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.categories-grid {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.types-grid {
	grid-template-columns: repeat(2, 1fr);
}

/* Navigation Cards */
.nav-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 27px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.nav-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	border-color: #e53e3e;
}

.nav-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
	padding: 20px;
}

.nav-card-content {
	padding: 20px;
}

.nav-card h3 {
	font-size: 18px;
	margin-bottom: 16px;
	color: #333;
	font-weight: 500;
}

.nav-stats {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	gap: 16px;
}

.nav-stat {
	text-align: center;
	flex: 1;
}

.nav-number {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #e53e3e;
	margin-bottom: 4px;
}

.nav-label {
	font-size: 13px;
	color: #666;
	font-weight: 500;
}

.nav-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.action-btn {
	padding: 8px 16px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	display: inline-block;
	text-align: center;
	flex: 1;
}

.action-btn:not(.secondary) {
	background: #e53e3e;
	color: white;
}

.action-btn:not(.secondary):hover {
	background: #c53030;
}

.action-btn.secondary {
	background: transparent;
	color: #e53e3e;
	border: 1px solid #e53e3e;
}

.action-btn.secondary:hover {
	background: #e53e3e;
	color: white;
}

/* Bedrooms Section */
.bedrooms-section {
	margin: 40px 0;
	padding: 0 15px;
}

.bedrooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.bedroom-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 27px;
	padding: 20px;
	text-align: center;
	transition: all 0.2s ease;
}

.bedroom-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bedroom-header h3 {
	font-size: 16px;
	margin-bottom: 8px;
	color: #333;
	font-weight: 500;
}

.bedroom-count {
	font-size: 14px;
	color: #666;
	margin-bottom: 16px;
}

.price-main {
	font-size: 20px;
	font-weight: 500;
	color: #e53e3e;
}

.price-period {
	font-size: 14px;
	color: #666;
}

/* Calculator Widget */
.calculator-widget {
	background: #f8f9fa;
	border-radius: 27px;
	padding: 30px;
	margin: 40px 15px;
	border: 1px solid #e0e0e0;
}

.calc-inputs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
	margin-bottom: 20px;
}

.calc-inputs select,
.calc-inputs input {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 12px;
	font-size: 14px;
	outline: none;
	transition: border-color 0.2s;
	background: white;
}

.calc-inputs select:focus,
.calc-inputs input:focus {
	border-color: #e53e3e;
}

.calc-results {
	background: white;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.result-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.result-label {
	font-weight: 500;
	color: #333;
}

.result-value {
	font-size: 18px;
	font-weight: 500;
	color: #e53e3e;
}

/* Responsive для калькулятора */
@media (max-width: 768px) {
	.nav-grid {
		grid-template-columns: 1fr;
	}

	.types-grid {
		grid-template-columns: 1fr;
	}

	.calc-inputs {
		grid-template-columns: 1fr;
	}
}

/* Исправления для калькулятора */
.nav-card,
.stat-card,
.bedroom-card {
	border-radius: 12px;
	/* вместо 27px */
}

.calculator-widget {
	border-radius: 16px;
	/* вместо 27px */
}

.nav-card h3 {
	font-size: 16px;
	/* вместо 18px */
	font-weight: 600;
	/* жирнее */
}

.stat-number {
	font-size: 24px;
	/* крупнее */
	font-weight: 600;
}

.nav-number {
	font-size: 18px;
	/* крупнее */
	font-weight: 600;
}

.price-main {
	font-size: 22px;
	/* крупнее */
	font-weight: 600;
}

/* Убрать дурацкие эффекты */
.nav-card:hover,
.stat-card:hover,
.bedroom-card:hover {
	transform: none;
	/* убрать translateY */
}

/* Amenities как карточки */
.amenities-section {
	margin: 40px 0;
	padding: 0 15px;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.amenity-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
	transition: all 0.2s ease;
}

.amenity-card:hover {
	border-color: #e53e3e;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.amenity-icon {
	font-size: 1.8rem;
	margin-bottom: 12px;
	display: block;
}

.amenity-content h4 {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.amenity-percentage {
	font-size: 20px;
	font-weight: 600;
	color: #e53e3e;
}


/* Новые стили для калькулятора по типам */
.property-type-section {
	margin: 30px 0;
}

.property-type-section h3 {
	font-size: 20px;
	font-weight: 500;
	color: #333;
	margin-bottom: 20px;
	border-bottom: 2px solid #e53e3e;
	padding-bottom: 8px;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.price-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s ease;
}

.price-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #e53e3e;
}

.price-card a {
	display: block;
	padding: 20px;
	text-decoration: none;
	color: inherit;
}

.price-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.price-main {
	font-size: 22px;
	font-weight: 600;
	color: #e53e3e;
	margin-bottom: 4px;
}

.price-period {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}

.price-count {
	font-size: 13px;
	color: #999;
}

.category-breakdown {
	margin: 40px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 12px;
}

.category-breakdown h3 {
	font-size: 22px;
	font-weight: 600;
	color: #333;
	margin-bottom: 20px;
}

.type-breakdown {
	margin: 20px 0;
}

.type-breakdown h4 {
	font-size: 18px;
	font-weight: 500;
	color: #333;
	margin-bottom: 16px;
}

.bedrooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 16px;
}

.bedroom-card h5 {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.view-btn {
	background: #e53e3e;
	color: white;
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	margin-top: 8px;
	transition: background 0.2s;
}

.view-btn:hover {
	background: #c53030;
}

/* Обновленные стили для карточек цен */
.price-card {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

.price-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #e53e3e;
}

.price-card-content {
	padding: 20px 20px 16px 20px;
	flex: 1;
}

.price-actions {
	padding: 0 20px 20px 20px;
	display: flex;
	gap: 8px;
	flex-direction: column;
}

.price-actions .action-btn {
	flex: 1;
	text-align: center;
	font-size: 12px;
	padding: 8px 12px;
}

.price-card h4 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.price-main {
	font-size: 24px;
	font-weight: 600;
	color: #e53e3e;
	margin-bottom: 4px;
}

.price-period {
	font-size: 14px;
	color: #666;
	margin-bottom: 8px;
}

.price-count {
	font-size: 13px;
	color: #999;
}

/* Дополнительные стили для SEO контента */
.section-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 24px;
	line-height: 1.6;
}

.price-description {
	font-size: 13px;
	color: #777;
	margin-top: 8px;
	line-height: 1.4;
}

.section-seo-text {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 12px;
	margin-top: 24px;
}

.section-seo-text h4 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.section-seo-text p {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 12px;
}

.bedroom-description {
	font-size: 12px;
	color: #777;
	margin: 8px 0;
	line-height: 1.3;
}

.action-btn {
	font-size: 13px !important;
	padding: 10px 14px !important;
}

/* Bedroom Price Grid Styles - НОВЫЕ СТИЛИ ДЛЯ КАЛЬКУЛЯТОРА */
.country-bedroom-section {
	margin-bottom: 3rem;
	padding: 2rem;
	background: #fafafa;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
}

.country-bedroom-section h4 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
}

.bedroom-price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.bedroom-price-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	position: relative;
}

.bedroom-price-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: #e53e3e;
}

.bedroom-price-card h5 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.bedroom-price-card .price-main {
	font-size: 2rem;
	font-weight: 700;
	color: #e53e3e;
	margin-bottom: 0.5rem;
}

.bedroom-price-card .price-period {
	color: #666;
	font-size: 0.875rem;
	margin-bottom: 0.5rem;
}

.bedroom-price-card .price-count {
	color: #666;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1rem;
	padding: 0.25rem 0.75rem;
	background: #f3f4f6;
	border-radius: 20px;
	display: inline-block;
}

.bedroom-price-card .price-description {
	color: #666;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

.bedroom-price-card .price-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bedroom-price-card .action-btn {
	display: inline-block;
	padding: 0.75rem 1rem;
	background: #e53e3e;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.bedroom-price-card .action-btn:hover {
	background: #c53030;
}

.bedroom-price-card .action-btn.secondary {
	background: #f8fafc;
	color: #333;
	border: 1px solid #ddd;
}

.bedroom-price-card .action-btn.secondary:hover {
	background: #f1f5f9;
	border-color: #999;
}

/* Country SEO Text */
.country-seo-text {
	margin-top: 2rem;
	padding: 1.5rem;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}

.country-seo-text h5 {
	color: #333;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.country-seo-text p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.country-seo-text p:last-child {
	margin-bottom: 0;
}

/* Search Intent Sections */
.comprehensive-seo-content {
	margin: 3rem 0;
	padding: 2rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 12px;
	border: 1px solid #e0e0e0;
}

.comprehensive-seo-content h3 {
	color: #333;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
}

.search-intent-sections {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
	grid-template-columns: auto auto;
	gap: 2rem;
}

.intent-section {
	background: #ffffff;
	padding: 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	border: 1px solid #e0e0e0;
}

.intent-section h4 {
	color: #333;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e53e3e;
}

.intent-section p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Responsive для новых стилей */
@media (max-width: 768px) {
	.bedroom-price-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.bedroom-price-card {
		padding: 1.25rem;
	}

	.bedroom-price-card .price-main {
		font-size: 1.75rem;
	}

	.search-intent-sections {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.comprehensive-seo-content {
		padding: 1.5rem;
		margin: 2rem 0;
	}

	.country-bedroom-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}
}

@media (max-width: 480px) {
	.bedroom-price-card .price-actions {
		gap: 0.5rem;
	}

	.bedroom-price-card .action-btn {
		padding: 0.625rem 0.875rem;
		font-size: 0.8rem;
	}
}

/* Districts and Projects Section */
.districts-projects-section {
	margin: 1rem 0;
	padding: 0 15px;
}

.districts-projects-section h2 {
	color: #333;
	font-size: 1.75rem;
	font-weight: 600;
	margin-bottom: 1rem;
	text-align: center;
}

.districts-projects-section .section-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Area Type Tabs */
.area-type-tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
	gap: 2rem;
}

.area-tab {
	padding: 1rem 2rem;
	background: none;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: all 0.3s ease;
}

.area-tab.active {
	color: #e53e3e;
	border-bottom-color: #e53e3e;
	font-weight: 600;
}

.area-tab:hover {
	color: #333;
}

/* Area Content */
.area-content {
	display: none;
}

.area-content.active {
	display: block;
	animation: fadeIn 0.3s ease;
}

.area-content h3 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.area-description {
	font-size: 15px;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

/* Districts Grid */
.districts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.district-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.district-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: #e53e3e;
}

.district-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.district-header h4 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.district-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
}

.district-count {
	color: #666;
	font-weight: 500;
}

.district-type {
	color: #e53e3e;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.75rem;
	padding: 0.25rem 0.5rem;
	background: #fef2f2;
	border-radius: 12px;
}

/* District Property Types */
.district-property-types {
	margin-bottom: 1.5rem;
}

.district-type-section {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #fafafa;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
}

.district-type-section h5 {
	color: #333;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.district-price-info {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.district-main-price {
	font-size: 1.5rem;
	font-weight: 600;
	color: #e53e3e;
}

.district-price-period {
	font-size: 0.875rem;
	color: #666;
}

.district-property-count {
	font-size: 0.875rem;
	color: #999;
	padding: 0.25rem 0.5rem;
	background: #f3f4f6;
	border-radius: 12px;
}

/* Bedroom Breakdown */
.district-bedroom-breakdown {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	gap: 0.75rem;
}

.bedroom-item {
	text-align: center;
	padding: 0.5rem;
	background: #ffffff;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.bedroom-label {
	display: block;
	font-size: 0.75rem;
	color: #666;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.bedroom-price {
	display: block;
	font-size: 0.875rem;
	color: #e53e3e;
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.bedroom-count {
	display: block;
	font-size: 0.75rem;
	color: #999;
}

/* District Actions */
.district-actions {
	display: flex;
	gap: 0.75rem;
	flex-direction: column;
	margin-bottom: 1rem;
}

.district-actions .action-btn {
	flex: 1;
	text-align: center;
	font-size: 0.875rem;
	padding: 0.75rem 1rem;
}

/* District SEO Text */
.district-seo-text {
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.district-seo-text p {
	font-size: 0.875rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* Projects Grid - похожие стили */
.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.project-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
}

.project-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
	border-color: #e53e3e;
}

.project-header {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f0f0f0;
}

.project-header h4 {
	color: #333;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.project-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.875rem;
}

.project-count {
	color: #666;
	font-weight: 500;
}

.project-avg-price {
	color: #e53e3e;
	font-weight: 600;
}

.project-property-types {
	margin-bottom: 1.5rem;
}

.project-type-section {
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #fafafa;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
}

.project-type-section h5 {
	color: #333;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.project-price-info {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

.project-main-price {
	font-size: 1.4rem;
	font-weight: 600;
	color: #e53e3e;
}

.project-price-period {
	font-size: 0.875rem;
	color: #666;
}

.project-property-count {
	font-size: 0.875rem;
	color: #999;
	padding: 0.25rem 0.5rem;
	background: #f3f4f6;
	border-radius: 12px;
}

.project-bedroom-breakdown {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	gap: 0.75rem;
}

.project-actions {
	display: flex;
	gap: 0.75rem;
	flex-direction: column;
	margin-bottom: 1rem;
}

.project-actions .action-btn {
	flex: 1;
	text-align: center;
	font-size: 0.875rem;
	padding: 0.75rem 1rem;
}

.project-seo-text {
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.project-seo-text p {
	font-size: 0.875rem;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

/* SEO Content Sections */
.districts-seo-content,
.projects-seo-content {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	margin-top: 2rem;
}

.districts-seo-content h4,
.projects-seo-content h4 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.districts-seo-content p,
.projects-seo-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.districts-seo-content p:last-child,
.projects-seo-content p:last-child {
	margin-bottom: 0;
}

/* Fade In Animation */
/* Fade In Animation - продолжение */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {

	.districts-grid,
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.area-type-tabs {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.area-tab {
		padding: 0.75rem 1.5rem;
		width: 100%;
		max-width: 300px;
		text-align: center;
	}

	.district-bedroom-breakdown,
	.project-bedroom-breakdown {
		grid-template-columns: repeat(2, 1fr);
	}

	.district-actions,
	.project-actions {
		gap: 0.5rem;
	}

	.district-price-info,
	.project-price-info {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}

	.districts-projects-section {
		margin: 2rem 0;
		padding: 0 10px;
	}

	.districts-seo-content,
	.projects-seo-content {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {

	.district-card,
	.project-card {
		padding: 1rem;
	}

	.district-header h4,
	.project-header h4 {
		font-size: 1.1rem;
	}

	.district-main-price,
	.project-main-price {
		font-size: 1.25rem;
	}

	.district-actions .action-btn,
	.project-actions .action-btn {
		padding: 0.625rem 0.875rem;
		font-size: 0.8rem;
	}

	.bedroom-item {
		padding: 0.375rem;
	}

	.bedroom-price {
		font-size: 0.8rem;
	}
}

/* Comprehensive SEO Content */
.comprehensive-seo-content {
	margin: 3rem 0;
	padding: 2rem;
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	border-radius: 12px;
	border: 1px solid #e2e8f0;
}

.comprehensive-seo-content h2 {
	color: #333;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 2rem;
	text-align: center;
	border-bottom: 3px solid #e53e3e;
	padding-bottom: 1rem;
}

.search-intent-sections {
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
	grid-template-columns: auto auto;
	gap: 2rem;
	margin-bottom: 3rem;
}

.intent-section {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #e2e8f0;
}

.intent-section h3 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e53e3e;
}

.intent-section p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

/* Popular Searches */
.popular-searches {
	margin-top: 1.5rem;
}

.popular-searches h4 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.search-list {
	list-style: none;
	padding: 0;
}

.search-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
	font-style: italic;
}

.search-list li:last-child {
	border-bottom: none;
}

/* Price Factors */
.price-factors {
	margin-top: 1.5rem;
}

.price-factors h4 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.factors-list {
	list-style: none;
	padding: 0;
}

.factors-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #f0f0f0;
	color: #666;
	line-height: 1.5;
}

.factors-list li:last-child {
	border-bottom: none;
}

.factors-list li strong {
	color: #e53e3e;
	font-weight: 600;
}

/* Investment Tips */
.investment-tips {
	margin-top: 1.5rem;
}

.investment-tips h4 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.tips-list {
	list-style: none;
	padding: 0;
}

.tips-list li {
	padding: 0.5rem 0 0.5rem 1.5rem;
	position: relative;
	color: #666;
	line-height: 1.5;
}

/* Investment Tips - продолжение */
.tips-list li::before {
	content: "💡";
	position: absolute;
	left: 0;
	top: 0.5rem;
	font-size: 1rem;
}

/* Districts Comparison */
.districts-comparison {
	margin-top: 1.5rem;
}

.districts-comparison h4 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.districts-grid-seo {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.district-item-seo {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	text-align: center;
}

.district-item-seo h5 {
	color: #333;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.district-price {
	color: #e53e3e;
	font-weight: 600;
	margin-bottom: 0.25rem;
	font-size: 0.9rem;
}

.district-count {
	color: #666;
	font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-section h3 {
	color: #333;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-align: center;
	border-bottom: 2px solid #e53e3e;
	padding-bottom: 0.5rem;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.faq-item {
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #e53e3e;
}

.faq-item h4 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

.faq-item p {
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Responsive для SEO контента */
@media (max-width: 768px) {
	.search-intent-sections {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.intent-section {
		padding: 1.5rem;
	}

	.comprehensive-seo-content {
		padding: 1.5rem;
		margin: 2rem 0;
	}

	.districts-grid-seo {
		grid-template-columns: repeat(2, 1fr);
	}

	.faq-section {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.comprehensive-seo-content h2 {
		font-size: 1.5rem;
	}

	.intent-section h3 {
		font-size: 1.2rem;
	}

	.districts-grid-seo {
		grid-template-columns: 1fr;
	}

	.faq-item {
		padding: 1rem;
	}

	.faq-item h4 {
		font-size: 1rem;
	}
}

/* В style.css добавить: */
.location-media-gallery {
	/* margin: 40px 0; */
	padding: 30px 0;
	border-top: 1px solid #eee;
}

.media-section {
	margin-bottom: 30px;
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.media-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.media-item:hover {
	transform: translateY(-5px);
}

.location-image,
.location-video {
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}

.media-caption {
	margin-top: -18px;
	padding-left: 10px;
}

.media-caption h4 {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 600;
}

.media-description {
	color: #666;
	font-size: 14px;
	margin: 0 0 10px 0;
}

.media-attribution {
	font-size: 12px;
	color: #999;
	margin: 0;
	font-style: italic;
}