:root {
  --color-primary: #0d6efd;
  --color-dark: #222;
  --color-light: #f8f9fa;
  --color-accent: #ff914d;
  --font-main: 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  background-color: var(--color-light);
  color: var(--color-dark);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.hero {
  background: linear-gradient(135deg, #0d6efd 0%, #0049b7 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInSlide 1.2s ease-out;
}

.hero__title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero__text {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
}

.hero__highlights {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero__highlight {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: 1.1rem;
  backdrop-filter: blur(5px);
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  margin: 3rem 0;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.section__text {
  margin-bottom: 1rem;
}

.whyus__grid,
.testimonials__grid,
.slider {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.whyus__item,
.testimonial,
.slide {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 300px;
}

.testimonial:hover,
.slide:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.contact {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact__item {
  margin-bottom: 1rem;
}

.map {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 1.5rem;
  }

  .whyus__grid,
  .testimonials__grid,
  .slider {
    flex-direction: column;
    gap: 1rem;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem 0;
  text-align: center;
}

.stat {
  flex: 1 1 200px;
  padding: 1rem;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.icon-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.icon-box {
  text-align: center;
  width: 200px;
}

.icon-box i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.transport-text-wrapper {
  min-height: 150px;
}

.transport-img {
  display: block;
  margin: auto;
  width: 330px;
  height: 195px;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-answer {
  display: none;
  padding: 1rem;
  background-color: #f1f1f1;
  border-radius: 0 0 5px 5px;
}

.testimonial {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 100%;
  padding: 2rem;
  text-align: center;
}

.review-img {
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}

.testimonial p {
  text-align: justify;
  max-width: 50%;
  font-size: 20px;
}

@media screen and (max-width: 1140px) {
  .transport-img {
    width: 430px;
    height: 295px;
  }

  .testimonial {
    display: block;
  }

  .review-img {
    display: none;
  }

  .testimonial p {
    max-width: 100%;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}
