.btn-browse:hover {
  background-color: #f3f8ff;
  border-color: #e6f0fa;
  color: #0c84fe;
  box-shadow: 0 4px 16px rgba(12, 132, 254, 0.1);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
  transition: all 0.22s cubic-bezier(0.4, 1.3, 0.6, 1);
}

.btn-host:hover {
  background-color: rgba(255, 255, 255, 0.13);
  border-color: #fff;
  color: #fff;
  box-shadow: 0 4px 16px rgba(67, 210, 255, 0.1);
  transform: translateY(-2px) scale(1.03);
  transition: all 0.22s cubic-bezier(0.4, 1.3, 0.6, 1);
}
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.hero-section {
  background: linear-gradient(rgba(0, 20, 60, 0.7), rgba(0, 20, 60, 0.7)),
    url("/images/happy-family.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-trusted {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 0.2rem;
}

.hero-subtitle {
  font-family: "Syne", sans-serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-highlight {
  color: #43d2ff;
  font-weight: 700;
}

.hero-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.hero-btn {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  margin: 0;
  padding: 0.75rem 2.5rem;
  font-weight: 500;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.22s cubic-bezier(0.4, 1.3, 0.6, 1);
}

@media (max-width: 576px) {
  .hero-btn {
    padding: 0.45rem 1rem;
    font-size: 0.98rem;
    min-width: 130px;
  }

  .hero-buttons {
    gap: 0.5rem;
  }
}

.btn-browse {
  background-color: white;
  border-color: white;
  color: #0c84fe;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.btn-browse .icon {
  margin-left: 8px;
  font-size: 0.8rem;
}

.btn-host {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-host:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}

.stats-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 0;
  max-width: 185px;
  box-sizing: border-box;
}

.stat-number {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #43d2ff;
}

.stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.featured-section {
  padding: 5rem 0;
  width: 100%;
}

.featured-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.featured-title {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.featured-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

.featured-cars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.car-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f5f5; /* Light background for empty states */
}

.car-details {
  padding: 1.5rem;
}

.car-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.car-title {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
}

.car-rating {
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  color: #666;
}

.car-rating .star {
  color: #ffc107;
  margin-right: 4px;
}

.car-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.car-location {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #666;
  display: flex;
  align-items: center;
}

.car-location i {
  margin-right: 5px;
  color: #0c84fe;
}

.car-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-price {
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #0c84fe;
}

.price-period {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

.book-now {
  background-color: #0c84fe;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.2rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.book-now:hover {
  background-color: #0070e0;
  text-decoration: none;
  color: white;
}

.view-all-container {
  text-align: center;
  margin-top: 3rem;
}

.view-all-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  background-color: white;
  border: 1px solid #ddd;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.view-all-link:hover {
  color: #0c84fe;
  border-color: #0c84fe;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #666;
}

.why-choose-section {
  padding: 5rem 0;
  background-color: #f8f9ff;
  width: 100%;
}

.features-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: rgba(12, 132, 254, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: #0c84fe;
}

.feature-box:nth-child(2) .feature-icon {
  background-color: rgba(67, 210, 255, 0.1);
}

.feature-box:nth-child(2) .feature-icon i {
  color: #43d2ff;
}

.feature-box:nth-child(3) .feature-icon {
  background-color: rgba(102, 126, 234, 0.1);
}

.feature-box:nth-child(3) .feature-icon i {
  color: #667eea;
}

.feature-title {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.feature-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.booking-process-section {
  padding: 5rem 0;
  width: 100%;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -15%;
  width: 30%;
  height: 2px;
  background-color: #e0e0e0;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #0c84fe;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
}

.step-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.book-now-container {
  text-align: center;
  margin-top: 3rem;
}

.book-car-btn {
  background-color: #0c84fe;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.book-car-btn:hover {
  background-color: #0070e0;
  transform: translateY(-2px);
}

.our-brands-section {
  padding: 4rem 0;
  background-color: #f8f9ff;
  overflow: hidden;
  width: 100%;
}

.brands-slider {
  position: relative;
  overflow: hidden;
  margin: 0 -15px;
  padding: 1.5rem 0;
}

.brands-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 14);
}

.brand-logo {
  flex: 0 0 auto;
  width: 200px;
  padding: 0 20px;
}

.brand-logo img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 7));
  }
}

@media (max-width: 992px) {
  .hero-title,
  .hero-subtitle {
    font-size: 3rem;
  }

  .stats-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .featured-cars {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-container {
    flex-direction: column;
    max-width: 550px;
  }

  .steps-container {
    flex-wrap: wrap;
  }

  .step {
    flex: 0 0 45%;
    margin-bottom: 2rem;
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-btn {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    margin: 0;
    width: 100%;
  }

  .featured-cars {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .car-card {
    margin-bottom: 1rem;
  }

  .step {
    flex: 0 0 100%;
  }
}

@media (max-width: 576px) {
  .hero-title,
  .hero-subtitle {
    font-size: 2rem;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .stat-box {
    flex: 1 1 45%;
    min-width: 130px;
    max-width: 180px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    padding: 1rem 1.5rem;
  }

  .stat-box:nth-child(3) {
    flex-basis: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}
