:root {
  --primary: #ff6b00;
  --secondary: #1a1a1a;
  --accent: #ffd700;
  --dark: #0a0a0a;
  --light: #f5f5f5;
  --white: #ffffff;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--secondary);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Topbar */
.topbar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 14px;
}

.topbar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar-left {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-item i {
  color: var(--primary);
}

.topbar-item a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.topbar-item a:hover {
  color: var(--primary);
}

.emergency-btn {
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Header */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(255,107,0,0.3));
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  max-width: 800px;
  z-index: 2;
}

.slide-content h1 {
  font-size: 52px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease;
}

.slide-content p {
  font-size: 22px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

.slide-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 16px;
  border: 2px solid var(--primary);
}

.btn:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,0,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 10px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  z-index: 10;
}

.slider-arrow:hover {
  background: var(--primary);
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

/* Quick Services */
.quick-services {
  background: var(--primary);
  padding: 40px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-quick {
  background: var(--white);
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s;
  cursor: pointer;
}

.service-quick:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-quick i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-quick h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 20px;
}

.service-quick p {
  color: #666;
  font-size: 14px;
}

/* About Preview */
.about-preview {
  padding: 80px 20px;
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.experience-badge h3 {
  font-size: 42px;
  margin: 0;
  line-height: 1;
}

.experience-badge p {
  font-size: 14px;
  margin: 5px 0 0 0;
}

.about-text h2 {
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text h2 span {
  color: var(--primary);
}

.about-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: var(--primary);
  font-size: 20px;
}

.feature-item span {
  font-weight: 600;
  color: var(--secondary);
}

/* Services Overview */
.services-overview {
  padding: 80px 20px;
  background: var(--light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 15px;
}

.section-header p {
  color: #666;
  font-size: 18px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  border: 3px solid transparent;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(255,107,0,0.2);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--secondary);
  font-size: 22px;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.service-card a:hover {
  gap: 12px;
}

/* Stats Section */
.stats-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark), var(--secondary));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 52px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
  color: var(--white);
}

/* Testimonials Preview */
.testimonials-preview {
  padding: 80px 20px;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 35px;
  border-radius: 15px;
  position: relative;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quote-icon {
  font-size: 50px;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

.testimonial-text {
  margin-bottom: 25px;
  font-style: italic;
  color: #555;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 18px;
}

.testimonial-author p {
  color: #666;
  font-size: 14px;
}

.rating {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 18px;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--light);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.8;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-links a:hover {
  transform: translateY(-5px);
  background: var(--white);
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
}

/* Page Header */
.page-header {
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.page-header-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 16px;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb i {
  font-size: 12px;
}

/* About Detail */
.about-detail {
  padding: 80px 20px;
  background: var(--white);
}

/* Mission Vision */
.mission-vision {
  padding: 80px 20px;
  background: var(--light);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.mv-card h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 24px;
}

.mv-card p {
  color: #666;
  line-height: 1.8;
}

/* Why Choose */
.why-choose {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--dark), var(--secondary));
  color: var(--white);
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.choose-card {
  text-align: center;
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}

.choose-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.15);
}

.choose-number {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1;
}

.choose-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.choose-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 80px 20px;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  color: var(--secondary);
  margin-bottom: 5px;
  font-size: 20px;
}

