/* Основные стили */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f8f9fa;
}

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

/* Шапка */
/* .header {
	background: linear-gradient(135deg, #2c3e50, #3498db);
	color: white;
	padding: 15px 0;
} */

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.logo h1 {
	font-size: 28px;
	margin-bottom: 5px;
	color: white;
}

.logo p {
	font-size: 14px;
	opacity: 0.9;
}

.header-contacts {
	text-align: right;
}

.header-contacts .phone {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 5px;
}

.header-contacts .phone a {
	color: white;
	text-decoration: none;
}

.header-contacts .phone a:hover {
	color: #f1c40f;
}

.header-contacts .address {
	font-size: 14px;
	opacity: 0.9;
}

.header-contacts i {
	margin-right: 8px;
}

/* Основной контент */
main {
	padding: 40px 0;
}

.main-title {
	text-align: center;
	margin-bottom: 40px;
}

.main-title h1 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 18px;
	color: #7f8c8d;
}

/* Форма заказа */
.order-form-section {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.order-form-section h2 {
	color: #2c3e50;
	margin-bottom: 20px;
	font-size: 24px;
}

.order-form-section h2 i {
	color: #3498db;
	margin-right: 10px;
}

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

.form-row .form-group {
	flex: 1;
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2c3e50;
}

.form-group label i {
	margin-right: 8px;
	color: #3498db;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: #3498db;
}

.map-btn {
	margin-top: 10px;
	background: #3498db;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s;
}

.map-btn:hover {
	background: #2980b9;
}

.map-btn i {
	margin-right: 5px;
}

.map-container {
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid #e0e0e0;
}

.map-instructions {
	background: #f8f9fa;
	padding: 10px;
	border-top: 1px solid #e0e0e0;
	font-size: 14px;
	color: #666;
}

.map-instructions i {
	color: #3498db;
	margin-right: 8px;
}

/* Тарифы */
.tariffs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.tariff-card {
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	cursor: pointer;
}

.tariff-card:hover {
	border-color: #3498db;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tariff-card input[type="radio"] {
	display: none;
}

.tariff-card input[type="radio"]:checked + label {
	background: #e8f4fc;
	border-color: #3498db;
}

.tariff-card label {
	display: block;
	padding: 20px;
	cursor: pointer;
}

.tariff-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 15px;
}

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

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

.tariff-info h3 {
	color: #2c3e50;
	margin-bottom: 10px;
	font-size: 20px;
}

.tariff-price {
	font-size: 24px;
	font-weight: bold;
	color: #e74c3c;
	margin-bottom: 10px;
}

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

.tariff-models {
	color: #7f8c8d;
	font-size: 14px;
	margin-bottom: 15px;
	font-style: italic;
}

.tariff-details {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #666;
	border-top: 1px solid #e0e0e0;
	padding-top: 10px;
	margin-top: 10px;
}

/* Услуги */
.services-grid,
.services-grid-main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.service-checkbox {
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 15px;
	transition: all 0.3s;
}

.service-checkbox:hover {
	border-color: #3498db;
}

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

.service-checkbox label {
	cursor: pointer;
	display: flex;
	align-items: center;
	margin: 0;
	font-weight: normal;
}

/* Карточки услуг */
.service-card {
	background: white;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.service-card:hover {
	transform: translateY(-10px);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #3498db, #2c3e50);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.service-icon i {
	font-size: 30px;
	color: white;
}

.service-card h3 {
	color: #2c3e50;
	margin-bottom: 15px;
	font-size: 20px;
}

.service-card p {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* Преимущества */
.advantages-section {
	margin-top: 60px;
}

.advantages-section h2 {
	text-align: center;
	color: #2c3e50;
	margin-bottom: 40px;
	font-size: 28px;
}

.advantages-section h2 i {
	color: #f1c40f;
	margin-right: 10px;
}

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

.advantage-card {
	background: white;
	border-radius: 10px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.advantage-icon i {
	font-size: 24px;
	color: white;
}

.advantage-card h3 {
	color: #2c3e50;
	margin-bottom: 15px;
	font-size: 18px;
}

.advantage-card p {
	color: #666;
	font-size: 14px;
}

/* Кнопка отправки */
.submit-btn {
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
	display: block;
	width: 100%;
	margin-top: 20px;
}

.submit-btn:hover {
	background: linear-gradient(135deg, #27ae60, #219a52);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.submit-btn i {
	margin-right: 10px;
}

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

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

.footer-section h3 {
	color: #f1c40f;
	margin-bottom: 15px;
	font-size: 22px;
}

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

.footer-section p {
	margin-bottom: 10px;
	font-size: 14px;
	opacity: 0.9;
}

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

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

.footer-section i {
	margin-right: 10px;
	color: #3498db;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 14px;
	opacity: 0.7;
}

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

.modal-content {
	background-color: white;
	margin: 15% auto;
	padding: 0;
	border-radius: 10px;
	width: 90%;
	max-width: 500px;
	position: relative;
}

.close {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 28px;
	font-weight: bold;
	color: #aaa;
	cursor: pointer;
}

.close:hover {
	color: #333;
}

.modal-body {
	padding: 40px;
	text-align: center;
}

.success-icon {
	font-size: 80px;
	color: #2ecc71;
	margin-bottom: 20px;
}

.modal-body h2 {
	color: #2c3e50;
	margin-bottom: 20px;
}

.modal-body p {
	color: #666;
	margin-bottom: 30px;
}

.modal-btn {
	background: #3498db;
	color: white;
	border: none;
	padding: 12px 40px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s;
}

.modal-btn:hover {
	background: #2980b9;
}

/* Адаптивность */
@media (max-width: 768px) {
	.header .container {
		flex-direction: column;
		text-align: center;
	}

	.header-contacts {
		text-align: center;
		margin-top: 15px;
	}

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

	.main-title h1 {
		font-size: 28px;
	}

	.order-form-section {
		padding: 20px;
	}

	.tariffs-grid,
	.services-grid,
	.services-grid-main,
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}
