/* ============================================
   Global Custom Styles v2.0.0
   Security Service Company Website
   ============================================ */

/* --- CSS Variables --- */
:root {
	--color-primary: #2563eb;
	--color-primary-light: #3b82f6;
	--color-primary-dark: #1d4ed8;
	--color-accent: #f59e0b;
	--color-accent-light: #fbbf24;
	--color-accent-dark: #d97706;
	--color-danger: #ef4444;
	--color-success: #22c55e;
	--color-text: #1e293b;
	--color-text-light: #64748b;
	--color-text-muted: #94a3b8;
	--color-bg: #ffffff;
	--color-bg-alt: #f8fafc;
	--color-bg-dark: #1e293b;
	--color-border: #e2e8f0;
	--font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
	--shadow-md: 0 8px 24px rgba(0,0,0,0.08);
	--shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global Reset & Base --- */
body {
	font-family: var(--font-family);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

a {
	color: var(--color-primary);
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary);
}

img {
	transition: transform var(--transition);
}

/* --- Section Title Pattern --- */
.section-header {
	text-align: center;
	margin-bottom: 35px;
	padding-bottom: 25px;
	border-bottom: 1px solid #e9ecef;
}

.section-header h2 {
	font-size: 26px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.section-header p {
	font-size: 14px;
	color: var(--color-text-light);
	margin-bottom: 0;
	font-weight: 300;
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
	background: transparent;
	padding: 12px 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-bottom: 1px solid transparent;
	z-index: 1050;
}

#mainNav.navbar-scrolled {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 6px 0;
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

#mainNav .navbar-brand img {
	transition: all var(--transition);
}

#mainNav.navbar-scrolled .navbar-brand img {
	height: 42px;
}

/* Nav Links */
#mainNav .navbar-nav .nav-link {
	position: relative;
	padding: 10px 16px;
	font-weight: 500;
	font-size: 14px;
	color: var(--color-text);
	letter-spacing: 0.3px;
	transition: color var(--transition);
}

#mainNav .navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--color-accent);
	border-radius: 1px;
	transition: width 0.3s ease;
}

#mainNav .navbar-nav .nav-link:hover {
	color: var(--color-accent);
}

#mainNav .navbar-nav .nav-link:hover::after {
	width: 24px;
}

#mainNav .navbar-nav .nav-item.active .nav-link {
	color: var(--color-accent);
}

#mainNav .navbar-nav .nav-item.active .nav-link::after {
	width: 24px;
}

#mainNav .navbar-nav .nav-link i {
	font-size: 13px;
	opacity: 0.7;
}

/* Dropdown */
#mainNav .dropdown-menu {
	border: none;
	box-shadow: var(--shadow-lg);
	margin-top: 0;
	padding: 10px 8px;
	border-radius: var(--radius-md);
	background: rgba(255,255,255,0.98);
	backdrop-filter: blur(12px);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.25s ease;
	width: auto;
	white-space: nowrap;
}

#mainNav .dropdown:hover > .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#mainNav .dropdown-menu .dropdown-item {
	padding: 9px 16px;
	font-size: 13px;
	color: var(--color-text);
	border-radius: var(--radius-sm);
	transition: all 0.2s ease;
}

#mainNav .dropdown-menu .dropdown-item i {
	color: var(--color-text-muted);
	margin-right: 10px;
	font-size: 12px;
	transition: color 0.2s ease;
}

#mainNav .dropdown-menu .dropdown-item:hover {
	background: var(--color-bg-alt);
	color: var(--color-primary);
	padding-left: 20px;
}

#mainNav .dropdown-menu .dropdown-item:hover i {
	color: var(--color-accent);
}

#mainNav .dropdown-menu .dropdown-item.active {
	background: var(--color-primary);
	color: #fff;
}

#mainNav .dropdown-menu .dropdown-item.active i {
	color: rgba(255,255,255,0.7);
}

/* Dropdown toggle arrow */
#mainNav .nav-link.dropdown-toggle::after {
	border: none;
	content: '\f107';
	font-family: 'FontAwesome';
	font-size: 10px;
	vertical-align: middle;
	margin-left: 4px;
	transition: transform 0.3s ease;
	display: inline-block;
}

#mainNav .dropdown:hover .nav-link.dropdown-toggle::after {
	transform: rotate(180deg);
}

/* Mobile Nav */
@media (max-width: 991px) {
	#mainNav {
		background: rgba(255,255,255,0.97);
		backdrop-filter: blur(12px);
		border-bottom: 1px solid var(--color-border);
	}

	#mainNav .navbar-collapse {
		background: #fff;
		padding: 16px;
		border-radius: var(--radius-md);
		margin-top: 12px;
		box-shadow: var(--shadow-lg);
		max-height: 70vh;
		overflow-y: auto;
	}

	#mainNav .navbar-nav .nav-link::after {
		display: none;
	}

	#mainNav .dropdown-menu {
		box-shadow: none;
		background: var(--color-bg-alt);
		border-radius: var(--radius-sm);
		margin: 4px 0;
		padding: 6px;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	#mainNav .dropdown-menu .dropdown-item:hover {
		padding-left: 16px;
	}
}

