/* CSS Variables */
:root {
	--primary-color: #E31E24;
	--primary-dark: #C00A10;
	--primary-light: #FF5257;
	--secondary-color: #1A1A1A;
	--accent-color: #0066B3;
	--text-dark: #333333;
	--text-light: #666666;
	--bg-light: #F8F9FA;
	--border-color: #E0E0E0;
	--shadow: 0 5px 15px rgba(0,0,0,0.1);
	--transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

.btn {
	padding: 12px 30px;
	font-weight: 600;
	border-radius: 8px;
	transition: var(--transition);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}

.btn-outline-primary {
	color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-outline-primary:hover {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

/* Header Styles */
.zoomlion-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: white;
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.top-bar {
	background: var(--secondary-color);
	color: white;
	padding: 10px 0;
	font-size: 14px;
}

.top-bar-left,
.top-bar-right {
	display: flex;
	gap: 20px;
}

.top-link {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
}

.top-link:hover {
	color: white;
}

.main-navbar {
	padding: 20px 0;
}

.navbar-brand .logo-text {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary-color);
	letter-spacing: 1px;
}

.navbar-nav .nav-link {
	font-weight: 600;
	padding: 10px 15px;
	color: var(--text-dark);
	position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--primary-color);
}

.navbar-nav .nav-link:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 2px;
	background: var(--primary-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
	transform: scaleX(1);
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 15px;
}

.btn-search {
	background: none;
	border: none;
	color: var(--text-dark);
	font-size: 1.1rem;
	padding: 8px;
	cursor: pointer;
	transition: var(--transition);
}

.btn-search:hover {
	color: var(--primary-color);
}

/* Search Modal */
.search-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.9);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.search-modal.show {
	display: flex;
}

.search-modal-content {
	width: 90%;
	max-width: 800px;
	position: relative;
}

.search-close {
	position: absolute;
	top: -60px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 2rem;
	cursor: pointer;
}

.search-container {
	display: flex;
	gap: 0;
}

.search-input {
	flex: 1;
	padding: 25px;
	font-size: 1.2rem;
	border: none;
	border-radius: 8px 0 0 8px;
}

.search-submit {
	padding: 25px 40px;
	background: var(--primary-color);
	color: white;
	border: none;
	border-radius: 0 8px 8px 0;
	cursor: pointer;
	font-size: 1.2rem;
}

/* Page Header */
.page-header {
	padding: 120px 0 60px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	margin-top: 80px;
}

.page-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.breadcrumb {
	background: none;
	padding: 0;
	margin: 0;
}

.breadcrumb-item a {
	color: var(--text-light);
}

.breadcrumb-item.active {
	color: var(--primary-color);
	font-weight: 600;
}

/* Section Styles */
.section {
	padding: 80px 0;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 40px;
	position: relative;
	display: inline-block;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 80px;
	height: 4px;
	background: var(--primary-color);
}

/* Footer */
.zoomlion-footer {
	background: var(--secondary-color);
	color: white;
}

.footer-top {
	padding: 80px 0 60px;
}

.footer-widget .widget-title {
	color: white;
	font-size: 1.3rem;
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255,255,255,0.1);
}

.company-description {
	color: rgba(255,255,255,0.8);
	margin-bottom: 25px;
}

.company-info {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	color: rgba(255,255,255,0.8);
}

.info-item i {
	color: var(--primary-color);
	margin-top: 3px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: white;
	padding-left: 5px;
}

.social-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social-link {
	width: 40px;
	height: 40px;
	background: rgba(255,255,255,0.1);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: var(--transition);
}

.social-link:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

.newsletter-form .input-group {
	border-radius: 8px;
	overflow: hidden;
}

.newsletter-form .form-control {
	border: none;
	padding: 15px 20px;
}

.newsletter-form .btn {
	border-radius: 0;
}

.footer-bottom {
	background: rgba(0,0,0,0.2);
	padding: 20px 0;
}

.copyright p {
	color: rgba(255,255,255,0.7);
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 30px;
	justify-content: flex-end;
}

.footer-bottom-links a {
	color: rgba(255,255,255,0.7);
	text-decoration: none;
	font-size: 14px;
}

.footer-bottom-links a:hover {
	color: white;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	border: none;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background: var(--primary-dark);
	transform: translateY(-3px);
}

/* Utility Classes */
.btn-link {
	color: var(--primary-color);
	text-decoration: none;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.btn-link:hover {
	color: var(--primary-dark);
	gap: 10px;
}

.lead {
	font-size: 1.2rem;
	color: var(--text-light);
	line-height: 1.7;
}

.text-primary {
	color: var(--primary-color) !important;
}

.bg-light {
	background-color: var(--bg-light) !important;
}

/* Responsive */
@media (max-width: 768px) {
	.page-title {
		font-size: 2rem;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.hero-content h1 {
		font-size: 2.5rem;
	}
	
	.top-bar-left,
	.top-bar-right {
		justify-content: center;
		text-align: center;
	}
	
	.footer-bottom-links {
		justify-content: center;
		margin-top: 15px;
	}
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 0.8s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-dark);
}