/* Общие стили */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", "Arial", sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Первая шапка (фиксированная) */
.main-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100px;
	background: white;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.logo img {
	height: 80px;
	transition: height 0.3s;
}

/* Десктопная часть шапки */
.desktop-header-content {
	display: flex;
	flex: 1;
	justify-content: flex-end;
	align-items: center;
}

.header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 5px;
}

.header-top-row {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-bottom-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 5px;
}

.city-selector {
	position: relative;
	display: inline-block;
}

.city-btn {
	background: #fff;
	border: 2px solid #f7a82d;
	color: #4d4d4d;
	padding: 8px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s;
	white-space: nowrap;
}

.city-btn:hover {
	background: #f7a82d;
	color: white;
}

.city-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
	min-width: 200px;
	z-index: 1001;
}

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

.city-option {
	display: block;
	width: 100%;
	padding: 10px 20px;
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	color: #4d4d4d;
	transition: all 0.3s;
}

.city-option:hover {
	background: #f5f5f5;
	color: #f7a82d;
}

/* Телефон в хедере */
.header-top-row .phone {
	font-size: 18px;
	font-weight: bold;
	color: #f7a82d;
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.header-top-row .phone a {
	color: #f7a82d;
	text-decoration: none;
	transition: color 0.3s;
}

.header-top-row .phone a:hover {
	color: #e5971e;
}

.callback-btn {
	background: #f7a82d;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.3s;
	white-space: nowrap;
}

.callback-btn:hover {
	background: #e5971e;
}

/* Вторая шапка (меню) */
.sub-header {
	background: #f7a82d;
	height: 45px;
	margin-top: 100px;
}

.sub-header-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
}

.main-menu {
	display: flex;
	list-style: none;
	height: 100%;
}

.menu-item {
	position: relative;
	height: 100%;
}

.menu-link {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 0 20px;
	color: #f7a82d;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	background: #4d4d4d;
	gap: 8px;
}

.menu-link:hover {
	background: #333;
	color: #f7a82d;
}

.menu-item:not(:first-child) .menu-link {
	color: white;
	background: transparent;
}

.menu-item:not(:first-child) .menu-link:hover {
	color: #4d4d4d !important;
	background: white;
}

.has-dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 200px;
	z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-item {
	display: block;
	padding: 12px 20px;
	color: #4d4d4d;
	text-decoration: none;
	transition: background 0.3s;
}

.dropdown-item:hover {
	background: #f5f5f5;
	color: #f7a82d;
}

/* Иконка гамбургера для кнопки Услуги */
.hamburger-icon {
	display: inline-block;
	width: 20px;
	height: 14px;
	position: relative;
	transition: transform 0.3s;
}

.hamburger-icon span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #f7a82d;
	border-radius: 2px;
	opacity: 1;
	left: 0;
	transition: all 0.3s;
}

.hamburger-icon span:nth-child(1) {
	top: 0;
}

.hamburger-icon span:nth-child(2) {
	top: 6px;
}

.hamburger-icon span:nth-child(3) {
	top: 12px;
}

.menu-link:hover .hamburger-icon {
	transform: rotate(90deg);
}

.menu-link:hover .hamburger-icon span:nth-child(1) {
	top: 6px;
	transform: rotate(45deg);
}

.menu-link:hover .hamburger-icon span:nth-child(2) {
	opacity: 0;
}

.menu-link:hover .hamburger-icon span:nth-child(3) {
	top: 6px;
	transform: rotate(-45deg);
}

/* Баннерная секция */
.banner-section {
	position: relative;
	height: 600px;
	background: url("img/banner.jpg") no-repeat center center;
	background-size: cover;
	margin-top: 0px;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.banner-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.banner-content h1 {
	font-size: 36px;
	margin-bottom: 30px;
	color: white !important;
	max-width: 800px;
}

.banner-features {
	margin-bottom: 40px;
}

.banner-feature {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	color: white;
	font-size: 18px;
}

.banner-feature i {
	color: #f7a82d;
	font-size: 20px;
}

.banner-callback-btn {
	background: #f7a82d;
	color: white;
	border: none;
	padding: 15px 40px;
	font-size: 18px;
	border-radius: 5px;
	cursor: pointer;
	transition: background 0.3s;
}

.banner-callback-btn:hover {
	background: #e5971e;
}

/* Слайдер баннер */
.slider-section {
	padding: 50px 0;
	background: #f8f9fa;
	position: relative;
}

.slider-container {
	max-width: 840px;
	margin: 0 auto;
	position: relative;
	height: 307px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
}

.slider-slide {
	min-width: 100%;
	height: 100%;
	position: relative;
}

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

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(247, 168, 45, 0.8);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: background 0.3s;
	z-index: 10;
}

.slider-arrow:hover {
	background: rgba(247, 168, 45, 1);
}

.slider-arrow-left {
	left: 20px;
}

.slider-arrow-right {
	right: 20px;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

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

.slider-dot.active {
	background: #f7a82d;
}

.slider-dot:hover {
	background: rgba(247, 168, 45, 0.8);
}

/* Популярные услуги */
.popular-services-section {
	padding: 60px 0;
	background: #f8f9fa;
}

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

.popular-services-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.popular-services-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

/* Десктопная версия - 3 карточки в ряд с корректным отображением картинок */
.popular-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

@media (max-width: 992px) {
	.popular-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	/* МОБИЛЬНАЯ ВЕРСИЯ - ГОРИЗОНТАЛЬНЫЙ СКРОЛЛ В ОДИН РЯД */
	.popular-services-grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 15px;
		padding: 10px 0 20px 0;
		margin: 0 -15px;
		padding-left: 15px;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.popular-services-grid::-webkit-scrollbar {
		display: none;
	}

	.popular-service-card {
		flex: 0 0 auto;
		width: 280px;
		scroll-snap-align: start;
		margin-right: 0;
	}
}

.popular-service-card {
	background: white;
	border-radius: 12px;
	padding: 0 0 25px 0;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid transparent;
	overflow: hidden;
	height: 100%;
}

.popular-service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
	border-color: #f7a82d;
}