/* ============================================
   MOBILE SLIDE NAV (<992px)
   ============================================ */
@media (max-width: 991px) {
	#mainNav .navbar-collapse {
		position: fixed;
		top: 0;
		left: 0;
		width: 160px;
		height: auto;
		max-height: 100vh;
		margin: 0;
		padding: 16px 0 8px;
		border-radius: 0 16px 16px 0;
		z-index: 10001;
		transform: translateX(-100%);
		transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
		overflow-y: auto;
		box-shadow: none;
		background: #fff;
	}

	#mainNav .navbar-collapse.show {
		transform: translateX(0);
		box-shadow: 4px 0 24px rgba(0,0,0,0.15);
	}

	/* 遮罩层 - 不覆盖导航面板区域 */
	.nav-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 160px;
		width: calc(100% - 160px);
		height: 100%;
		background: rgba(0,0,0,0.55);
		z-index: 10000;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.nav-overlay.active {
		display: block;
		opacity: 1;
	}

	/* 导航项样式 */
	#mainNav .navbar-nav {
		flex-direction: column;
		width: 100%;
		padding: 0;
	}

	#mainNav .navbar-nav .nav-item {
		border-bottom: 1px solid var(--color-border);
		margin: 0;
	}

	#mainNav .navbar-nav .nav-item:last-child {
		border-bottom: none;
	}

	#mainNav .navbar-nav .nav-link {
		padding: 12px 16px;
		font-size: 15px;
		color: var(--color-text);
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	#mainNav .navbar-nav .nav-link i:first-child {
		margin-right: 10px;
		color: var(--color-primary);
		width: 20px;
		text-align: center;
		flex-shrink: 0;
	}

	/* 下拉箭头 */
	#mainNav .navbar-nav .dropdown-toggle::after {
		display: none;
	}

	/* 添加展开箭头图标 */
	#mainNav .navbar-nav .nav-link .fa-chevron-down {
		font-size: 11px;
		color: var(--color-text-muted);
		transition: transform 0.3s ease;
		margin-left: auto;
	}

	#mainNav .navbar-nav .dropdown.show .nav-link .fa-chevron-down {
		transform: rotate(180deg);
	}

	/* 下拉子菜单 */
	#mainNav .dropdown-menu {
		position: static !important;
		transform: none;
		box-shadow: none;
		background: var(--color-bg-alt);
		border-radius: 0;
		margin: 0;
		padding: 0;
		border: none;
		display: none;
		width: 100%;
		opacity: 1;
		visibility: visible;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	#mainNav .dropdown.show .dropdown-menu {
		display: block;
		max-height: 500px;
	}

	#mainNav .dropdown-menu .dropdown-item {
		padding: 10px 16px;
		font-size: 14px;
		border-radius: 0;
		color: var(--color-text);
		display: flex;
		align-items: center;
	}

	#mainNav .dropdown-menu .dropdown-item i {
		color: var(--color-text-muted);
		width: 20px;
		text-align: center;
		margin-right: 10px;
		font-size: 12px;
		flex-shrink: 0;
	}

	#mainNav .dropdown-menu .dropdown-item:hover,
	#mainNav .dropdown-menu .dropdown-item.active {
		background: var(--color-primary);
		color: #fff;
	}

	#mainNav .dropdown-menu .dropdown-item:hover i,
	#mainNav .dropdown-menu .dropdown-item.active i {
		color: rgba(255,255,255,0.7);
	}

	/* 汉堡按钮样式 */
	#mainNav .navbar-toggler {
		border: 1px solid rgba(0,0,0,0.15);
		padding: 8px 10px;
		z-index: 10000;
		background: #fff;
		border-radius: 4px;
	}

	#mainNav .navbar-toggler-icon {
		width: 22px;
		height: 22px;
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
	}
}

/* ============================================
   PAGE TITLE BAR (inner pages)
   ============================================ */
.page-title-bar {
	padding: 28px 0 20px;
	border-bottom: 1px solid var(--color-border);
}

.page-title-bar-text {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 4px;
	letter-spacing: 1px;
}

.page-title-bar-sub {
	font-size: 13px;
	color: var(--color-text-muted);
	font-weight: 300;
}

@media (max-width: 768px) {
	.page-title-bar {
		padding: 20px 0 16px;
	}

	.page-title-bar-text {
		font-size: 18px;
	}
}

/* ============================================
   HOMEPAGE - Swiper Slideshow
   ============================================ */
.swiper-container {
	height: 600px;
	overflow: hidden;
}

.slideshow {
	height: 100%;
	width: 100%;
	object-fit: cover;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	draggable: false;
}

.swiper-container .container {
	position: relative;
}

.swiper-container .position-absolute {
	text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* 轮播图标题 */
.carousel-caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 60px;
	padding: 0 20px;
	z-index: 2;
	pointer-events: none;
}

