/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header Section */
.header {
  background: #3b2f2f; /* Deep brown for a natural feel */
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
}

.logo span {
  color: #a3c586; /* Earthy green accent */
}

.agency-icon {
  width: 30px; /* Adjust size of the icon */
  height: 30px;
  margin-right: 10px; /* Space between icon and text */
}

/* Navigation */
.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #a3c586;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}


/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url(images/hero.jpg) no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 0 15px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  box-sizing: border-box;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  background: #a3c586; /* Earthy green button */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #8da96d; /* Slightly darker green */
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #3b2f2f;
    position: absolute;
    top: 50px;
    right: 15px;
    width: 200px;
    border-radius: 5px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger-menu {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/* About Us Section */
.about-us {
  padding: 50px 15px;
  background-color: #f5f1e3; /* Soft beige for a warm background */
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-content {
  flex: 1;
  max-width: 500px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b2f2f;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a; /* Neutral dark gray */
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  background: #a3c586;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s, transform 0.2s;
}

.read-more:hover {
  background: #8da96d;
  transform: translateY(-2px);
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-image {
    max-width: 100%;
  }
}


/* Car Rental Section */
.car-rental {
  padding: 40px 15px;
  background-color: #f5f1e3; /* Soft beige for natural feel */
  text-align: center;
}

.car-rental h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b2f2f; /* Earthy brown for heading */
}

.car-rental .section-description {
  font-size: 1rem;
  color: #5a5a5a; /* Neutral gray for description */
  margin-bottom: 30px;
}

.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.car-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.car-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.car-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.car-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #3b2f2f;
}

.car-card .car-description {
  font-size: 0.8rem;
  color: #5a5a5a;
  margin-bottom: 10px;
}

.car-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #5a5a5a;
  margin-bottom: 10px;
}

.car-features div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-features i {
  color: #a3c586; /* Icon color */
}

.book-now {
  background: #a3c586; /* Earthy green button */
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: block;
  width: 100%;
  text-align: center;
}

.book-now:hover {
  background: #8da96d; /* Slightly darker green */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .car-rental h2 {
    font-size: 1.8rem;
  }

  .car-rental .section-description {
    font-size: 0.9rem;
  }

  .car-card h3 {
    font-size: 0.9rem;
  }

  .car-card .car-description {
    font-size: 0.75rem;
  }

  .car-features {
    font-size: 0.75rem;
  }

  .book-now {
    font-size: 0.85rem;
  }
}


/* Packages Section */
.packages {
  padding: 60px 15px;
  background-color: #f5f1e3; /* Soft beige for natural feel */
  text-align: center;
}

.packages h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b2f2f; /* Earthy brown for heading */
}

.packages .section-description {
  font-size: 1rem;
  color: #5a5a5a; /* Neutral gray for description */
  margin-bottom: 30px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.package-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.package-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #3b2f2f;
}

.package-card .package-duration {
  font-size: 1rem;
  color: #a3c586; /* Earthy green for duration */
  margin-bottom: 10px;
}

.package-card .package-highlights {
  font-size: 0.9rem;
  color: #5a5a5a;
  margin-bottom: 15px;
}

.book-now {
  background: #a3c586; /* Earthy green button */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.book-now:hover {
  background: #8da96d; /* Slightly darker green */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .packages h2 {
    font-size: 1.8rem;
  }

  .packages .section-description {
    font-size: 0.9rem;
  }

  .package-card h3 {
    font-size: 1.2rem;
  }

  .package-card .package-duration {
    font-size: 0.9rem;
  }

  .package-card .package-highlights {
    font-size: 0.8rem;
  }

  .book-now {
    font-size: 0.9rem;
  }
}


/* Services Section */
.services {
  padding: 50px 15px;
  background: #f5f1e3;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  color: #3b2f2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: #a3c586; /* Earthy green for cards */
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-card i {
    font-size: 2.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 15px;
  background-color: #f5f1e3;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  color: #3b2f2f;
  margin-bottom: 30px;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: center;
}

.feature-card {
  background: #a3c586;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .feature-card i {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }
}

/* How to Book Section */
.how-to-book {
  padding: 60px 15px;
  background-color: #f5f1e3; /* Soft beige background */
  text-align: center;
}

.how-to-book h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #3b2f2f; /* Earthy brown for headings */
}

.how-to-book .section-description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #5a5a5a; /* Neutral dark gray */
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.step-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #a3c586; /* Earthy green */
  color: #fff;
  font-size: 1.5rem;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-weight: 700;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #3b2f2f; /* Earthy brown for headings */
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a5a5a; /* Neutral dark gray */
}

/* Responsive Design */
@media (max-width: 768px) {
  .how-to-book h1 {
    font-size: 2rem;
  }

  .how-to-book .section-description {
    font-size: 0.9rem;
  }

  .step-card h3 {
    font-size: 1.2rem;
  }

  .step-card p {
    font-size: 0.9rem;
  }
}



/* Booking Form Section */
.booking-form {
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Full viewport height */
  background-color: #f5f1e3; /* Soft beige for natural feel */
  text-align: center;
  opacity: 0; /* Initially hidden for animation */
  transform: translateY(50px); /* Start from slightly below */
  transition: opacity 1s ease, transform 1s ease; /* Smooth fade-in and slide-in */
}

.booking-form.animate-scroll {
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Slide to original position */
}

.booking-form .container {
  max-width: 500px; /* Limit the form's width */
  width: 100%; /* Ensure it scales properly */
  background: #fff; /* White background for contrast */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.booking-form h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #3b2f2f; /* Earthy brown for heading */
}

.booking-form .form-description {
  font-size: 1rem;
  color: #5a5a5a; /* Neutral gray for description */
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #3b2f2f; /* Earthy brown for labels */
}

.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #a3c586; /* Earthy green focus effect */
}

.submit-button {
  background: #a3c586; /* Earthy green button */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-button:hover {
  background: #8da96d; /* Slightly darker green */
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-form .container {
    padding: 15px;
  }

  .booking-form h2 {
    font-size: 1.8rem;
  }

  .booking-form .form-description {
    font-size: 0.9rem;
  }
}

/* Footer Section */
.footer {
  background-color: #3b2f2f; /* Deep earthy brown */
  color: #fff;
  padding: 40px 15px;
  text-align: center;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-branding {
  flex: 1;
  min-width: 200px;
}

.footer-branding h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #a3c586; /* Earthy green accent */
}

.footer-branding h2 .white-text {
  color: #fff; /* Make "Go" white */
}

.footer-branding p {
  font-size: 0.9rem;
  color: #f5f1e3;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #a3c586;
}

.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 10px;
  color: #a3c586;
}

.footer-social {
  flex: 1;
  min-width: 200px;
}

.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #a3c586;
}

.footer-social a {
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #a3c586;
}

/* Copyright Section */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #a3c586;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #f5f1e3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-branding h2 {
    font-size: 1.5rem;
  }

  .footer-links h3,
  .footer-contact h3,
  .footer-social h3 {
    font-size: 1rem;
  }

  .footer-links a,
  .footer-contact p,
  .footer-social a {
    font-size: 0.8rem;
  }
}