.popular-service-image {
	width: 100%;
	height: 180px; /* Увеличена высота для десктопной версии */
	overflow: hidden;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fa; /* Добавлен фон для картинок с прозрачностью */
}

/* ИСПРАВЛЕНИЕ: Для десктопной версии показываем полные картинки */
@media (min-width: 769px) {
	.popular-service-image {
		height: 200px; /* Еще больше увеличиваем высоту для десктопа */
		padding: 15px; /* Добавляем отступы вокруг картинки */
	}

	.popular-service-image img {
		width: auto;
		height: auto;
		max-width: 100%;
		max-height: 100%;
		object-fit: contain; /* Меняем на contain вместо cover */
		transition: transform 0.3s ease;
	}
}

/* Для мобильной версии оставляем cover для заполнения области */
@media (max-width: 768px) {
	.popular-service-image {
		height: 150px;
		padding: 0;
	}

	.popular-service-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s ease;
	}
}

.popular-service-card:hover .popular-service-image img {
	transform: scale(1.05);
}

.popular-service-card h3 {
	font-size: 18px;
	color: #4d4d4d;
	margin-bottom: 15px;
	font-weight: 600;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
}

.popular-service-price {
	font-size: 22px;
	color: #f7a82d;
	font-weight: bold;
	margin-bottom: 15px;
}

.popular-service-description {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 20px;
	min-height: 60px;
	padding: 0 15px;
}

.popular-service-btn {
	width: calc(100% - 30px);
	padding: 12px;
	background: #f7a82d;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin: 0 15px;
}

.popular-service-btn:hover {
	background: #e5971e;
}

