/**
 * 联系我们页面样式
 * 设计风格：专业商务风
 */

/* ==================== Hero区域 ==================== */
.ct-hero {
	position: relative;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #0a1628 0%, #1b263b 50%, #0066cc 100%);
	color: #fff;
	overflow: hidden;
}

.ct-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

.ct-hero-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.ct-hero h1 {
	font-size: 56px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 15px;
	letter-spacing: 8px;
}

.ct-subtitle {
	font-size: 20px;
	color: #60a5fa;
	letter-spacing: 6px;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.ct-desc {
	font-size: 18px;
	color: rgba(255,255,255,0.8);
	max-width: 600px;
	margin: 0 auto;
}

/* ==================== 主体区域 ==================== */
.ct-main {
	padding: 80px 0 100px;
	background: #f8fafc;
}

/* ==================== 公司信息标题 ==================== */
.ct-company-info {
	text-align: center;
	margin-bottom: 50px;
}

.ct-company-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	border-radius: 50px;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.ct-company-badge i {
	font-size: 16px;
}

.ct-company-name {
	font-size: 36px;
	font-weight: 800;
	color: #1e293b;
	margin: 0 0 12px;
	letter-spacing: 2px;
}

.ct-company-slogan {
	font-size: 16px;
	color: #64748b;
	margin: 0;
}

/* ==================== 联系卡片 ==================== */
.ct-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 60px;
}

.ct-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.ct-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.ct-card-header {
	padding: 30px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	display: flex;
	align-items: center;
	gap: 20px;
}

.ct-card-primary .ct-card-header {
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.ct-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #fff;
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
	position: relative;
	overflow: hidden;
}

/* 图标发光效果 */
.ct-avatar::before {
	content: '';
	position: absolute;
	inset: -5px;
	background: inherit;
	border-radius: 50%;
	filter: blur(15px);
	opacity: 0.4;
	z-index: -1;
}

/* 内部装饰环 */
.ct-avatar::after {
	content: '';
	position: absolute;
	inset: 5px;
	border: 2px dashed rgba(255,255,255,0.3);
	border-radius: 50%;
	animation: rotate 10s linear infinite;
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.ct-card-primary .ct-avatar {
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.ct-role {
	font-size: 14px;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.ct-card-primary .ct-role {
	color: rgba(255,255,255,0.9);
}

.ct-card-body {
	padding: 30px;
}

.ct-card-body h3 {
	font-size: 24px;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 25px;
}

.ct-card-primary .ct-card-body h3 {
	color: #1e293b;
}

.ct-info-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ct-info-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 20px;
	background: #f8fafc;
	border-radius: 12px;
	transition: all 0.3s;
}

.ct-info-item:hover {
	background: #e2e8f0;
}

.ct-info-item i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.ct-info-item span {
	font-size: 16px;
	font-weight: 600;
	color: #334155;
}

/* ==================== 地址区域 ==================== */
.ct-address-section {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 40px;
}

.ct-address-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.ct-address-header i {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	color: #fff;
	border-radius: 12px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-family: 'FontAwesome' !important;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ct-address-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.ct-address-content {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
}

.ct-address-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.ct-address-main {
	font-size: 18px;
	font-weight: 600;
	color: #1e293b;
	line-height: 1.6;
	padding: 25px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	border-radius: 16px;
	border-left: 4px solid #0066cc;
}

.ct-address-detail {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ct-detail-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: #64748b;
}

.ct-detail-item i {
	width: 32px;
	height: 32px;
	background: #f1f5f9;
	color: #0066cc;
	border-radius: 8px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-family: 'FontAwesome' !important;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
}

.ct-map {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	height: 350px;
	background: 
		linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 41, 59, 0.9) 100%),
		url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%230066cc" opacity="0.1" x="10" y="10" width="20" height="20"/><rect fill="%2360a5fa" opacity="0.1" x="40" y="30" width="30" height="30"/><rect fill="%230066cc" opacity="0.1" x="70" y="60" width="20" height="20"/><circle fill="%2360a5fa" opacity="0.2" cx="50" cy="50" r="3"/></svg>');
	background-size: cover, 200px 200px;
}

.ct-map-link {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	gap: 15px;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.3s ease;
	background: rgba(10, 22, 40, 0.3);
}

.ct-map-link:hover {
	background: rgba(10, 22, 40, 0.5);
}

.ct-map-link i {
	font-size: 56px;
	color: #60a5fa;
	animation: bounce 2s infinite;
	text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

.ct-map-link span {
	font-size: 16px;
	font-weight: 600;
	padding: 14px 28px;
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	border-radius: 50px;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.ct-map-link:hover span {
	transform: scale(1.05);
	box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* ==================== 工作时间 ==================== */
.ct-hours {
	background: #fff;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	margin-bottom: 40px;
}

.ct-hours-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.ct-hours-header i {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
	color: #fff;
	border-radius: 12px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-family: 'FontAwesome' !important;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.ct-hours-header h3 {
	font-size: 28px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.ct-hours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.ct-hours-item {
	padding: 25px;
	background: #f8fafc;
	border-radius: 16px;
	text-align: center;
	transition: all 0.3s;
}

.ct-hours-item:hover {
	background: #e2e8f0;
}

.ct-hours-rest {
	background: #fef2f2;
}

.ct-hours-rest:hover {
	background: #fee2e2;
}

.ct-day {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #334155;
	margin-bottom: 10px;
}

.ct-hours-rest .ct-day {
	color: #ef4444;
}

.ct-time {
	display: block;
	font-size: 18px;
	font-weight: 600;
	color: #0066cc;
}

.ct-hours-rest .ct-time {
	color: #ef4444;
}

/* ==================== 快速操作按钮 ==================== */
.ct-quick-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.ct-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 36px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
}

.ct-btn-phone {
	background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
	color: #fff;
}

.ct-btn-phone:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.ct-btn-email {
	background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
	color: #fff;
}

.ct-btn-email:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.ct-btn-map {
	background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
	color: #fff;
}

.ct-btn-map:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.ct-action-btn i {
	font-size: 20px;
}

/* ==================== 响应式 ==================== */
@media (max-width: 992px) {
	.ct-cards {
		grid-template-columns: 1fr;
	}
	
	.ct-address-content {
		grid-template-columns: 1fr;
	}
	
	.ct-map {
		height: 300px;
	}
	
	.ct-hours-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.ct-hero h1 {
		font-size: 40px;
		letter-spacing: 4px;
	}
	
	.ct-quick-actions {
		flex-direction: column;
	}
	
	.ct-action-btn {
		width: 100%;
		justify-content: center;
	}
}