.carousel-caption > div {
	text-align: left;
	text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.carousel-caption h1 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 6px;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.carousel-caption h4 {
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	opacity: 0.9;
}

@media (min-width: 576px) {
	.carousel-caption {
		bottom: 80px;
		padding: 0 40px;
	}

	.carousel-caption h1 {
		font-size: 26px;
	}

	.carousel-caption h4 {
		font-size: 15px;
	}
}

.swiper-pagination-bullet {
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	background: var(--color-accent) !important;
	opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	transition: all var(--transition);
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	display: flex !important;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.5) !important;
	background-size: 20px 30px !important;
}

/* 白色箭头 */
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E") !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: var(--color-accent) !important;
	box-shadow: 0 4px 12px rgba(0,0,0,0.5);
	transform: scale(1.1);
}

@media (max-width: 992px) {
	.swiper-container { height: 480px; }
}
@media (max-width: 768px) {
	.swiper-container { height: 360px; }
}
@media (max-width: 576px) {
	.swiper-container { height: 260px; }
}

/* ============================================
   HOMEPAGE - About Section
   ============================================ */
.home-about {
	background: var(--color-bg);
	padding: 80px 0;
	position: relative;
}

.home-about .text-center.fs-26 {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
	position: relative;
	display: inline-block;
}

.home-about .text-center.fs-26::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
	border-radius: 2px;
}

.home-about .text-center.mb-4 {
	margin-top: 18px;
}

/* ============================================
   HOMEPAGE - Service Cards
   ============================================ */
.service-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-top: 30px;
}

.service-card {
	background: var(--color-bg);
	border-radius: var(--radius-md);
	padding: 32px 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: #fff;
	font-size: 24px;
	transition: all 0.4s ease;
	box-shadow: 0 4px 16px rgba(26,58,92,0.2);
}

.service-card:hover .service-icon {
	transform: scale(1.1) rotate(-3deg);
	box-shadow: 0 8px 24px rgba(26,58,92,0.3);
}

.service-title {
	font-size: 17px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.service-card:hover .service-title {
	color: var(--color-primary);
}

.service-description {
	color: var(--color-text-light);
	line-height: 1.8;
	font-size: 13px;
}

.service-description p {
	margin: 0;
}

/* Service Advantages Grid */
.service-advantages-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {
	.service-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.service-advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
	.service-grid { grid-template-columns: 1fr; gap: 16px; }
	.service-advantages-grid { grid-template-columns: 1fr; gap: 16px; }
	.service-card { padding: 24px 20px; }
	.service-icon { width: 56px; height: 56px; font-size: 22px; }
	.home-about { padding: 50px 0; }
}

/* ============================================
   HOMEPAGE - News Section
   ============================================ */
.news-card {
	background: var(--color-bg);
	border-radius: var(--radius-md);
	padding: 24px;
	border: 1px solid var(--color-border);
	transition: all 0.3s ease;
	height: 100%;
}

.news-card:hover {
	box-shadow: var(--shadow-md);
	border-color: transparent;
	transform: translateY(-3px);
}

.news-card h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
	margin-bottom: 10px;
	line-height: 1.5;
}

.news-card h5 a {
	color: var(--color-text);
	text-decoration: none;
	transition: color 0.3s;
}

.news-card h5 a:hover {
	color: var(--color-primary);
}

.news-card .news-date {
	font-size: 12px;
	color: var(--color-text-muted);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.news-card .news-date i {
	color: var(--color-accent);
}

.news-card p {
	font-size: 13px;
	color: var(--color-text-light);
	line-height: 1.8;
}

/* ============================================
   HOMEPAGE - Partner Section
   ============================================ */
.partner-section {
	background: var(--color-bg-alt);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.partner-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

.partner-header {
	margin-bottom: 40px;
	position: relative;
}

.partner-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.partner-subtitle {
	font-size: 15px;
	color: var(--color-text-light);
	margin-bottom: 20px;
	font-weight: 300;
}

.partner-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.divider-line {
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.divider-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 14px;
	box-shadow: 0 4px 12px rgba(26,58,92,0.2);
}

.partner-carousel-wrapper {
	position: relative;
	padding: 0 50px;
}

.partner-carousel {
	overflow: hidden;
}

.partner-track {
	display: flex;
}

.partner-track.auto-scroll {
	animation: partnerScroll 30s linear infinite;
}

.partner-track.auto-scroll.paused {
	animation-play-state: paused !important;
}

@keyframes partnerScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.partner-gradient {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.partner-gradient-left {
	left: 0;
	background: linear-gradient(90deg, var(--color-bg-alt), transparent);
}

.partner-gradient-right {
	right: 0;
	background: linear-gradient(270deg, var(--color-bg-alt), transparent);
}

.partner-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary);
	font-size: 12px;
}

.partner-arrow:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(26,58,92,0.2);
}

.partner-arrow-left { left: 8px; }
.partner-arrow-right { right: 8px; }

.partner-item {
	flex: 0 0 auto;
	width: 170px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
}

