@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
	color: #1a1a1a;
	overflow-x: hidden;
}

.header {
	position: fixed;
	width: 100%;
	height: 9.5%;
	background: rgba(0, 0, 0, 0.9);
	backdrop-filter: blur(10px);
	padding: 0.75rem 2rem;
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #dc2626;
	letter-spacing: 1px;
}

.lang-switcher {
	display: flex;
	gap: 0.5rem;
	background: rgba(220, 38, 38, 0.1);
	padding: 0.5rem;
	border-radius: 8px;
}

.lang-btn {
	padding: 0.5rem 1rem;
	border: none;
	background: transparent;
	color: white;
	cursor: pointer;
	border-radius: 5px;
	font-weight: 600;
	transition: all 0.3s;
}

.lang-btn.active {
	background: #dc2626;
}

.hero {
	height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2070')
			center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 2rem;
}

.hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 5.5rem);
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s;
	font-weight: 800;
	letter-spacing: -1px;
}

.hero-content p {
	font-size: clamp(1.2rem, 2vw, 2.2rem);
	margin-bottom: 2.5rem;
	animation: fadeInUp 1s 0.2s backwards;
	font-weight: 500;
}

.cta-btn {
	padding: 1.2rem 3rem;
	background: #dc2626;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: clamp(1.1rem, 1.5vw, 1.4rem);
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	animation: fadeInUp 1s 0.4s backwards;
}

.cta-btn:hover {
	background: #b91c1c;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.section {
	padding: 5rem 2rem;
	max-width: 1600px;
	margin: 0 auto;
}

.section-title {
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	text-align: center;
	margin-bottom: 3rem;
	color: #dc2626;
	position: relative;
	font-weight: 800;
	letter-spacing: -1px;
}

.section-title::after {
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: #dc2626;
	margin: 1rem auto;
}

.intro-section {
	background: #f9fafb;
}

.intro-content {
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	font-size: clamp(1.15rem, 1.5vw, 1.5rem);
	line-height: 1.8;
	font-weight: 500;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card h3 {
	color: #dc2626;
	margin-bottom: 1rem;
	font-size: clamp(1.3rem, 1.8vw, 2rem);
	font-weight: 700;
}

.service-card p {
	font-size: clamp(1rem, 1.2vw, 1.3rem);
	line-height: 1.7;
}

.progress-section {
	background: linear-gradient(rgba(220, 38, 38, 0.95), rgba(185, 28, 28, 0.95)),
		url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?q=80&w=2070')
			center/cover;
	color: white;
}

.progress-content {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.progress-content p {
	font-size: clamp(1.15rem, 1.5vw, 1.5rem);
	margin-bottom: 1.5rem;
	line-height: 1.8;
	font-weight: 500;
}

.warehouse-section {
	background: #0a0a0a;
	color: white;
}

.warehouse-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.warehouse-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	border: 2px solid rgba(220, 38, 38, 0.3);
	transition: all 0.3s;
}

.warehouse-card:hover {
	border-color: #dc2626;
	background: rgba(220, 38, 38, 0.1);
}

.warehouse-card h3 {
	color: #dc2626;
	font-size: clamp(1.5rem, 2vw, 2.5rem);
	margin-bottom: 1rem;
	font-weight: 700;
}

.warehouse-card p {
	font-size: clamp(1rem, 1.3vw, 1.4rem);
	font-weight: 500;
}

.contact-section {
	background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
		url('https://images.unsplash.com/photo-1557804506-669a67965ba0?q=80&w=2074')
			center/cover;
	color: white;
	text-align: center;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 900px;
	margin: 0 auto;
}

.contact-item {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 10px;
	border: 2px solid rgba(220, 38, 38, 0.3);
}

.contact-item p {
	font-size: clamp(1.1rem, 1.4vw, 1.5rem);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-item a {
	color: white;
	text-decoration: none;
	font-size: clamp(1.1rem, 1.4vw, 1.5rem);
	transition: color 0.3s;
	font-weight: 500;
}

.contact-item a:hover {
	color: #dc2626;
}

.footer {
	background: #000;
	color: white;
	text-align: center;
	padding: 2rem;
	font-size: clamp(0.95rem, 1.2vw, 1.2rem);
}

@media (min-width: 2560px) {
	.section {
		max-width: 2200px;
		padding: 6rem 4rem;
	}

	.hero-content h1 {
		font-size: 6rem;
	}

	.hero-content p {
		font-size: 2.5rem;
	}

	.section-title {
		font-size: 5rem;
	}

	.intro-content {
		font-size: 1.8rem;
		max-width: 1600px;
	}

	.service-card {
		padding: 3rem;
	}

	.service-icon {
		font-size: 4.5rem;
	}

	.service-card h3 {
		font-size: 2.5rem;
	}

	.service-card p {
		font-size: 1.5rem;
	}

	.progress-content p {
		font-size: 1.8rem;
	}

	.warehouse-card h3 {
		font-size: 3rem;
	}

	.warehouse-card p {
		font-size: 1.6rem;
	}

	.contact-item {
		padding: 2.5rem;
	}

	.contact-item p,
	.contact-item a {
		font-size: 1.8rem;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.header {
		padding: 1rem;
	}

	.logo {
		font-size: 1.5rem;
	}

	.section {
		padding: 3rem 1rem;
	}

	.services-grid,
	.warehouse-grid {
		grid-template-columns: 1fr;
	}
}
