/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #F18A11;
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ffd700;
}

.banner {
  margin-top: 70px;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 800px;
}

form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

form input,
form select {
  flex: 1;
  padding: 10px;
  font-size: 16px;
}

form input[type="submit"] {
  background-color: #F18A11;
  color: #fff;
  border: none;
  cursor: pointer;
}

form input[type="submit"]:hover {
  background-color: #d8760f;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.destination img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.destination h3 {
  margin: 10px 0 5px;
}

.why-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.why-us div {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.testimonial {
  max-width: 800px;
  margin: 20px auto;
  background: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
}

.footer-cols {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  background-color: #F18A11;
  color: white;
}

.footer-cols div {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-cols ul {
  list-style: none;
  padding: 0;
}

.footer-cols a {
  color: white;
  text-decoration: none;
}

.disclaimer {
  background: #c8720f;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

.payments {
  background: #f0f0f0;
  text-align: center;
  padding: 15px;
}

.payments img {
  margin: 0 10px;
  height: 24px;
}

copyright {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  background: #e1e1e1;
}




 @media (max-width: 768px) {
    .destinations {
      flex-direction: column !important;
      align-items: center !important;
    }

    .destination {
      flex: 0 0 100% !important;
      max-width: 100% !important;
      flex-wrap: wrap !important;
      justify-content: flex-start !important;
    }

    .destination img {
      width: 100px !important;
      height: 100px !important;
      margin-bottom: 10px;
    }

    .destination div {
      width: 100% !important;
      padding-right: 0 !important;
      text-align: center !important;
    }
  }