.partner-logo {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
	border-radius: var(--radius-sm);
	padding: 10px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
	border: 1px solid var(--color-border);
}

.partner-logo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.partner-logo:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.partner-logo:hover::before {
	transform: scaleX(1);
}

.partner-logo img {
	max-width: 100%;
	max-height: 48px;
	object-fit: contain;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.partner-logo:hover img {
	opacity: 1;
	transform: scale(1.05);
}

.partner-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(26,58,92,0.9), transparent);
	color: #fff;
	font-size: 10px;
	text-align: center;
	padding: 4px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.partner-logo:hover .partner-name {
	transform: translateY(0);
}

@media (max-width: 768px) {
	.partner-section { padding: 50px 0; }
	.partner-title { font-size: 22px; }
	.partner-item { width: 140px; height: 75px; }
	.partner-arrow { width: 30px; height: 30px; }
	.partner-gradient { width: 40px; }
}

@media (max-width: 576px) {
	.partner-arrow { width: 28px; height: 28px; font-size: 10px; }
	.partner-arrow-left { left: 4px; }
	.partner-arrow-right { right: 4px; }
	.partner-carousel-wrapper { padding: 0 34px; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: var(--color-bg-dark);
	color: rgba(255,255,255,0.7);
	padding: 60px 0 0;
	position: relative;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.site-footer h5 {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--color-accent);
	display: inline-block;
}

.site-footer h5 i {
	color: var(--color-accent);
}

.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.site-footer ul li {
	margin-bottom: 10px;
	font-size: 13px;
}

.site-footer ul li i {
	width: 18px;
	text-align: center;
	color: var(--color-text-muted);
	margin-right: 8px;
}

.site-footer a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	transition: color 0.3s;
}

.site-footer a:hover {
	color: var(--color-accent-light);
}

.wechat-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius-md);
	padding: 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.wechat-card:hover {
	background: rgba(255,255,255,0.08);
	transform: translateY(-3px);
}

.wechat-card h6 {
	color: #fff;
	font-weight: 600;
	margin-bottom: 12px;
}

.wechat-card h6 i {
	color: var(--color-success);
}

.qrcode-img {
	width: 110px;
	height: 110px;
	border-radius: var(--radius-sm);
	border: 2px solid rgba(255,255,255,0.1);
	padding: 6px;
	background: #fff;
}

/* Friend Links */
.friend-links {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 16px 0;
	margin-top: 40px;
}

.friend-links a {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	transition: color 0.3s;
}

.friend-links a:hover {
	color: var(--color-accent-light);
}

/* Copyright */
.site-copyright {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 16px 0;
	text-align: center;
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin-top: 0;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
	background: var(--color-primary) !important;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.mobile-bottom-nav a {
	color: rgba(255,255,255,0.85) !important;
	font-size: 12px;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 0 !important;
}

.mobile-bottom-nav a i {
	font-size: 16px;
}

.mobile-bottom-nav a:hover {
	color: var(--color-accent-light) !important;
}

/* ============================================
   MOBILE PHONE MODAL
   ============================================ */
.mobile-phone-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease;
}

.mobile-phone-modal.show {
	visibility: visible;
	opacity: 1;
}

.mobile-phone-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.5);
}

.mobile-phone-content {
	position: relative;
	background: white;
	width: 100%;
	border-radius: 16px 16px 0 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	z-index: 1;
}

.mobile-phone-modal.show .mobile-phone-content {
	transform: translateY(0);
}

.mobile-phone-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #e9ecef;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-text);
}

.mobile-phone-header .close-btn {
	color: #999;
	font-size: 18px;
}

.mobile-phone-body {
	padding: 10px 20px 30px;
}

.mobile-phone-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 16px 0;
	border-bottom: 1px solid #f0f0f0;
	color: var(--color-text);
	text-decoration: none;
}

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

.mobile-phone-item > i:first-child {
	width: 40px;
	height: 40px;
	background: var(--color-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.mobile-phone-item .phone-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.mobile-phone-item .phone-label {
	font-size: 13px;
	color: #999;
}

.mobile-phone-item .phone-number {
	font-size: 18px;
	font-weight: 700;
	color: var(--color-primary);
}

.mobile-phone-item .arrow {
	color: #ccc;
	font-size: 14px;
}

/* ============================================
   ONLINE SIDEBAR
   ============================================ */
.online dl {
	background: var(--color-primary);
	padding: 10px 5px;
	margin-bottom: 1px;
	position: relative;
	transition: background 0.3s;
}

.online dl:hover {
	background: var(--color-primary-light);
}

.online dl dt {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
}

.online dl dt h3 {
	font-size: 15px;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border);
	padding-bottom: 8px;
}

/* Phone list in sidebar */
.consult-phone-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	padding: 10px 14px;
	background: var(--color-bg-alt);
	border-radius: var(--radius-sm);
	transition: all 0.3s ease;
}

.consult-phone-item:hover {
	background: var(--color-bg-alt);
	transform: translateX(3px);
}