/* Убедимся, что карточки одинаковой высоты на десктопе */
@media (min-width: 769px) {
	.popular-service-card {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.popular-service-content {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.popular-service-description {
		flex: 1;
	}
}

/* Новый баннер со скидкой 10% */
.discount-banner-section {
	padding: 60px 0;
	background: linear-gradient(135deg, #4d4d4d 0%, #333 100%);
	margin: 40px 0;
}

.discount-banner-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.discount-banner-content {
	color: white;
}

.discount-banner-title {
	font-size: 36px;
	margin-bottom: 20px;
	color: #f7a82d;
}

.discount-banner-subtitle {
	font-size: 18px;
	margin-bottom: 30px;
	line-height: 1.6;
	color: #ffff;
}

.discount-banner-form {
	margin-top: 30px;
}

.discount-form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.discount-form-row input {
	flex: 1;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	transition: all 0.3s;
}

.discount-form-row input:focus {
	outline: none;
	border-color: #f7a82d;
	background: white;
}

.discount-banner-btn {
	width: 100%;
	padding: 15px;
	background: #f7a82d;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.discount-banner-btn:hover {
	background: #e5971e;
}

.discount-banner-form .privacy-notice {
	margin-top: 15px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.discount-banner-form .privacy-notice a {
	color: #f7a82d;
	text-decoration: none;
}

.discount-banner-form .privacy-notice a:hover {
	text-decoration: underline;
}

.discount-banner-image {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.discount-banner-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.discount-banner-image:hover img {
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.discount-banner-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.discount-banner-title {
		font-size: 28px;
	}

	.discount-banner-subtitle {
		font-size: 16px;
	}

	.discount-form-row {
		flex-direction: column;
	}
}

/* Таблицы цен */
.price-tables-section {
	padding: 60px 0;
	background: white;
}

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

.price-tables-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 15px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.price-tables-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

.price-tables-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 40px;
	font-size: 18px;
}

.price-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.price-tab {
	background: #f8f9fa;
	border: 2px solid #ddd;
	border-radius: 8px;
	padding: 15px 25px;
	font-size: 16px;
	font-weight: 600;
	color: #4d4d4d;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 10px;
}

.price-tab:hover {
	background: #e9ecef;
	border-color: #f7a82d;
}

.price-tab.active {
	background: #f7a82d;
	color: white;
	border-color: #f7a82d;
}

.price-tab i {
	font-size: 20px;
}

.price-table-content {
	display: none;
}

.price-table-content.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

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

.price-table-wrapper {
	overflow-x: auto;
	margin-bottom: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 8px;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	min-width: 800px;
}

.price-table thead {
	background: #f7a82d;
}

.price-table th {
	color: white;
	padding: 15px;
	text-align: center;
	font-weight: 600;
	font-size: 16px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-table tbody tr {
	border-bottom: 1px solid #eee;
	transition: background 0.3s;
}

.price-table tbody tr:hover {
	background: #f9f9f9;
}

.price-table td {
	padding: 15px;
	color: #444;
	text-align: center;
	border: 1px solid #eee;
}

.price-table td:first-child {
	font-weight: 600;
	color: #4d4d4d;
	text-align: left;
}

.price-table .guarantee-row {
	background: #f8f9fa;
	font-weight: 600;
}

.price-table .guarantee-row td {
	color: #4d4d4d;
}

.price-note {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #f7a82d;
	margin-top: 20px;
}

.price-note p {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #666;
	margin: 0;
}

.price-note i {
	color: #f7a82d;
	font-size: 20px;
}

.price-note a {
	color: #f7a82d;
	text-decoration: none;
}

.price-note a:hover {
	text-decoration: underline;
}

/* Блок "Наши клиенты" */
.clients-section {
	padding: 60px 0;
	background: #f8f9fa;
	margin-bottom: 40px;
}

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

.clients-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.clients-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

.clients-gallery {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
	padding: 20px 0;
}

.client-logo {
	flex: 0 0 auto;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 35px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #eaeaea;
}

.client-logo:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	border-color: #f7a82d;
}

@media (min-width: 769px) {
	.client-logo img {
		max-height: 100%;
		max-width: 180px;
		width: auto;
		height: auto;
		object-fit: contain;
		filter: grayscale(100%);
		opacity: 0.8;
		transition: all 0.3s ease;
	}

	.client-logo:hover img {
		filter: grayscale(0%);
		opacity: 1;
	}
}

/* Баннер обратной связи */
.callback-banner-section {
	position: relative;
	padding: 80px 0;
	background: url("img/orig.jpg") no-repeat center center;
	background-size: cover;
	margin: 60px 0;
}

.callback-banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.callback-banner-container {
	position: relative;
	z-index: 1;
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	color: white;
}

.callback-banner-title {
	font-size: 36px;
	margin-bottom: 15px;
}

.callback-banner-subtitle {
	font-size: 18px;
	margin-bottom: 30px;
}

.callback-banner-form {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.callback-form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.callback-form-row input,
.callback-form-row textarea {
	flex: 1;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	transition: all 0.3s;
}

.callback-form-row input:focus,
.callback-form-row textarea:focus {
	outline: none;
	border-color: #f7a82d;
	background: white;
}

.callback-form-row textarea {
	min-height: 100px;
	resize: vertical;
}

.callback-banner-btn {
	width: 100%;
	padding: 15px;
	background: #f7a82d;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.callback-banner-btn:hover {
	background: #e5971e;
}

.callback-banner-form .privacy-notice {
	margin-top: 15px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.8);
}

.callback-banner-form .privacy-notice a {
	color: #f7a82d;
	text-decoration: none;
}

.callback-banner-form .privacy-notice a:hover {
	text-decoration: underline;
}

/* Блок "О нас" */
.about-section {
	padding: 60px 0;
	background: white;
	margin-bottom: 40px;
}

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

.about-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.about-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: start;
}

.about-text {
	font-size: 18px;
	line-height: 1.8;
	color: #444;
}

.about-text p {
	margin-bottom: 20px;
}

.about-text strong {
	color: #4d4d4d;
	font-weight: 700;
}

.about-features {
	list-style: none;
	padding: 0;
	margin: 25px 0;
}

.about-features li {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
	font-size: 16px;
	color: #555;
}

.about-features li i {
	color: #f7a82d;
	position: absolute;
	left: 0;
	top: 2px;
}

/* Слайдер в блоке "О нас" */
.about-slider {
	height: 100%;
	position: relative;
}

.about-slider-container {
	position: relative;
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-slider-wrapper {
	display: flex;
	transition: transform 0.5s ease;
	height: 100%;
	width: 100%;
}

.about-slide {
	min-width: 100%;
	height: 100%;
	flex-shrink: 0;
	position: relative;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.about-slide.active {
	opacity: 1;
}

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

.about-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(247, 168, 45, 0.8);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background 0.3s;
	z-index: 10;
}

.about-slider-arrow:hover {
	background: rgba(247, 168, 45, 1);
}

.about-slider-prev {
	left: 15px;
}

.about-slider-next {
	right: 15px;
}

.about-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

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

.about-slider-dot.active {
	background: #f7a82d;
}

.about-slider-dot:hover {
	background: rgba(247, 168, 45, 0.8);
}

/* Основной контент */
.main-content {
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 20px;
}

/* Стили калькулятора */
.dez-calc-container {
	font-family: "Roboto", "Arial", sans-serif;
	max-width: 900px;
	margin: 0 auto;
	padding: 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dez-calc-header {
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}

.dez-calc-header h2 {
	color: #2c3e50;
	margin: 0 0 10px 0;
	font-size: 26px;
	font-weight: 700;
}

.dez-calc-header p {
	color: #7f8c8d;
	margin: 0;
	font-size: 16px;
}

.dez-calc-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.dez-calc-form {
	flex: 1;
	min-width: 300px;
}

.dez-calc-result {
	flex: 1;
	min-width: 300px;
	display: flex;
	flex-direction: column;
}

.dez-calc-row {
	margin-bottom: 20px;
}

.dez-calc-row label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 15px;
}

.dez-calc-select,
.dez-calc-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.3s;
	box-sizing: border-box;
}

.dez-calc-select:focus,
.dez-calc-input:focus {
	border-color: #3498db;
	outline: none;
}

.dez-calc-hint {
	font-size: 13px;
	color: #7f8c8d;
	margin-top: 5px;
}

.dez-calc-checkboxes {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 6px;
}

.dez-calc-checkbox {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.dez-calc-checkbox input[type="checkbox"] {
	margin-right: 10px;
}

.dez-calc-checkbox label {
	margin: 0;
	font-weight: normal;
	cursor: pointer;
	flex: 1;
}

.dez-calc-quantity {
	width: 80px;
	margin-left: 10px;
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.dez-calc-button {
	width: 100%;
	padding: 14px;
	background: #2ecc71;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	margin-top: 10px;
}

.dez-calc-button:hover {
	background: #27ae60;
}

.dez-calc-price {
	text-align: center;
	padding: 25px 15px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 20px;
}

.dez-calc-price-label {
	font-size: 16px;
	color: #7f8c8d;
	margin-bottom: 10px;
}

.dez-calc-price-value {
	font-size: 36px;
	font-weight: 700;
	color: #2c3e50;
}

.dez-calc-price-value span:first-child {
	color: #3498db;
	font-size: 28px;
}

.dez-calc-request {
	margin-bottom: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.dez-calc-contact {
	display: none;
	margin-top: 15px;
}

.dez-calc-submit {
	background: #3498db;
}

.dez-calc-submit:hover {
	background: #2980b9;
}

.dez-calc-info {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.dez-calc-info p {
	margin: 0 0 10px 0;
}

.dez-calc-info strong {
	color: #2c3e50;
}

/* Блок "Сертификаты" */
.certificates-section {
	padding: 60px 0;
	background: #f8f9fa;
	margin-bottom: 40px;
}

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

.certificates-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 10px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.certificates-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

.certificates-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 40px;
	font-size: 18px;
}

.certificates-slider {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 50px;
}

.certificates-slider-wrapper {
	display: flex;
	transition: transform 0.5s ease;
	gap: 20px;
	padding: 10px 0;
}

.certificates-slide {
	min-width: calc(33.333% - 14px);
	flex: 0 0 calc(33.333% - 14px);
	transition: all 0.3s ease;
	opacity: 0.5;
	transform: scale(0.9);
}

.certificates-slide.active {
	opacity: 1;
	transform: scale(1);
}

.certificate-item {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.certificates-slide.active .certificate-item {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.certificate-image {
	position: relative;
	height: 300px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	background: white;
}

.certificate-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: transform 0.5s ease;
	filter: brightness(1);
}

.certificate-item:hover .certificate-image img {
	transform: scale(1.05);
}

.certificate-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(77, 77, 77, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
	opacity: 1;
}

.certificate-view-btn {
	background: #f7a82d;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: background 0.3s;
}

.certificate-view-btn:hover {
	background: #e5971e;
}

.certificate-name {
	padding: 20px;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
	color: #4d4d4d;
	margin: 0;
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	border-top: 1px solid #eee;
}

.certificates-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #f7a82d;
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: all 0.3s;
	z-index: 10;
}

.certificates-arrow:hover {
	background: #e5971e;
	transform: translateY(-50%) scale(1.1);
}

.certificates-arrow-left {
	left: 0;
}

.certificates-arrow-right {
	right: 0;
}

.certificates-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.certificates-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: background 0.3s;
}

.certificates-dot.active {
	background: #f7a82d;
}

.certificates-dot:hover {
	background: #f7a82d;
}

/* Блок контактов */
.contacts-section {
	padding: 60px 0;
	background: white;
}

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

.contacts-title {
	text-align: center;
	font-size: 32px;
	color: #4d4d4d;
	margin-bottom: 40px;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.contacts-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: #f7a82d;
}

.contacts-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contacts-info h3 {
	color: #4d4d4d;
	margin-bottom: 25px;
	font-size: 24px;
}

.contacts-phones {
	margin-bottom: 25px;
}

.contacts-phones h4 {
	color: #4d4d4d;
	margin-bottom: 15px;
	font-size: 18px;
}

.contact-phone {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-phone strong {
	min-width: 120px;
	color: #4d4d4d;
}

.contact-phone a {
	color: #f7a82d;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

.contact-phone a:hover {
	color: #e5971e;
	text-decoration: underline;
}

.contact-email {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-email strong {
	min-width: 120px;
	color: #4d4d4d;
}

.contact-email a {
	color: #f7a82d;
	text-decoration: none;
	font-size: 16px;
	transition: color 0.3s;
}

.contact-email a:hover {
	color: #e5971e;
	text-decoration: underline;
}

.contact-address {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.contact-address strong {
	min-width: 120px;
	color: #4d4d4d;
}

.contact-address p {
	color: #444;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

.contacts-map {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container {
	width: 100%;
	height: 400px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Подвал */
.main-footer {
	background: #4d4d4d;
	color: white;
	padding: 40px 0 20px;
	margin-top: 60px;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.footer-column h3 {
	margin-bottom: 20px;
	color: #f7a82d;
}

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

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #f7a82d;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 15px;
	line-height: 1.5;
}

.footer-contact-item i {
	color: #f7a82d;
	width: 20px;
	text-align: center;
	padding-top: 2px;
}

.footer-contact-link {
	color: white;
	text-decoration: none;
	transition: color 0.3s;
	flex: 1;
}

.footer-contact-link:hover {
	color: #f7a82d;
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.footer-bottom p {
	margin: 5px 0;
}

.privacy-link {
	color: #f7a82d !important;
	text-decoration: none;
	transition: color 0.3s;
}

.privacy-link:hover {
	color: #e5971e !important;
	text-decoration: underline;
}

/* Попап */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2000;
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 40px;
	border-radius: 10px;
	min-width: 400px;
	max-width: 90%;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.form-group textarea {
	min-height: 100px;
	resize: vertical;
}

.submit-btn {
	background: #f7a82d;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	width: 100%;
	transition: background 0.3s;
}

.submit-btn:hover {
	background: #e5971e;
}

.privacy-notice {
	font-size: 12px;
	color: #666;
	margin-top: 15px;
	text-align: center;
}

.privacy-notice a {
	color: #f7a82d;
	text-decoration: none;
}

.privacy-notice a:hover {
	text-decoration: underline;
}

/* Уведомления */
.notification {
	display: none;
	position: fixed;
	top: 20px;
	right: 20px;
	padding: 15px 25px;
	border-radius: 5px;
	z-index: 3000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	animation: slideIn 0.3s ease;
	max-width: 400px;
}

.notification.success {
	background: #4caf50;
	color: white;
}

.notification.error {
	background: #f44336;
	color: white;
}

@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideOut {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 0;
	}
}

/* Анимация загрузки */
.loading-spinner {
	display: none;
	width: 40px;
	height: 40px;
	border: 4px solid #f3f3f3;
	border-top: 4px solid #f7a82d;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Мобильное меню гамбургер */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1002;
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 3px;
	background: #4d4d4d;
	position: absolute;
	left: 0;
	transition: all 0.3s;
}

.hamburger-line:nth-child(1) {
	top: 0;
}

.hamburger-line:nth-child(2) {
	top: 10px;
}

.hamburger-line:nth-child(3) {
	top: 20px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg);
	top: 10px;
}

/* Мобильное меню */
.mobile-menu {
	display: block;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 350px;
	height: 100vh;
	background: white;
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
	z-index: 2000;
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	background: #4d4d4d;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
	height: 40px;
	width: auto;
}

.mobile-menu-close {
	background: none;
	border: none;
	color: white;
	font-size: 24px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: background-color 0.3s;
}

.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu-item {
	border-bottom: 1px solid #eee;
}

.mobile-menu-item:last-child {
	border-bottom: none;
}

.mobile-menu-link,
.mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 18px 20px;
	color: #4d4d4d;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s;
}

.mobile-dropdown-toggle {
	position: relative;
}

.mobile-menu-link:hover,
.mobile-dropdown-toggle:hover {
	background: #f8f9fa;
	color: #f7a82d;
}

.mobile-menu-arrow {
	font-size: 14px;
	transition: transform 0.3s;
}

.mobile-menu-item.active .mobile-menu-arrow {
	transform: rotate(180deg);
}

.mobile-submenu {
	max-height: 0;
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	background: #f8f9fa;
	transition: all 0.4s ease;
	padding-left: 20px;
}

.mobile-menu-item.active .mobile-submenu {
	max-height: 500px;
	opacity: 1;
	visibility: visible;
}

.mobile-submenu-item {
	display: block;
	padding: 15px 20px;
	color: #666;
	text-decoration: none;
	font-size: 15px;
	border-left: 3px solid transparent;
	transition: all 0.3s;
}

.mobile-submenu-item:hover {
	color: #f7a82d;
	border-left-color: #f7a82d;
	background: rgba(247, 168, 45, 0.05);
}

.mobile-menu-footer {
	padding: 20px;
	background: #f8f9fa;
	border-top: 1px solid #eee;
	margin-top: auto;
}

.mobile-menu-phone {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px;
	background: white;
	border: 2px solid #f7a82d;
	border-radius: 8px;
	color: #f7a82d;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 15px;
	transition: all 0.3s;
}

.mobile-menu-phone:hover {
	background: #f7a82d;
	color: white;
}

.mobile-menu-callback {
	width: 100%;
	padding: 15px;
	background: #f7a82d;
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background 0.3s;
}

.mobile-menu-callback:hover {
	background: #e5971e;
}

/* Мобильные элементы шапки */
.mobile-header-elements {
	display: none;
}

/* Плавающая кнопка для мобильной версии */
.floating-callback-btn {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #07f52f;
	color: white;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	z-index: 999;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.floating-callback-btn:hover {
	background: #07f52f;
	transform: scale(1.1);
}

.floating-callback-btn i {
	font-size: 24px;
}

/* Оверлей для мобильного меню */
.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1999;
}

.mobile-menu.active ~ .mobile-menu-overlay {
	display: block;
}

/* Адаптивность баннера обратной связи */
@media (max-width: 768px) {
	.callback-banner-section {
		padding: 50px 0;
		margin: 40px 0;
	}

	.callback-banner-title {
		font-size: 28px;
	}

	.callback-banner-subtitle {
		font-size: 16px;
	}

	.callback-form-row {
		flex-direction: column;
		gap: 10px;
	}

	.callback-banner-form {
		padding: 20px;
	}
}

/* Адаптивность блока сертификатов */
@media (max-width: 992px) {
	.certificates-slide {
		min-width: calc(50% - 10px);
		flex: 0 0 calc(50% - 10px);
	}

	.certificates-slider {
		padding: 0 40px;
	}

	.certificate-image {
		height: 250px;
	}
}

@media (max-width: 768px) {
	/* Уменьшаем логотип в два раза */
	.logo img {
		height: 40px !important;
	}

	/* Выравниваем логотип по левому краю */
	.logo {
		margin-right: auto;
	}

	/* Показываем гамбургер справа */
	.mobile-menu-toggle {
		display: block;
		order: 2;
		margin-left: auto;
	}

	/* Скрываем десктопные элементы */
	.desktop-header-content {
		display: none !important;
	}

	/* Перестраиваем шапку */
	.main-header {
		height: auto;
		min-height: 70px;
		padding: 10px 0;
	}

	.header-container {
		flex-wrap: wrap;
		height: auto;
		padding: 0 15px;
		gap: 10px;
	}

	/* Показываем мобильные элементы */
	.mobile-header-elements {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		order: 3;
		margin-top: 10px;
		gap: 10px;
	}

	.mobile-phone {
		width: 100%;
		text-align: center;
	}

	.mobile-phone a {
		display: inline-block;
		padding: 8px 15px;
		background: #f7a82d;
		color: white !important;
		border-radius: 5px;
		font-weight: bold;
		text-decoration: none;
		font-size: 14px;
		text-align: center;
	}

	.mobile-city-selector {
		width: 100%;
		position: relative;
	}

	.mobile-city-btn {
		width: 100%;
		background: #4d4d4d;
		color: white;
		border: none;
		padding: 8px 15px;
		border-radius: 5px;
		font-size: 14px;
		cursor: pointer;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
	}

	.mobile-city-dropdown {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		border-radius: 5px;
		z-index: 1001;
		margin-top: 5px;
	}

	.mobile-city-dropdown.show {
		display: block;
	}

	.mobile-city-option {
		display: block;
		padding: 10px 15px;
		color: #4d4d4d;
		text-decoration: none;
		border-bottom: 1px solid #eee;
		font-size: 14px;
	}

	.mobile-city-option:hover {
		background: #f8f9fa;
		color: #f7a82d;
	}

	@media (max-width: 768px) {
		.banner-section {
			height: 500px;
			margin-top: 80px !important; /* Увеличьте отступ */
		}
	}

	.banner-content {
		padding: 0 15px;
		align-items: flex-start;
		justify-content: center;
	}

	.banner-content h1 {
		font-size: 24px;
		margin-bottom: 20px;
		max-width: 100%;
	}

	.banner-features {
		margin-bottom: 25px;
	}

	.banner-feature {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.banner-callback-btn {
		padding: 12px 25px;
		font-size: 16px;
	}

	/* Адаптация слайдера */
	.slider-section {
		padding: 30px 15px;
	}

	.slider-container {
		max-width: 100%;
		height: auto;
		min-height: 200px;
		border-radius: 8px;
	}

	.slider-slide img {
		object-fit: contain;
		background: #f8f9fa;
		width: 100%;
		height: auto;
	}

	.slider-arrow {
		width: 35px;
		height: 35px;
		font-size: 14px;
	}

	.slider-arrow-left {
		left: 10px;
	}

	.slider-arrow-right {
		right: 10px;
	}

	/* Адаптация популярных услуг */
	.popular-services-section {
		padding: 40px 0;
	}

	.popular-services-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	/* Адаптация таблиц цен */
	.price-tables-section {
		padding: 40px 0;
	}

	.price-tables-title {
		font-size: 24px;
	}

	.price-tables-subtitle {
		font-size: 16px;
	}

	.price-tabs {
		flex-direction: column;
		align-items: center;
	}

	.price-tab {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	/* Адаптация блока "Наши клиенты" */
	.clients-section {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	.clients-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.clients-gallery {
		gap: 15px;
		padding: 15px 0;
	}

	.client-logo {
		height: 80px;
		padding: 15px 20px;
		flex: 0 0 calc(50% - 15px);
		max-width: calc(50% - 15px);
		margin-bottom: 15px;
	}

	/* Мобильная версия: логотипы всегда цветные */
	.client-logo img {
		max-height: 100%;
		max-width: 120px;
		width: auto;
		height: auto;
		object-fit: contain;
		filter: grayscale(0%) !important;
		opacity: 1 !important;
		transition: all 0.3s ease;
	}

	.client-logo:hover img {
		filter: grayscale(0%) !important;
		opacity: 1 !important;
	}

	/* Адаптация блока "О нас" */
	.about-section {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	.about-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.about-text {
		font-size: 16px;
		line-height: 1.6;
	}

	.about-features li {
		font-size: 15px;
	}

	/* МОБИЛЬНАЯ ВЕРСИЯ: СЛАЙДЕР НА ВЕСЬ ЭКРАН ПОД ТЕКСТОМ */
	.about-content {
		grid-template-columns: 1fr !important;
		gap: 30px;
	}

	/* ИСПРАВЛЕННЫЙ СЛАЙДЕР ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ */
	.about-slider-container {
		height: 300px;
		width: 100%;
		border-radius: 8px;
		position: relative;
		overflow: hidden;
	}

	.about-slider-wrapper {
		display: flex;
		transition: transform 0.5s ease;
		height: 100%;
		width: 100%;
	}

	.about-slide {
		min-width: 100%;
		height: 100%;
		flex-shrink: 0;
		position: relative;
		opacity: 1 !important; /* Все слайды видимы */
		display: block !important; /* Все слайды отображаются */
		visibility: visible !important; /* Все слайды видимы */
	}

	.about-slide.active {
		opacity: 1;
	}

	.about-slide img {
		width: 100%;
		height: 100%;
	}

	/* Адаптация шапки для мобильных */
	.header-bottom-row {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.city-btn,
	.callback-btn {
		width: 100%;
		justify-content: center;
	}

	/* Показываем плавающую кнопку на мобильных */
	.floating-callback-btn {
		display: flex;
	}

	/* Адаптация меню */
	.sub-header {
		display: none;
	}

	/* Адаптация калькулятора */
	.dez-calc-body {
		flex-direction: column;
	}

	.dez-calc-header h2 {
		font-size: 22px;
	}

	.dez-calc-price-value {
		font-size: 30px;
	}

	/* Адаптация блока сертификатов */
	.certificates-section {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	.certificates-title {
		font-size: 24px;
		margin-bottom: 5px;
	}

	.certificates-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}

	/* ЦЕНТРИРОВАНИЕ КАРТОЧЕК СЕРТИФИКАТОВ НА МОБИЛЬНОЙ ВЕРСИИ */
	.certificates-slider {
		padding: 0 35px;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.certificates-slider-wrapper {
		justify-content: center;
		align-items: center;
	}

	.certificates-slide {
		min-width: 100%;
		flex: 0 0 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		opacity: 1 !important;
		transform: scale(1) !important;
	}

	.certificate-item {
		max-width: 320px;
		margin: 0 auto;
	}

	.certificate-image {
		height: 250px;
		padding: 20px;
	}

	.certificate-image img {
		filter: brightness(1.1);
	}

	.certificate-name {
		padding: 15px;
		font-size: 16px;
		min-height: 60px;
	}

	.certificates-arrow {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.certificates-dots {
		margin-top: 20px;
	}

	/* Адаптация блока контактов для мобильной версии */
	.contacts-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contacts-title {
		font-size: 24px;
		margin-bottom: 30px;
	}

	.contacts-info h3 {
		font-size: 20px;
	}

	.contact-phone,
	.contact-email,
	.contact-address {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}

	.contact-phone strong,
	.contact-email strong,
	.contact-address strong {
		min-width: auto;
	}

	.map-container {
		height: 300px;
	}

	/* УВЕЛИЧЕНИЕ ВЫСОТЫ БАННЕРА НА МОБИЛЬНОЙ ВЕРСИИ НА 25% */
	.banner-section {
		height: 625px !important;
		margin-top: 70px;
	}

	.banner-content {
		padding: 0 15px;
		align-items: flex-start;
		justify-content: center;
	}

	.banner-content h1 {
		font-size: 28px !important;
		margin-bottom: 30px;
		max-width: 100%;
	}

	.banner-features {
		margin-bottom: 30px;
	}

	.banner-feature {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.banner-callback-btn {
		padding: 15px 35px;
		font-size: 18px;
	}

	/* Адаптация подвала */
	.footer-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}

	/* Адаптация попапа */
	.popup-content {
		min-width: 300px;
		padding: 20px;
		max-width: 95%;
	}

	/* Уведомления */
	.notification {
		left: 20px;
		right: 20px;
		max-width: none;
	}

	/* Адаптация нового баннера со скидкой */
	.discount-banner-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.discount-banner-title {
		font-size: 28px;
	}

	.discount-banner-subtitle {
		font-size: 16px;
	}

	.discount-form-row {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.certificates-slider {
		padding: 0 30px;
	}

	.certificate-image {
		height: 220px;
		padding: 15px;
	}

	.certificate-image img {
		filter: brightness(1.15);
	}

	.certificate-view-btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	/* Дополнительное увеличение для очень маленьких экранов */
	.banner-section {
		height: 562.5px !important;
	}

	.banner-content h1 {
		font-size: 24px !important;
	}

	.map-container {
		height: 250px;
	}
}

@media (max-width: 360px) {
	.certificate-image {
		height: 200px;
	}

	.certificate-image img {
		filter: brightness(1.2);
	}
}

/* Десктопные стили для мобильного меню */
@media (min-width: 769px) {
	.mobile-menu-toggle,
	.mobile-menu,
	.mobile-menu-overlay,
	.mobile-header-elements,
	.floating-callback-btn {
		display: none !important;
	}

	.desktop-header-content {
		display: flex !important;
	}
}

/* Мобильные кнопки в одной линии */
.mobile-header-elements .mobile-actions-row {
	display: flex;
	gap: 8px;
	justify-content: flex-end;
	margin-top: 5px;
	margin-bottom: 5px;
}

.mobile-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	height: 36px;
	padding: 0 12px;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
}

.mobile-phone-btn .mobile-action-btn {
	background-color: #f7a82d;
	color: white;
	border-color: #f7a82d;
}

.mobile-action-btn .phone-number,
.mobile-action-btn .city-name {
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Уменьшение высоты шапки для мобильных */
@media (max-width: 768px) {
	.main-header {
		min-height: 70px;
		padding: 5px 0;
	}

	.logo {
		padding-top: 10px;
	}

	.logo img {
		height: 40px;
	}

	.header-container {
		padding-top: 5px;
		padding-bottom: 5px;
	}
}

/* Адаптация для очень маленьких экранов */
@media (max-width: 480px) {
	.mobile-action-btn .phone-number,
	.mobile-action-btn .city-name {
		max-width: 80px;
	}

	.mobile-action-btn {
		padding: 0 8px;
		font-size: 13px;
	}
}

@media (max-width: 360px) {
	.mobile-action-btn .phone-number,
	.mobile-action-btn .city-name {
		max-width: 60px;
	}
}

@media (max-width: 768px) {
	.mobile-phone-btn.compact .mobile-action-btn {
		padding-left: 8px !important;
		padding-right: 8px !important;
		min-width: 70% !important;
	}

	.mobile-actions-row {
		justify-content: space-between !important;
		width: 100% !important;
	}

	.mobile-phone-btn.compact {
		flex: 1.5 !important;
		max-width: 70% !important;
	}

	.mobile-city-selector {
		flex: 0.5 !important;
		max-width: 30% !important;
	}
}

.mobile-header-elements {
	display: none;
}

/* Дополнительные стили для страниц услуг */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Модальное окно */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background: white;
	padding: 30px;
	border-radius: 10px;
	max-width: 500px;
	width: 90%;
	position: relative;
}

.modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
}

.modal-content h3 {
	margin-bottom: 20px;
	color: #4d4d4d;
}

.modal-content form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.modal-content input,
.modal-content textarea {
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
}

.modal-content button {
	background: #f7a82d;
	color: white;
	border: none;
	padding: 12px;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

/* Футер */
.main-footer {
	background: #333;
	color: white;
	padding: 40px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 30px;
}

.footer-section h4 {
	color: #f7a82d;
	margin-bottom: 15px;
	font-size: 18px;
}

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

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

.footer-section a {
	color: #ccc;
	text-decoration: none;
}

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

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #444;
	color: #999;
	font-size: 14px;
}

/* Адаптивность футера */
@media (max-width: 768px) {
	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-section {
		text-align: center;
	}
}

/* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ КАРТИНОК ПОПУЛЯРНЫХ УСЛУГ */

/* Для десктопной версии - полное отображение картинок */
@media (min-width: 769px) {
	.popular-service-image {
		background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
		border-bottom: 1px solid #eee;
	}

	/* Особые стили для картинки диплома (прозрачный PNG) */
	.popular-service-image img[alt="Обработка предприятий"] {
		max-height: 160px;
		padding: 10px;
	}

	/* Для других картинок также настраиваем отображение */
	.popular-service-image img[alt*="Уничтожение"] {
		max-height: 170px;
	}

	.popular-service-image img[alt*="Удаление"] {
		max-height: 170px;
	}
}

/* Для планшетов */
@media (max-width: 992px) and (min-width: 769px) {
	.popular-service-image {
		height: 180px;
	}

	.popular-service-image img {
		max-height: 150px;
	}
}

/* Для мобильной версии */
@media (max-width: 768px) {
	.popular-service-image {
		background: #ffffff;
	}
}

/* Стили для Telegram кнопки в баннере */
.telegram-banner {
	animation: fadeInUp 0.6s ease 0.3s both;
}

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

.telegram-banner a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

@media (max-width: 768px) {
	.telegram-banner {
		margin-top: 20px !important;
	}

	.telegram-banner a {
		padding: 10px 20px !important;
		font-size: 15px !important;
	}

	.telegram-banner p {
		font-size: 14px !important;
	}
}

/* Добавить в конец style.css */

/* Стили для Telegram кнопки на страницах услуг */
.service-telegram-section {
	text-align: center;
	padding: 40px 0;
	background: #f8f9fa;
}

.service-telegram-section h2 {
	color: #4d4d4d;
	margin-bottom: 10px;
	font-size: 28px;
}

.service-telegram-section p {
	color: #666;
	margin-bottom: 25px;
	font-size: 16px;
}

.service-telegram-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #0088cc 0%, #00aced 100%);
	color: white;
	padding: 15px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
	transition: all 0.3s ease;
	margin-top: 10px;
}

.service-telegram-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
	.service-telegram-section {
		padding: 30px 20px;
	}

	.service-telegram-section h2 {
		font-size: 22px;
	}

	.service-telegram-button {
		padding: 12px 25px;
		font-size: 16px;
	}
}

/* Стили для баннера на полную ширину в услугах */
.service-full-banner {
	width: 100%;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	max-width: 100vw;
}

.service-full-banner .banner-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
/* Дополнительные стили для страниц услуг */

/* Исправление для баннера на странице услуги */
.service-banner {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/* Убедимся, что контент внутри центрирован */
.service-banner .banner-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
	.service-banner {
		margin-top: 70px;
		height: auto;
		min-height: 400px;
	}

	.service-banner .banner-content {
		padding: 0 15px;
	}

	.service-banner h1 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.service-banner .banner-features {
		margin: 15px 0;
	}

	.service-banner .banner-feature {
		font-size: 14px;
	}

	.service-banner .banner-callback-btn,
	.service-banner .telegram-banner-btn {
		padding: 12px 20px;
		font-size: 16px;
		width: 100%;
		margin-bottom: 10px;
	}
}

/* Стили для баннера на странице услуги (копия с главной) */
.service-banner .banner-features {
	margin: 30px 0;
}

.service-banner .banner-feature {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	color: white;
	font-size: 18px;
}

.service-banner .banner-feature i {
	color: #f7a82d;
	font-size: 20px;
}

/* Стили для FAQ аккордеона */
.faq-item {
	transition: all 0.3s ease;
}

.faq-item.active {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
	transition: background-color 0.3s ease;
}

.faq-question:hover {
	background-color: #f0f0f0 !important;
}

.faq-answer {
	animation: fadeIn 0.3s ease;
}

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

/* Стили для мобильной версии FAQ */
@media (max-width: 768px) {
	.faq-question {
		padding: 15px 20px !important;
		font-size: 16px;
	}

	.faq-question h3 {
		font-size: 16px !important;
		margin-right: 10px;
	}

	.faq-answer {
		padding: 0 15px 15px 15px !important;
		font-size: 14px;
	}

	.faq-answer p {
		margin-bottom: 10px;
		line-height: 1.5;
	}
}

/* ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ FAQ */

/* Базовые стили для FAQ */
.faq-answer {
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Убедимся, что FAQ виден при открытии */
.faq-item.active .faq-answer {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	max-height: 500px !important;
	overflow: visible !important;
}

/* Анимация для стрелки */
.faq-question i {
	transition: transform 0.3s ease;
}

/* Ховер-эффект для вопроса */
.faq-question:hover {
	background-color: #f5f5f5 !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
	.faq-item {
		margin-bottom: 10px !important;
	}

	.faq-question {
		padding: 15px !important;
	}

	.faq-answer {
		padding: 0 15px 15px 15px !important;
	}

	.faq-question h3 {
		font-size: 16px !important;
		margin-right: 10px;
	}
}

/* СЛАЙДЕР "О НАС" - ИСПРАВЛЕННАЯ ВЕРСИЯ БЕЗ КОНФЛИКТОВ */

#about .about-slider {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

#about .about-slider-container {
	width: 100%;
	height: 100%;
	position: relative;
}

#about .about-slider-wrapper {
	display: flex;
	height: 100%;
	width: 100%;
	transition: transform 0.5s ease;
}

#about .about-slide {
	min-width: 100%;
	height: 100%;
	flex-shrink: 0;
	position: relative;
	display: none;
}

#about .about-slide.active {
	display: block;
}

#about .about-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Стрелки */
#about .about-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(247, 168, 45, 0.8);
	color: white;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: background 0.3s;
	z-index: 10;
}

#about .about-slider-arrow:hover {
	background: rgba(247, 168, 45, 1);
}

#about .about-slider-prev {
	left: 15px;
}

#about .about-slider-next {
	right: 15px;
}

/* Точки */
#about .about-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

#about .about-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background 0.3s;
}

#about .about-slider-dot.active {
	background: #f7a82d;
}

#about .about-slider-dot:hover {
	background: rgba(247, 168, 45, 0.8);
}

/* Мобильная версия */
@media (max-width: 768px) {
	#about .about-slider {
		height: 300px;
	}

	#about .about-slider-arrow {
		display: none;
	}

	#about .about-slider-dot {
		width: 12px;
		height: 12px;
	}
}

@media (max-width: 480px) {
	#about .about-slider {
		height: 250px;
	}
}

/* Контейнер для iframe с отзывами (как у популярных услуг) */
.iframe-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
