@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto/Roboto-Regular.ttf");
    font-weight: 400;
    font-style: normal;
  }

img{
    max-width: 100%;
    object-fit: cover;
    display: block;
}
a{
    color: inherit;
    text-decoration: none;
}

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

body {
  font-family: 'Roboto', sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.4;
  overflow-x: hidden;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
 header {
  position: fixed;
  width: 100%;
  top: 0;
  background: linear-gradient(135deg, #ff6f00, #ff9100);
  padding: 20px 0;
  z-index: 1000;
}

 nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 .logo {
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
 .nav-links {
  display: flex;
  gap: 30px;
}
 .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  transition: all 0.3s ease;
}
 .nav-links a:hover {
  text-shadow: 0 0 10px #fff;
  transform: scale(1.1);
}
 .burger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}
.hero {
      height: 100vh;
      max-height: 1200px;
      background: url('image/banner.webp') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .hero h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: 4rem;
      margin-bottom: 20px;
      text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    }

    .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    .cta-btn {
      background: #fff;
      color: #ff6f00;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .cta-btn:hover {
      background: #ff9100;
      color: #fff;
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
    .btn {
      background: #ff6f00;
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      transition: all 0.3s ease;
      display: inline-block;
      margin-top: 15px;
    }

    .btn:hover {
      background: #fff;
      color: #ff9100;
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }
.features {
      padding: 80px 0;
      background: linear-gradient(180deg, #fff, #f5f5f5);
    }

    .features h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .feature-card img {
      margin-bottom: 20px;
      min-height: 250px;
    }

    /* Journey Section (Enhanced) */
    .journey {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .journey::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 111, 0, 0.4));
      z-index: 1;
    }

    .journey-content {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .journey-text {
      flex: 1;
      color: #fff;
      transform: translateY(50px);
      opacity: 0;
      animation: slideUp 1s ease forwards;
    }

    .journey-img {
      flex: 1;
      position: relative;
    }

    .journey-img img {
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
      transform: scale(0.9);
      min-height: 300px;
      transition: transform 0.5s ease;
    }

    @keyframes slideUp {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Driver Stories Section */
    .driver-stories {
      padding: 80px 0;
      background: #fff;
    }

    .driver-stories h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
    }

    .story-card {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 40px;
      padding: 20px;
      background: #f5f5f5;
      border-radius: 15px;
      transition: transform 0.3s ease;
    }

    .story-card:hover {
      transform: translateX(10px);
    }

    .story-card img {
        width: 300px;
        min-height: 250px;
      border-radius: 10px;
    }

    .story-text {
      flex: 1;
    }

    .slider h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
    }

    .slider-container {
      overflow: hidden;
      position: relative;
    }

    .slider-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slide {
      min-width: 100%;
      text-align: center;
      padding-bottom: 20px;
    }

    .slide img {
      border-radius: 15px;
      height: 500px;
      margin: 0 auto 10px auto;
    }
.payment-flexibility {
      padding: 80px 0;
      background: linear-gradient(135deg, #ff6f00, #ff9100);
      color: #fff;
    }

    .payment-flexibility h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 40px;
    }

    .payment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .payment-card {
      background: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .payment-card:hover {
      transform: translateY(-10px);
    }

    .payment-card i {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 15px;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
    /* Accordion Section */
    .accordion {
      padding: 80px 0;
      background: #f5f5f5;
    }

    .accordion h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
    }

    .accordion-item {
      margin-bottom: 20px;
      border-bottom: 1px solid #ddd;
    }

    .accordion-header {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.2rem;
      font-weight: bold;
    }

    .accordion-content {
      display: none;
      padding: 20px;
      font-size: 1rem;
    }

    .accordion-content.active {
      display: block;
    }

    /* Contact Section */
    .contact {
      padding: 80px 0;
      background: linear-gradient(135deg, #ff6f00, #ff9100);
      color: #fff;
    }

    .contact h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 50px;
    }
    .contact a{
        color: #fff; text-decoration: underline;
    }

    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
    }

    .contact-form textarea {
      height: 150px;
    }

    .contact-form button {
      background: #fff;
      color: #ff6f00;
      padding: 15px 30px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .contact-form button:hover {
      background: #333;
      color: #fff;
    }
    .contact-form label{
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
    }
    .contact-form label input{
        width: auto;
        margin: 0;
    }
 .city-vibes {
  padding: 130px 0 100px 0;
  background: linear-gradient(180deg, #fff, #f5f5f5);
}
 .vibes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
 .vibes-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
 .vibes-card:hover {
  transform: translateY(-10px);
}
 .vibes-card img {
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 250px;
}
 .travel-tips {
  padding: 80px 0;
  color: #fff;
  position: relative;
}
 .travel-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
 .tips-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 40px;
  align-items: center;
}
 .tips-text {
  flex: 1;
}
 .tips-img {
  flex: 1;
}

 .tips-img img {
  border-radius: 15px;
}

 .ride-styles {
  padding: 80px 0;
  background: #f5f5f5;
}

 .styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

 .style-card {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

 .style-card:hover {
  transform: scale(1.05);
}

 .style-card img {
  margin-bottom: 15px;
  min-height: 250px;
}

 .local-gems {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff9100, #ff6f00);
  color: #fff;
}
 .gems-content {
  display: flex;
  gap: 30px;
  align-items: center;
}

 .gems-text {
  flex: 1;
}

 .gems-img {
  flex: 1;
}

 .gems-img img {
  border-radius: 15px;
}
 .eco-rides {
  padding: 80px 0;
  color: #fff;
  position: relative;
}

 .eco-rides::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
 .eco-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
 .eco-content img {
  border-radius: 15px;
  margin: 20px auto 0 auto;
  width: 100%;
  max-width: 600px;
}
 .rider-reviews {
  padding: 80px 0;
  background: #f5f5f5;
}

 h2 , h1{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
}

.review-card {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  transition: transform 0.3s ease;
  align-items: center;
}

.review-card:hover {
  transform: translateX(10px);
}

 .review-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

 .review-text {
  flex: 1;
}

 .review-text i {
  color: #ff6f00;
  margin-right: 5px;
}

 .safety {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6f00, #ff9100);
  color: #fff;
}

 .safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
}
 .safety-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

 .safety-card:hover {
  transform: translateY(-10px);
}

 .safety-card i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.driver-standards {
      padding: 80px 0;
      background: #f5f5f5;
    }

    .driver-standards h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 40px;
      color: #ff6f00;
    }

    .standards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .standards-card {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .standards-card:hover {
      transform: scale(1.05);
    }

    .standards-card img {
      border-radius: 10px;
      margin-bottom: 20px;
    }
.route-ideas {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #f5f5f5, #fff);
}

 .route-ideas h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f00;
}

 .route-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

 .route-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

 .route-card img {
  border-radius: 15px;
  width: 300px;
  height: 200px;
}

 .route-text {
  flex: 1;
}

.packing-guide {
  padding: 80px 0;
  background: url('image/parallax.webp') center/cover no-repeat fixed;
  color: #fff;
  position: relative;
}

 .packing-guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(73, 36, 7, 0.7), rgba(0, 0, 0, 0.7));
}

 .packing-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.packing-content img {
  border-radius: 15px;
  margin-top: 20px;
}

 .budget-tips {
  padding: 80px 0;
  background: #fff;
}

