/* 弹窗遮罩层 */
.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;
}
/* 面包屑导航 */
.breadcrumb {
	margin-top: 100px;
	padding: 20px 0;
	background: #f0f0f0;
}

.breadcrumb ol {
	list-style: none;
	display: flex;
	gap: 10px;
	font-size: 14px;
}

.breadcrumb a {
	color: #666;
	text-decoration: none;
}

.breadcrumb a:hover {
	color: #e74c3c;
}

.breadcrumb li:last-child {
	color: #333;
	font-weight: 500;
}

/* 页面标题区 */
.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;
}

/* 服务分类导航 */
.service-nav {
	background: white;
	padding: 30px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	/* position: sticky; */
	top: 80px;
	z-index: 100;
}

.service-nav-list {
	display: flex;
	justify-content: center;
	gap: 40px;
	list-style: none;
	flex-wrap: wrap;
}

.service-nav-item {
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.service-nav-item:hover {
	transform: translateY(-5px);
}

.service-nav-item.active .nav-icon {
	background: #e74c3c;
	color: white;
}

.service-nav-item.active .nav-title {
	color: #e74c3c;
}

.nav-icon {
	width: 60px;
	height: 60px;
	background: #f8f9fa;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	font-size: 24px;
	transition: all 0.3s ease;
}

.nav-title {
	font-size: 14px;
	color: #666;
	transition: color 0.3s ease;
}

/* 服务内容区 */
.service-content {
	padding: 60px 0;
}

.service-section {
	margin-bottom: 80px;
}

.service-section:last-child {
	margin-bottom: 0;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-title {
	font-size: 36px;
	color: #2c3e50;
	margin-bottom: 15px;
}

.section-subtitle {
	font-size: 18px;
	color: #666;
}

/* 服务网格 */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.service-item {
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.service-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 36px;
	color: white;
}

.service-name {
	font-size: 20px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.service-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.service-features {
	list-style: none;
	text-align: left;
}

.service-features li {
	padding: 5px 0;
	color: #666;
	font-size: 14px;
	position: relative;
	padding-left: 20px;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
}

/* 服务流程 */
.service-process {
	background: #f8f9fa;
	padding: 60px 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	text-align: center;
	position: relative;
}

.process-step::after {
	content: '→';
	position: absolute;
	right: -20px;
	top: 40px;
	color: #e74c3c;
	font-size: 24px;
}

.process-step:last-child::after {
	display: none;
}

.step-number {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #e74c3c, #c0392b);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: bold;
	margin: 0 auto 20px;
}

.step-title {
	font-size: 18px;
	margin-bottom: 10px;
	color: #2c3e50;
}

.step-desc {
	color: #666;
	font-size: 14px;
}

/* 服务优势 */
.service-advantages {
	background: white;
	padding: 60px 0;
}

.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.advantage-item {
	text-align: center;
	padding: 30px;
	border-radius: 10px;
	background: #f8f9fa;
	transition: all 0.3s ease;
}

.advantage-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	font-size: 48px;
	margin-bottom: 20px;
	color: #e74c3c;
}

.advantage-title {
	font-size: 20px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.advantage-desc {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
}

/* 服务区域 */
.service-areas {
	background: #f8f9fa;
	padding: 60px 0;
}

.areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.area-item {
	background: white;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
}

.area-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.area-name {
	font-size: 16px;
	color: #2c3e50;
	margin-bottom: 8px;
}

.area-count {
	font-size: 14px;
	color: #666;
}

/* 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;
}

.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;
}

/* 关闭按钮 */
.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	transition: color 0.3s ease;
}

.modal-close:hover {
	color: #e74c3c;
}

/* 表单标题 */
.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;
}