/* 联系我们页面样式 */

/* 英雄区域 */
.contact-hero {
	padding: 160px 0 80px;
	background: linear-gradient(135deg, #0d234d 0%, #1a3a7a 100%);
	color: white;
	text-align: center;
	margin-top: 80px;
}

.contact-hero-content h1 {
	font-size: 3rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.contact-hero-content p {
	font-size: 1.5rem;
	max-width: 800px;
	margin: 0 auto;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.info-card {
	background-color: #f9f9f9;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(254, 91, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.info-icon i {
	font-size: 30px;
	color: #fe5b00;
}

.info-card h3 {
	color: #0d234d;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.info-card p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 10px;
}

.info-card a {
	color: #fe5b00;
	text-decoration: none;
	transition: color 0.3s ease;
}

.info-card a:hover {
	color: #0d234d;
	text-decoration: underline;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
}

.social-links a {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0d234d;
	font-size: 18px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
	background-color: #fe5b00;
	color: #fff;
	text-decoration: none;
}

.qr-code {
	margin-top: 20px;
}

.qr-code img {
	width: 120px;
	height: 120px;
	margin-bottom: 10px;
	border: 1px solid #eee;
	padding: 5px;
	background-color: #fff;
}

.qr-code p {
	font-size: 0.9rem;
	color: #777;
}

/* 服务优势 */
.service-advantages {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	color: #0d234d;
	font-size: 2.5rem;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.section-header h2:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background-color: #fe5b00;
}

.section-header p {
	max-width: 800px;
	margin: 0 auto;
	color: #555;
	font-size: 1.1rem;
}

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

.advantage-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(254, 91, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.advantage-icon i {
	font-size: 30px;
	color: #fe5b00;
}

.advantage-card h3 {
	color: #0d234d;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.advantage-card p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 0;
}

.office-card h3 {
	color: #0d234d;
	font-size: 1.4rem;
	margin-bottom: 15px;
	text-align: center;
}

.office-card p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.office-card p i {
	color: #fe5b00;
	margin-right: 10px;
	width: 20px;
	text-align: center;
}

.office-card a {
	color: #fe5b00;
	text-decoration: none;
	transition: color 0.3s ease;
}

.office-card a:hover {
	color: #0d234d;
	text-decoration: underline;
}

/* 地图和表单 */
.map-form-section {
	padding: 80px 0;
	background-color: #fff;
}

.map-form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.map-container,
.form-container {
	display: flex;
	flex-direction: column;
}

.map-embed {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	height: 100%;
}

.map-embed iframe {
	border: none;
	display: block;
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	margin-bottom: 0;
}

.form-group.full-width {
	grid-column: span 2;
}

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

.form-group .required {
	color: #fe5b00;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	color: #333;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #fe5b00;
	box-shadow: 0 0 0 3px rgba(254, 91, 0, 0.1);
	outline: none;
}

.checkbox-group {
	display: flex;
	align-items: center;
	margin-top: 10px;
}

.checkbox-group input {
	width: auto;
	margin-right: 10px;
}

.checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
}

.checkbox-group a {
	color: #fe5b00;
	text-decoration: none;
}

.checkbox-group a:hover {
	text-decoration: underline;
}

.btn-primary {
	background-color: #fe5b00;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

.btn-primary:hover {
	background-color: #e05100;
	transform: translateY(-3px);
}

.form-success {
	background-color: #f0f9f0;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid #d0e9d0;
}

.success-icon {
	font-size: 60px;
	color: #4caf50;
	margin-bottom: 20px;
}

.form-success h3 {
	color: #0d234d;
	font-size: 1.8rem;
	margin-bottom: 15px;
}

.form-success p {
	color: #555;
	font-size: 1.1rem;
}

/* 客户支持 */
.customer-support {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.support-card {
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease;
}

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

.support-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(254, 91, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.support-icon i {
	font-size: 30px;
	color: #fe5b00;
}

.support-card h3 {
	color: #0d234d;
	font-size: 1.4rem;
	margin-bottom: 15px;
}

.support-card p {
	color: #555;
	line-height: 1.6;
	margin-bottom: 20px;
}

.btn-secondary {
	background-color: transparent;
	color: #fe5b00;
	border: 2px solid #fe5b00;
	padding: 10px 25px;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

.btn-secondary:hover {
	background-color: #fe5b00;
	color: #fff;
	transform: translateY(-3px);
}

/* 常见问题 */
.faq-section {
	padding: 80px 0;
	background-color: #fff;
}

.faq-container {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border: 1px solid #eee;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 20px 30px;
	background-color: #f9f9f9;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question h3 {
	color: #0d234d;
	font-size: 1.2rem;
	margin: 0;
	transition: color 0.3s ease;
}

.faq-question:hover h3 {
	color: #fe5b00;
}

.faq-toggle {
	width: 30px;
	height: 30px;
	background-color: rgba(254, 91, 0, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-toggle i {
	color: #fe5b00;
	font-size: 14px;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
	background-color: #fe5b00;
}

.faq-item.active .faq-toggle i {
	color: #fff;
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
	padding: 20px 30px 30px;
	max-height: 1000px;
}

.faq-answer p {
	color: #555;
	line-height: 1.7;
	margin-bottom: 15px;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
	margin: 15px 0;
	padding-left: 20px;
}

.faq-answer li {
	color: #555;
	line-height: 1.7;
	margin-bottom: 10px;
}

.faq-answer a {
	color: #fe5b00;
	text-decoration: none;
}

.faq-answer a:hover {
	text-decoration: underline;
}

/* 多语言支持 */
.language-support {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.language-support-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.language-text {
	flex: 1;
}

.language-text h2 {
	color: #0d234d;
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.language-text p {
	color: #555;
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.7;
}

.language-list {
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.language-list li {
	display: flex;
	align-items: center;
	color: #555;
	font-size: 1.1rem;
}

.language-list li img {
	width: 30px;
	height: 20px;
	margin-right: 15px;
	border-radius: 3px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.language-image {
	flex: 1;
	text-align: center;
}

.language-image img {
	max-width: 100%;
	height: auto;
}

/* CTA区域 */
.cta-section {
	padding: 80px 0 20px;
	background: #fe5b00;
	color: white;
	text-align: center;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.cta-section .btn-secondary {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.cta-section .btn-secondary:hover {
	background: #fff;
	color: #fe5b00;
	border-color: #fff;
	transform: translateY(-2px);
}

.cta-section .btn-primary {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
	background: #fff;
	color: #fe5b00;
	border-color: #fff;
	transform: translateY(-2px);
}

/* Footer调整 */
.footer {
	padding-top: 40px !important;
}

/* 修复页脚联系信息间距 */
.footer .contact-info li {
	margin-bottom: 10px;
}

.footer .contact-info li:last-child {
	margin-bottom: 0;
}

/* 感谢页面样式 */
.thanks-section {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	min-height: 60vh;
	display: flex;
	align-items: center;
}

.thanks-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.thanks-icon {
	margin-bottom: 30px;
}

.thanks-icon i {
	font-size: 80px;
	color: #28a745;
	animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.thanks-content h1 {
	color: #0d234d;
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.thanks-message {
	font-size: 1.2rem;
	color: #555;
	margin-bottom: 40px;
	line-height: 1.6;
}

/* 提交信息显示区域 */
.submission-details {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	text-align: left;
	border: 1px solid #e9ecef;
}

.submission-details h3 {
	color: #0d234d;
	font-size: 1.4rem;
	margin-bottom: 20px;
	font-weight: 600;
	text-align: center;
}

.detail-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f1f3f4;
}

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

.detail-item strong {
	color: #0d234d;
	font-weight: 600;
	min-width: 100px;
}

.detail-item span {
	color: #555;
	font-weight: 500;
}

.message-details {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	text-align: left;
}

.submitted-info h4 {
	color: #0d234d;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.submitted-info p {
	margin-bottom: 10px;
	color: #555;
}

.submitted-info strong {
	color: #0d234d;
}

.next-steps {
	margin-bottom: 50px;
}

.next-steps h3 {
	color: #0d234d;
	margin-bottom: 25px;
	font-size: 1.5rem;
}

.action-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.contact-info-quick {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-quick h3 {
	color: #0d234d;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.quick-contact {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	font-size: 1.1rem;
}

.contact-item i {
	color: #fe5b00;
	font-size: 1.2rem;
}

/* 其他联系方式区域 */
.contact-alternatives {
	margin-top: 40px;
}

.contact-alternatives h3 {
	color: #0d234d;
	font-size: 1.5rem;
	margin-bottom: 25px;
	font-weight: 600;
	text-align: center;
}

.contact-options {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 20px;
}

.contact-option {
	background: white;
	padding: 25px 20px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
}

.contact-option:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	border-color: #fe5b00;
}

.contact-option i {
	font-size: 2.5rem;
	color: #fe5b00;
	margin-bottom: 15px;
	display: block;
}

.contact-option strong {
	color: #0d234d;
	font-size: 1.1rem;
	font-weight: 600;
	display: block;
	margin-bottom: 8px;
}

.contact-option p {
	color: #555;
	font-size: 1rem;
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.thanks-section {
		padding: 100px 0 60px;
	}

	.thanks-content h1 {
		font-size: 2rem;
	}

	.thanks-message {
		font-size: 1.1rem;
	}

	.action-buttons {
		flex-direction: column;
		align-items: center;
	}

	.quick-contact {
		flex-direction: column;
		gap: 20px;
	}

	.thanks-icon i {
		font-size: 60px;
	}

	.contact-options {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.submission-details {
		padding: 20px;
		margin-bottom: 30px;
	}

	.detail-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		padding: 15px 0;
	}

	.detail-item strong {
		min-width: auto;
	}
}

@media (max-width: 480px) {
	.thanks-content {
		padding: 0 15px;
	}

	.submission-details {
		padding: 15px;
	}

	.contact-option {
		padding: 20px 15px;
	}

	.contact-option i {
		font-size: 2rem;
	}
}

/* 响应式设计 */
@media (max-width: 1200px) {
	.info-grid,
	.offices-grid,
	.support-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.map-form-container {
		grid-template-columns: 1fr;
	}

	.language-support-content {
		flex-direction: column;
	}

	.language-image {
		order: -1;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.contact-hero {
		padding: 80px 0;
		margin-top: 60px;
	}

	.contact-hero-content h1 {
		font-size: 2.5rem;
	}

	.contact-hero-content p {
		font-size: 1.2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.contact-form {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: span 1;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 576px) {
	.info-grid,
	.offices-grid,
	.support-grid {
		grid-template-columns: 1fr;
	}

	.contact-hero-content h1 {
		font-size: 2rem;
	}

	.contact-hero-content p {
		font-size: 1rem;
	}

	.language-list {
		grid-template-columns: 1fr;
	}
}