.consult-phone-item:last-child {
	margin-bottom: 0;
}

.phone-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--color-text-light);
	min-width: 80px;
}

.phone-label i {
	color: var(--color-primary);
	font-size: 14px;
}

.phone-number {
	font-size: 15px;
	font-weight: 600;
	color: var(--color-primary);
	text-decoration: none;
	margin-left: 8px;
	letter-spacing: 0.5px;
}

.phone-number:hover {
	color: var(--color-accent);
}

/* ============================================
   PAGES (inner content)
   ============================================ */
.pages {
	min-height: 500px;
	/* padding: 40px 0; */
}

.content {
	color: var(--color-text-light);
	line-height: 2;
	font-size: 15px;
}

.content img,
.content iframe {
	max-width: 100% !important;
	width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 11px;
	margin-bottom: 11px;
	border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
	.content img,
	.content iframe {
		max-width: 100% !important;
		width: 100%;
	}
}

/* News detail pages - PC only: 50% width for images */
@media (min-width: 769px) {
	.news-content img,
	.news-content iframe {
		max-width: 50% !important;
		width: 50%;
	}
}

.content p {
	text-indent: 2em;
}

/* ============================================
   PAGINATION
   ============================================ */
.page-num:not(:disabled),
.page-link {
	color: var(--color-primary);
	border-color: var(--color-border);
}

.page-num:hover,
.page-link:hover {
	background: var(--color-bg-alt);
	border-color: var(--color-primary);
	color: var(--color-primary);
}

.page-num-current {
	background: var(--color-primary) !important;
	border-color: var(--color-primary) !important;
	color: #fff !important;
}

/* ============================================
   BREADCRUMB (position.html)
   ============================================ */
.position,
.position a {
	color: var(--color-text-muted);
	font-size: 13px;
}

.position a:hover {
	color: var(--color-primary);
}

/* ============================================
   SECTION SPACING OVERRIDES
   ============================================ */
.bg-light {
	background: var(--color-bg-alt) !important;
}

.bg-white {
	background: var(--color-bg) !important;
}

.py-5 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}

/* ============================================
   UTILITY OVERRIDES
   ============================================ */
.text-info {
	color: var(--color-primary) !important;
}

.text-warning {
	color: var(--color-accent) !important;
}

.text-primary {
	color: var(--color-primary) !important;
}

.text-secondary {
	color: var(--color-text-light) !important;
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
	scroll-behavior: smooth;
}

/* ============================================
   SELECTION COLOR
   ============================================ */
::selection {
	background: var(--color-accent);
	color: #fff;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
	background: #c0c8d0;
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-text-muted);
}

/* ============================================
   ABOUT US PAGE - Vertical Navigation
   ============================================ */
.about-nav-list {
	border: 1px solid #e9ecef;
	border-radius: 8px;
	overflow: hidden;
}

.about-nav-list .nav-item {
	margin-bottom: 0;
}

.about-nav-list .nav-link {
	border-radius: 0;
	padding: 12px 20px;
	color: #495057;
	background-color: #f8f9fa;
	border: none;
	transition: all 0.3s ease;
}

.about-nav-list .nav-link:hover {
	background-color: #e9ecef;
	color: var(--color-primary);
	padding-left: 25px;
}

.about-nav-list .nav-link.active {
	background-color: var(--color-primary);
	color: white;
	padding-left: 25px;
}

@media (max-width: 768px) {
	.about-nav-list {
		border: none;
		border-radius: 0;
	}

	.about-nav-list .nav-item {
		margin-bottom: 5px;
	}

	.about-nav-list .nav-link {
		border-radius: 4px;
	}
}

/* ============================================
   ABOUT US PAGE - Team Gallery
   ============================================ */
.gallery-container {
	padding: 30px 0 50px;
}

.gallery-intro p {
	font-size: 16px;
}

.gallery-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 30px;
}

.gallery-tab {
	padding: 10px 24px;
	border: 2px solid #e9ecef;
	background: white;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
}

.gallery-tab:hover {
	border-color: #28a745;
	color: #28a745;
}

