:root {
	--primary: #ed193d;
	--secondary: #f15c41;
	--background: #ffffff;
	--section-bg: #f5f5f5;
	--text: #404041;
	--gradient: linear-gradient(to right, #f15c41, #ed193d);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
#mainNav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: background-color 0.2s ease;
	height: 120px;
}

#mainNav.scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 0 20px;
}

.logo img {
	border-radius: 50%;
	padding: 15px;
}

.primary-navigation {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.primary-navigation a {
	color: var(--secondary);
	text-decoration: none;
	font-weight: 700;
	transition: color 0.3s ease;
}

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

.social-links {
	display: flex;
	gap: 1rem;
}

.mobile-nav-toggle {
	display: none;
}

/* Hero Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
}

.hero-slider {
	height: 100%;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.slide.active {
	opacity: 1;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	filter: brightness(0.7);
}

.hero-content {
	position: absolute;
	left: 40%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: left;
	color: #ffffff;
	max-width: 800px;
	padding: 0 20px;
}

.hero-content h1 {
	font-size: 3.6rem;
	margin-bottom: 0.6rem;
	line-height: 3.7rem;
	text-transform: uppercase;
	text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
	font-size: 1.3rem;
	margin-bottom: 1.2rem;
	font-weight: 400;
	text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.slider-dots {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active {
	background: white;
}

/* Section Styles */
section {
	padding: 5rem 0;
}

section:nth-child(even) {
	background-color: var(--section-bg);
}

.section-title {
	text-align: center;
	color: var(--text);
	text-transform: uppercase;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 2px;
	background: var(--gradient);
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text {
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: left;
}

.about-map img {
	width: 100%;
	height: auto;
}

/* Services Section */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	margin-bottom: 1.2rem;
}

.service-icon img {
	width: 160px;
	height: 120px;
}

.services-description {
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: left;
	max-width: 1000px;
	margin: 0 auto;
}

/* Fleet Section */
.fleet-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.fleet-card {
	background: rgb(255, 255, 255);
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
}

.fleet-icon {
	margin-bottom: 0.2rem;
}

.fleet-icon img {
	width: 200px;
	height: 100px;
}

.fleet-description {
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--secondary);
}

.social-media {
	margin-top: 2rem;
}

.social-icons {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-icons a {
	color: var(--secondary);
	font-size: 1.5rem;
	transition: color 0.3s ease;
}

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

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-family: 'Inter', sans-serif;
}

.form-group textarea {
	height: 150px;
	resize: vertical;
}

/* Footer */
.footer {
	background: var(--gradient);
	color: white;
	padding: 3rem 0;
	text-align: center;
}

.footer-logo img {
	border-radius: 50%;
	margin-bottom: 1rem;
}

.footer-tagline {
	margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
	display: inline-block;
	padding: 1rem 2rem;
	background: var(--secondary);
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 500;
	transition: background-color 0.3s ease;
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	background: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.9);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 4rem;
	}

	.nav-links.active {
		display: flex;
	}

	.mobile-nav-toggle {
		display: block;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0.5rem;
		z-index: 1001;
	}

	.hamburger {
		width: 30px;
		height: 20px;
		position: relative;
	}

	.hamburger span {
		display: block;
		width: 100%;
		height: 2px;
		background: var(--secondary);
		position: absolute;
		transition: all 0.3s ease;
	}

	.hamburger span:first-child {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	.hamburger span:last-child {
		bottom: 0;
	}

	.mobile-nav-toggle[aria-expanded='true'] .hamburger span:first-child {
		transform: rotate(45deg);
		top: 50%;
	}

	.mobile-nav-toggle[aria-expanded='true'] .hamburger span:nth-child(2) {
		opacity: 0;
	}

	.mobile-nav-toggle[aria-expanded='true'] .hamburger span:last-child {
		transform: rotate(-45deg);
		bottom: 40%;
	}

	.primary-navigation {
		position: fixed;
		inset: 0;
		background: rgba(255, 255, 255, 0.95);
		flex-direction: column;
		padding: 80px 2rem;
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}

	.primary-navigation.active {
		transform: translateX(0);
	}

	.about-content,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.hero-content h1 {
		font-size: 2rem;
		line-height: 2.2rem;
	}

	.hero-content h2 {
		font-size: 1.2rem;
		line-height: 1.5rem;
	}
}