.budget-tips h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f00;
}

 .budget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

 .budget-card {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.budget-card:hover {
  transform: scale(1.05);
}

.budget-card i {
  font-size: 2.5rem;
  color: #ff6f00;
  margin-bottom: 15px;
}

.booking-process {
      padding: 120px 0 80px;
      background: linear-gradient(180deg, #fff, #f5f5f5);
    }

    .booking-process h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 40px;
      color: #ff6f00;
    }

    .booking-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    .booking-card {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .booking-card:hover {
      transform: translateY(-10px);
    }

    .booking-card img {
      border-radius: 10px;
      margin-bottom: 20px;
    }
 
 .weather-guide {
  padding: 80px 0;
  background: #f5f5f5;
}

 .weather-guide h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f00;
}

 .weather-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
 .weather-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

 .weather-card img {
  border-radius: 15px;
  width: 300px;
  height: 200px;
}

.connectivity {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff9100, #ff6f00);
  color: #fff;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

.connectivity-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.connectivity-card:hover {
  transform: scale(1.05);
}

 .connectivity-card i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

 .terms-section,
 .privacy-section {
  padding: 130px 0 80px;
}

 .terms-section h1,
 .privacy-section h1 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #ff6f00;
}

 .section {
  margin-bottom: 40px;
}

 .section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Thank You Page Styles */
.thank-you  {
  background: linear-gradient(135deg, #ff9100, #ff6f00);
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

.thank-you .container {
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.thank-you .thank-you-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.thank-you .thank-you-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.thank-you .home-button {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #ff6f00;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.thank-you .home-button:hover {
  background: #333;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Styles (Shared across Index, Explore, Plan, Terms, Privacy) */
footer {
  background: #333;
  color: #fff;
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-grid div{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-grid a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  text-decoration: underline;
}
.footer-grid h3, a.footer-logo {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  display: inline-block;
}
@media (max-width: 768px) {
    body.no-scroll{
        overflow: hidden;
    }
 .nav-links {
    transform: translateX(-100%);
        transition: transform 0.3s ease;
        flex-direction: column;
        position: fixed;
        top: 77px;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ff9100;
        justify-content: center;
        align-items: center;
        z-index: 999;
  }

  .nav-links.active{
    transform: translateX(0%);
  }

.burger {
    display: block;
  }
  .hero h1{
    font-size: 2.5rem;
  }

 .tips-content,  .gems-content,  .review-card,  .route-card, .insights-content, .weather-card, .journey-content {
    flex-direction: column;
  }

   .route-card img,
   .weather-card img {
    width: 100%;
    height: 250px;
  }

   .terms-section h1,
   .privacy-section h1 {
    font-size: 2.2rem;
  }

 .section h2 {
    font-size: 1.5rem;
  }
  .container{
    padding: 0 10px;
  }

      .story-card {
        flex-direction: column;
      }
}