/* 页面标题区 */
.page-header {
	background: linear-gradient(135deg, #2c3e50, #34495e);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.page-header h1 {
	font-size: 42px;
	margin-bottom: 15px;
}

.page-header p {
	font-size: 18px;
	opacity: 0.9;
}

/* 联系信息区域 */
.contact-info-section {
	padding: 80px 0;
	background: white;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.contact-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
}

.contact-card:hover .contact-icon {
	background: white;
	color: #e74c3c;
}

.contact-icon {
	width: 80px;
	height: 80px;
	background: #e74c3c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 36px;
	color: white;
	transition: all 0.3s ease;
}

.contact-title {
	font-size: 24px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.contact-card:hover .contact-title {
	color: white;
}

.contact-detail {
	color: #666;
	font-size: 16px;
	line-height: 1.8;
}

.contact-card:hover .contact-detail {
	color: rgba(255, 255, 255, 0.9);
}

/* 快速咨询区域 */
.quick-consult {
	background: #f8f9fa;
	padding: 60px 0;
}

.consult-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.consult-info h2 {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 20px;
}

.consult-info p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.consult-features {
	list-style: none;
}

.consult-features li {
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 15px;
	color: #666;
}

.consult-features .feature-icon {
	width: 30px;
	height: 30px;
	background: #e74c3c;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 16px;
}

/* 预约表单 */
.appointment-form {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
	font-size: 24px;
	color: #2c3e50;
	margin-bottom: 30px;
	text-align: center;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: #2c3e50;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.form-note {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-top: 15px;
}

/* 地图区域 */
.map-section {
	padding: 60px 0;
	background: white;
}

.map-container {
	height: 400px;
	background: #f0f0f0;
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.map-placeholder {
	text-align: center;
	color: #666;
}

.map-placeholder h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.map-info {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-info h4 {
	color: #2c3e50;
	margin-bottom: 10px;
}

.map-info p {
	color: #666;
	margin-bottom: 5px;
	font-size: 14px;
}

/* 交通指南 */
.transport-guide {
	padding: 60px 0;
	background: #f8f9fa;
}

.transport-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.transport-item {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.transport-icon {
	font-size: 36px;
	color: #e74c3c;
	margin-bottom: 15px;
}

.transport-title {
	font-size: 20px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.transport-routes {
	list-style: none;
}

.transport-routes li {
	padding: 8px 0;
	color: #666;
	font-size: 14px;
	border-bottom: 1px solid #eee;
}

.transport-routes li:last-child {
	border-bottom: none;
}

.transport-routes strong {
	color: #2c3e50;
}

/* 在线客服 */
.online-service {
	position: fixed;
	bottom: 100px;
	right: 25px;
	z-index: 1000;
}

.service-btn {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
	transition: all 0.3s ease;
}

.service-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.service-panel {
	position: absolute;
	bottom: 80px;
	right: 0;
	background: white;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	padding: 20px;
	width: 300px;
	display: none;
}

.service-panel.active {
	display: block;
	animation: fadeInUp 0.3s ease;
}

.service-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.service-title {
	font-size: 16px;
	color: #2c3e50;
}

.close-btn {
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: #999;
}

.service-options {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service-option {
	padding: 10px 15px;
	background: #f8f9fa;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-option:hover {
	background: #e74c3c;
	color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.page-header h1 {
		font-size: 32px;
	}

	.consult-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.transport-grid {
		grid-template-columns: 1fr;
	}

	.map-info {
		position: relative;
		bottom: auto;
		left: auto;
		margin-top: 20px;
	}

	.online-service {
		bottom: 20px;
		right: 20px;
	}

	.service-panel {
		width: 280px;
		right: -20px;
	}
}

/* 动画效果 */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.3s ease;
}

/* 成功提示 */
.success-message {
	position: fixed;
	top: 100px;
	right: 20px;
	background: #27ae60;
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
	display: none;
	z-index: 1001;
}

.success-message.show {
	display: block;
	animation: fadeInUp 0.3s ease;
}


/* ========== CTA区域 ========== */
.cta-section {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	padding: 60px 0;
	text-align: center;
}

.cta-title {
	font-size: 36px;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.cta-subtitle {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
	padding: 15px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	transition: all 0.3s ease;
	display: inline-block;
}

.cta-btn-primary {
	background: white;
	color: #e74c3c;
}

.cta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.cta-btn-secondary:hover {
	background: white;
	color: #e74c3c;
}

@media (max-width: 768px) {
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

/* 表单标题 */
.modal-title {
	font-size: 24px;
	color: #2c3e50;
	text-align: center;
	margin-bottom: 25px;
	font-weight: bold;
}

/* 表单样式 */
.quote-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

.form-group input {
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-group input:focus {
	outline: none;
	border-color: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* 提交按钮 */
.submit-btn {
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border: none;
	padding: 15px;
	border-radius: 8px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

/* 表单验证提示 */
.error-tip {
	color: #e74c3c;
	font-size: 12px;
	display: none;
}

/* 成功提示 */
.success-message {
	text-align: center;
	padding: 20px;
	color: #27ae60;
	font-size: 16px;
	display: none;
}
/* 弹窗遮罩层 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

/* 弹窗容器 */
.modal-container {
	background: white;
	width: 90%;
	max-width: 500px;
	border-radius: 15px;
	padding: 30px;
	position: relative;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s ease;
}