.team-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-social {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.team-social a:hover {
  transform: translateY(-3px);
}

/* Certifications */
.certifications {
  padding: 80px 20px;
  background: var(--light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.cert-item {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cert-item i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
}

.cert-item h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 20px;
}

.cert-item p {
  color: #666;
  font-size: 14px;
}

/* Services Detail Page */
.services-detail {
  padding: 80px 20px;
  background: var(--white);
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-detail-item.reverse {
  direction: rtl;
}

.service-detail-item.reverse > * {
  direction: ltr;
}

.service-detail-content {
  display: flex;
  gap: 20px;
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.service-detail-text h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-detail-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin: 25px 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #555;
}

.service-features i {
  color: var(--primary);
  font-size: 18px;
}

.service-detail-image {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Industries Section */
.industries-section {
  padding: 80px 20px;
  background: var(--light);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.industry-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-5px);
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.industry-card i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 15px;
  transition: color 0.3s;
}

.industry-card:hover i {
  color: var(--white);
}

.industry-card h3 {
  color: var(--secondary);
  font-size: 18px;
  transition: color 0.3s;
}

.industry-card:hover h3 {
  color: var(--white);
}

/* Fleet Section */
.fleet-section {
  padding: 80px 20px;
  background: var(--light);
}

.fleet-filter {
  padding: 40px 20px;
  background: var(--white);
}

.filter-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.fleet-card:hover {
  transform: translateY(-10px);
}

.fleet-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.fleet-badge.available {
  background: #28a745;
  color: var(--white);
}

.fleet-badge.booked {
  background: #dc3545;
  color: var(--white);
}

.fleet-info {
  padding: 25px;
}

.fleet-info h3 {
  color: var(--secondary);
  margin-bottom: 15px;
  font-size: 22px;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.spec-item i {
  color: var(--primary);
}

.fleet-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  pointer-events: none;
}

/* Fleet Specs Section */
.fleet-specs-section {
  padding: 80px 20px;
  background: var(--white);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.help-card {
  background: var(--light);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.help-card i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
}

.help-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 22px;
}

.help-card p {
  color: #666;
  margin-bottom: 20px;
}

/* Projects Section */
.projects-section {
  padding: 80px 20px;
  background: var(--light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.project-card {
  position: relative;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--white);
  padding: 30px;
  transform: translateY(50px);
  transition: transform 0.3s;
}

.project-card:hover .project-overlay {
  transform: translateY(0);
}

.project-category {
  display: inline-block;
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

.project-overlay h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.project-overlay p {
  font-size: 14px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Project Stats */
.project-stats {
  padding: 80px 20px;
  background: var(--white);
}

.project-stats h2 {
  text-align: center;
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 50px;
}

/* Contact Section */
.contact-section {
  padding: 80px 20px;
  background: var(--light);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: #666;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-submit:hover {
  background: #ff8533;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,0,0.4);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-info-card h3 {
  color: var(--secondary);
  margin-bottom: 10px;
  font-size: 18px;
}

.contact-info-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-top: 8px;
  font-weight: 600;
}

.contact-info-card a:hover {
  color: #ff8533;
}

.contact-info-card.social .social-links {
  justify-content: flex-start;
  margin-top: 15px;
}

/* Map Section */
.map-section {
  padding: 80px 20px;
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  font-size: 38px;
  color: var(--secondary);
  margin-bottom: 40px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .about-content,
  .service-detail-item,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .service-detail-item.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar-content {
    flex-direction: column;
    text-align: center;
  }
  
  .topbar-left {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  
  .topbar-item {
    justify-content: center;
  }
  
  /* Header */
  .menu-toggle {
    display: block;
  }
  
  .logo {
    font-size: 22px;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    gap: 15px;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav a.active::after {
    display: none;
  }
  
  /* Hero Slider */
  .hero-slider {
    height: 500px;
  }
  
  .slide-content h1 {
    font-size: 32px;
  }
  
  .slide-content p {
    font-size: 16px;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .slider-arrow.left {
    left: 10px;
  }
  
  .slider-arrow.right {
    right: 10px;
  }
  
  /* Sections */
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-image {
    height: 350px;
  }
  
  .about-text h2 {
    font-size: 28px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  
  /* Page Header */
  .page-header {
    height: 300px;
  }
  
  .page-header-content h1 {
    font-size: 32px;
  }
  
  .page-header-content p {
    font-size: 16px;
  }
  
  /* Fleet */
  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  /* Projects */
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  /* CTA */
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-section p {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 400px;
  }
  
  .slide-content h1 {
    font-size: 24px;
  }
  
  .slide-content p {
    font-size: 14px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .about-text h2 {
    font-size: 24px;
  }
}