.gallery-tab.active {
	background: linear-gradient(135deg, #28a745, #20c997);
	border-color: #28a745;
	color: white;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.gallery-tab i {
	margin-right: 6px;
}

.gallery-grid {
	columns: 3;
	column-gap: 20px;
}

@media (max-width: 992px) {
	.gallery-grid { columns: 2; }
}

@media (max-width: 576px) {
	.gallery-grid { columns: 1; }
}

.gallery-item {
	break-inside: avoid;
	margin-bottom: 20px;
	opacity: 1;
	transform: translateY(0);
	transition: all 0.4s ease;
}

.gallery-item.hidden {
	display: none;
}

.gallery-card {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.gallery-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.gallery-img-wrap {
	position: relative;
	overflow: hidden;
}

.gallery-img {
	width: 100%;
	display: block;
	transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
	transform: scale(1.08);
}

.gallery-caption {
	padding: 15px;
	background: linear-gradient(135deg, #f8f9fa, #fff);
}

.gallery-caption h5 {
	margin: 0 0 6px;
	font-size: 15px;
	font-weight: 600;
	color: #333;
}

.gallery-caption p {
	margin: 0;
	font-size: 13px;
	color: #888;
}

@media (max-width: 576px) {
	.gallery-tabs {
		gap: 8px;
	}
	.gallery-tab {
		padding: 8px 16px;
		font-size: 13px;
	}
}

/* Gallery Image Preview Overlay */
.img-preview-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0,0,0,0.92);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
}

.img-preview-box {
	position: relative;
	max-width: 95vw;
	max-height: 90vh;
}

.img-preview-box img {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 50px rgba(0,0,0,0.6);
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
}

.img-preview-close {
	position: absolute;
	top: -45px;
	right: 0;
	font-size: 40px;
	color: white;
	cursor: pointer;
	opacity: 0.8;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
}

.img-preview-close:hover {
	opacity: 1;
	background: rgba(255,255,255,0.2);
}

/* ============================================
   ABOUT US PAGE - Development History Timeline
   ============================================ */
.history-section { padding: 40px 0 60px; }
.history-intro p { font-size: 16px; }
.history-timeline { position: relative; max-width: 1000px; margin: 0 auto; padding: 20px 0; }
.timeline-axis { position: absolute; left: 50%; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, var(--color-primary), var(--color-accent)); transform: translateX(-50%); border-radius: 2px; }
.timeline-row { display: flex; align-items: flex-start; margin-bottom: 50px; position: relative; opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s ease forwards; }
.timeline-row.left { flex-direction: row; justify-content: flex-start; padding-right: calc(50% + 30px); }
.timeline-row.right { flex-direction: row-reverse; justify-content: flex-start; padding-left: calc(50% + 30px); }
.timeline-row:nth-child(odd) { animation-delay: 0.1s; }
.timeline-row:nth-child(even) { animation-delay: 0.2s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background: white; border: 4px solid var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; transition: all 0.3s ease; box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2); }
.timeline-dot i { color: var(--color-primary); font-size: 14px; }
.timeline-row:hover .timeline-dot { background: var(--color-primary); transform: translateX(-50%) scale(1.15); box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.3); }
.timeline-row:hover .timeline-dot i { color: white; }
.timeline-dot.end { background: linear-gradient(135deg, var(--color-primary), var(--color-accent)); border-color: var(--color-accent); }
.timeline-dot.end i { color: white; font-size: 18px; }
.timeline-content { flex: 1; max-width: 420px; }
.content-inner { background: white; border-radius: 16px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: all 0.3s ease; position: relative; }
.content-inner::before { content: ''; position: absolute; top: 20px; width: 0; height: 0; border: 10px solid transparent; }
.timeline-row.left .content-inner::before { right: -20px; border-left-color: white; }
.timeline-row.right .content-inner::before { left: -20px; border-right-color: white; }
.content-inner:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(37, 99, 235, 0.15); }
.year-tag { display: inline-block; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: white; padding: 4px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.content-inner h3 { margin: 0 0 12px; font-size: 18px; font-weight: 600; color: #2c3e50; display: flex; align-items: center; gap: 8px; }
.content-inner h3 i { color: var(--color-primary); font-size: 16px; }
.content-inner p { margin: 0; color: #666; line-height: 1.7; font-size: 14px; }
.content-inner p + p { margin-top: 10px; }

@media (max-width: 768px) {
	.timeline-axis { left: 25px; }
	.timeline-row.left, .timeline-row.right { flex-direction: row; padding: 0 0 0 70px; justify-content: flex-start; }
	.timeline-dot { left: 25px; width: 40px; height: 40px; }
	.timeline-row:hover .timeline-dot { transform: scale(1.15); }
	.timeline-content { max-width: 100%; }
	.content-inner::before { display: none; }
	.content-inner { padding: 20px; }
	.content-inner h3 { font-size: 16px; }
	.content-inner p { font-size: 13px; }
}

/* ============================================
   ABOUT US PAGE - Service Advantages
   ============================================ */
.service-advantages-container {
	padding: 40px 0;
}

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

.advantage-card {
	background-color: #f8f9fa;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.advantage-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
	width: 80px;
	height: 80px;
	background-color: var(--color-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 32px;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
	transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
	transform: scale(1.1);
	background-color: var(--color-primary-dark);
}

.advantage-content h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #343a40;
	font-size: 20px;
	font-weight: 700;
}

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

@media (max-width: 768px) {
	.advantages-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
		grid-gap: 20px;
	}

	.advantage-card {
		padding: 25px;
	}

	.advantage-icon {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}

	.advantage-content h3 {
		font-size: 18px;
	}
}

@media (max-width: 576px) {
	.advantages-grid {
		grid-template-columns: 1fr;
	}

	.advantage-card {
		padding: 20px;
	}

	.advantage-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.advantage-content h3 {
		font-size: 16px;
	}
}

/* ============================================
   ABOUT US PAGE - Corporate Culture (optimized)
   ============================================ */
.corporate-culture-container {
	padding: 20px 0 40px;
}

.culture-top-row {
	display: flex;
	gap: 24px;
	margin-bottom: 24px;
}

.culture-top-row .culture-section {
	flex: 1;
	margin-bottom: 0;
}

.culture-section {
	background: var(--color-bg);
	border-radius: var(--radius-lg);
	padding: 36px 32px;
	margin-bottom: 24px;
	text-align: center;
	border: 1px solid var(--color-border);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	position: relative;
	overflow: hidden;
}

.culture-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	border-radius: 2px 2px 0 0;
	transition: height 0.4s ease;
}

.culture-section:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.culture-section:hover::before {
	height: 6px;
}

/* Mission - primary color theme */
.culture-section.mission-section::before {
	background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.mission-section .culture-icon {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.mission-section:hover .culture-icon {
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Vision - accent gradient theme */
.culture-section.vision-section::before {
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.vision-section .culture-icon {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
	box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.vision-section:hover .culture-icon {
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Values - accent color theme */
.culture-section.values-section::before {
	background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

.values-section .culture-icon {
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
	box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.values-section:hover .culture-icon {
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.culture-icon {
	width: 70px;
	height: 70px;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	font-size: 28px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.culture-section:hover .culture-icon {
	transform: scale(1.1) rotate(-3deg);
}

.culture-section h2 {
	margin-top: 0;
	margin-bottom: 12px;
	color: var(--color-primary);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}

.culture-section p {
	margin-bottom: 0;
	color: var(--color-text-light);
	line-height: 1.8;
	font-size: 15px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 24px;
	max-width: 560px;
	margin-left: auto;
	margin-right: auto;
}

.value-item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.value-circle {
	width: 82px;
	height: 82px;
	background: linear-gradient(135deg, var(--color-bg-alt) 0%, #fff 100%);
	color: var(--color-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 0 0 2px var(--color-border);
	cursor: default;
}

.value-item:hover .value-circle {
	transform: scale(1.08) translateY(-4px);
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	color: #fff;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3), inset 0 0 0 2px transparent;
}

.value-item:nth-child(1):hover .value-circle,
.value-item:nth-child(5):hover .value-circle {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.value-item:nth-child(2):hover .value-circle,
.value-item:nth-child(6):hover .value-circle {
	background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

.value-item:nth-child(3):hover .value-circle,
.value-item:nth-child(7):hover .value-circle {
	background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent) 100%);
}

.value-item:nth-child(4):hover .value-circle,
.value-item:nth-child(8):hover .value-circle {
	background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
}

/* Responsive */
@media (max-width: 768px) {
	.culture-top-row {
		flex-direction: column;
		gap: 16px;
	}

	.culture-section {
		padding: 36px 24px;
	}

	.culture-icon {
		width: 72px;
		height: 72px;
		font-size: 30px;
	}

	.culture-section h2 {
		font-size: 22px;
	}

	.culture-section p {
		font-size: 14px;
	}

	.values-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 14px;
	}

	.value-circle {
		width: 78px;
		height: 78px;
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.culture-top-row {
		gap: 12px;
	}

	.culture-section {
		padding: 28px 16px;
	}

	.culture-icon {
		width: 56px;
		height: 56px;
		font-size: 22px;
	}

	.culture-section h2 {
		font-size: 18px;
	}

	.values-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.value-circle {
		width: 64px;
		height: 64px;
		font-size: 13px;
	}
}

/* ============================================
   QUALIFICATION PAGE - Styles
   ============================================ */

/* 整体容器 */
.qualification-wrapper {
	padding: 20px 0;
}

/* 左侧导航样式 */
.qualification-nav {
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	border: 1px solid #e9ecef;
	position: sticky;
	top: 85px;
}

.nav-header {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: white;
	padding: 20px;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 2px;
}

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

.qualification-nav-list {
	padding: 15px 0;
}

.qualification-nav-list .nav-item {
	margin: 0 10px 5px;
}

.qualification-nav-list .nav-link {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	color: #6c757d;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-size: 15px;
	background: #f8f9fa;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}

.qualification-nav-list .nav-link i {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(245, 158, 11, 0.12);
	border-radius: 8px;
	margin-right: 12px;
	font-size: 13px;
	transition: all 0.3s ease;
	color: var(--color-accent);
}

.qualification-nav-list .nav-link:hover {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.1) 100%);
	color: var(--color-primary);
	transform: translateX(5px);
}

.qualification-nav-list .nav-link:hover i {
	background: var(--color-accent);
	color: white;
}

.qualification-nav-list .nav-link.active {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	color: white;
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.qualification-nav-list .nav-link.active i {
	background: rgba(245, 158, 11, 0.25);
	color: var(--color-accent-light);
}

/* 内容区域 */
.qualification-content {
	background: white;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	padding: 35px;
	border: 1px solid #e9ecef;
}

.section-header {
	text-align: center;
	margin-bottom: 35px;
	padding-bottom: 25px;
}

.section-title {
	font-size: 26px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.section-subtitle {
	font-size: 14px;
	color: var(--color-text-light);
	margin-bottom: 0;
	letter-spacing: 1px;
}

.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 15px;
}

.section-divider .line {
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.section-divider .icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.divider-line {
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.divider-icon {
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* 瀑布流样式 */
.gallery-container {
	padding: 15px 0;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 25px;
}

.gallery-item {
	animation-duration: 0.6s;
}

.gallery-card {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	border: 1px solid #e9ecef;
	position: relative;
}

.gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
	border-color: transparent;
}

.card-top-bar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.gallery-card:hover .card-top-bar {
	transform: scaleX(1);
}

.gallery-image-container {
	position: relative;
	padding: 20px;
	background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
	overflow: hidden;
}

.gallery-image {
	max-width: 100%;
	max-height: 180px;
	object-fit: contain;
	border-radius: 12px;
	cursor: pointer;
}

.gallery-footer {
	padding: 12px 16px;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-title {
	font-size: 13px;
	font-weight: 400;
	color: #666;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}

/* PC端侧边导航栏宽度自适应 */
@media (min-width: 993px) {
	.qualification-nav {
		width: fit-content;
		min-width: 160px;
	}
}

/* 响应式调整 */
@media (max-width: 992px) {
	.qualification-nav {
		margin-bottom: 25px;
		position: relative;
		top: 0;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.qualification-wrapper {
		padding: 15px 0;
	}

	.qualification-content {
		padding: 25px 20px;
	}

	.section-title {
		font-size: 22px;
	}

	.gallery-grid {
		grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
		gap: 15px;
	}

	.gallery-image-container {
		padding: 15px;
		min-height: 150px;
	}

	.gallery-image {
		max-height: 130px;
	}

	.gallery-footer {
		padding: 10px 12px;
	}

	.gallery-title {
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.gallery-image-container {
		min-height: 120px;
		padding: 10px;
	}

	.gallery-image {
		max-height: 100px;
	}

	.gallery-footer {
		padding: 8px 10px;
	}

	.gallery-title {
		font-size: 11px;
	}
}

/* ============================================
   QUALIFICATION PAGE - Image Preview Modal
   ============================================ */

/* 图片预览模态框样式 */
.image-preview-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-preview-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(5px);
	animation: fadeInOverlay 0.3s ease-out;
}

@keyframes fadeInOverlay {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.image-preview-content {
	position: relative;
	z-index: 10000;
	max-width: 90%;
	max-height: 90%;
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: scaleInContent 0.3s ease-out;
}

@keyframes scaleInContent {
	from {
		transform: scale(0.9);
		opacity: 0;
	}
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.image-preview-close {
	position: absolute;
	top: -40px;
	right: -40px;
	color: white;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10001;
}

.image-preview-close:hover {
	color: var(--color-primary);
	transform: rotate(90deg);
}

.image-preview-container {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
	max-height: 80vh;
	overflow: auto;
}

.image-preview {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 8px;
}

.image-preview-title {
	margin-top: 20px;
	color: white;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	max-width: 80%;
	word-break: break-word;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.image-preview-close {
		top: -30px;
		right: -30px;
		font-size: 30px;
	}

	.image-preview-container {
		padding: 15px;
	}

	.image-preview-title {
		font-size: 16px;
		margin-top: 15px;
		max-width: 90%;
	}
}

@media (max-width: 576px) {
	.image-preview-close {
		top: -25px;
		right: -25px;
		font-size: 25px;
	}

	.image-preview-container {
		padding: 10px;
	}

	.image-preview-title {
		font-size: 14px;
		margin-top: 12px;
	}
}

/* ============================================
   NEWS SORT NAVIGATION (sortnav.html)
   ============================================ */
.sort-nav {
	margin: 20px 0 30px;
}

.sort-nav-inner {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: var(--radius-md);
	padding: 6px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
}

.sort-nav-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.sort-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text);
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--color-border);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	white-space: nowrap;
}

.sort-btn:hover {
	background: var(--color-primary);
	color: #fff;
	border-color: var(--color-primary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
	text-decoration: none;
}

.sort-btn.active {
	background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
	color: #fff;
	border-color: var(--color-primary);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
	font-weight: 600;
}

.sort-btn.active .badge-count {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.badge-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	background: var(--color-bg-alt);
	color: var(--color-text-light);
	transition: all 0.3s ease;
}

.sort-btn:hover .badge-count {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

/* 移动端适配 */
@media (max-width: 576px) {
	.sort-nav {
		margin: 15px 0 20px;
	}

	.sort-nav-inner {
		padding: 4px;
	}

	.sort-nav-btns {
		gap: 6px;
	}

	.sort-btn {
		padding: 8px 14px;
		font-size: 13px;
		gap: 6px;
	}

	.badge-count {
		min-width: 20px;
		height: 18px;
		font-size: 10px;
		padding: 0 5px;
	}
}
