* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
}

.header {
  background-color: #fff;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 60px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 1.5em;
  font-weight: bold;
}

.nav {
  display: flex;
}

.nav a {
  color: #555;
  text-decoration: none;
  margin-left: 20px;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.nav a:hover {
  background-color: #f68712;
  color: #fff;
}

.nav i {
  margin-right: 5px;
}

.contact-number {
  font-weight: bold;
  color: #fff;
}

.hamburger-menu {
  display: none;
  /* Hidden by default on larger screens */
  font-size: 1.5em;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 60px;
  /* Adjust based on header height */
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.mobile-nav a {
  color: #555;
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav i {
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .contact-number {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}

.mobile-nav.open {
  display: flex;
}

.contact-number {
  color: #f68712;
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .contact-number {
    display: none;

  }
}



.contact-call {
  background-color: #f68712;
  color: #fff;
  text-align: center;
  /* padding: 12px 20px; */
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 400px;
  z-index: 100;
  /* display: flex; */
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px 0px 10px 0px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.call-offer {
  text-align: start;
  background-color: #f68712;
  padding: 10px 10px;
  border-radius: 10px 0px 0px 0px;
  font-size: 16px;
  font-weight: 500;

}

.call-offer i {
  margin-right: 10px;
  font-size: 20px;

}

.contact-calls {
  text-align: start;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-call:hover {
  transform: translateX(-50%) scale(1.03);
}

.call-icon {
  width: 60px;
  margin-right: 15px;
}

.call-text h3 {
  margin: 0;
  font-size: 1em;
}

.call-text p {
  margin: 3px 0 0 0;
  font-size: 1.1em;
  font-weight: bold;
}

a {
  text-decoration: none;
}

@media (min-width: 900px) {
  .contact-call {
    display: none;
  }
}

@media (min-width: 768px) {
  .spirit-card {
    display: none;
  }
}

/* ==========================================header end====================================== */

.hero {
  background: url('images/dubai-city.jpg') no-repeat center center/cover;
  /* min-height: 100vh; */
  color: white;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px 20px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-content {
  text-align: center;
  margin-bottom: 30px;
}

.text-content h1 {
  font-size: 40px;
  font-weight: 700;
}

.text-content p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #eee;
}

.search-box {
  background: white;
  color: black;
  padding: 20px;
  border-radius: 12px;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.trip-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;

}

.trip-types button {
  background: #f0f0f0;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px 0px 10px 0px;

}
.input-passenger{
width: 40px;
}
.trip-types .active {
  background-color: #f68712;
  color: white;
  border-radius: 10px 0px 10px 0px;
}

.inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-bottom: 15px;


}

.input-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 500;
  width: 100%;

}

.input-box {
  background: #f2f2f2;
  display: flex;
  align-items: center;
  border-radius: 10px;

}

.input-box i {
  color: #fff;
  padding: 20px 15px;
  border-right: solid #f68712;
  background-color: #f68712;
  border-radius: 10px 0px 0px 0px;

}

.input-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  padding: 19px 15px;
  border-radius: 0px 0px 10px 0px;
  ;
  border: 1px solid #0a145c;
  width: 100%;

}

.passenger-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  align-items: center;

}

.passenger-class {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  padding: 15px;
  border-radius: 8px;
  font-size: 14px;
  border-radius: 10px 0px 10px 0px;

}

.passenger-class select {
  border: none;
  background: transparent;
  font-size: 14px;
  outline: none;

}

.search-btn {
  background: #f68712;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px 0px 10px 0px;

}

@media screen and (max-width: 768px) {
  .text-content h1 {
    font-size: 1.8rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .passenger-row {
    flex-direction: column;
    align-items: stretch;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================hero end====================================== */

.features {
  padding: 40px 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.card-flexs {
  display: flex;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 20px;
}

/* Highlight Card */
.card.highlight {
  grid-column: span 2;
  /* width: 50%; */
  display: flex;
  background: white;
  border-radius: 12px;
  margin-right: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.card-left {
  flex-shrink: 0;
  background: #e8f0ff;
  padding: 20px;
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #f68712;
  width: 40%;
}

.card-content {
  padding-left: 20px;
  flex: 1;
  text-align: start;
  padding: 20px;

}
.card-content div {
  font-size: .875em;
  font-family: Rubik, sans-serif;
  color: #060606;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;

}

.badges {
  background: #f68712;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: inline-block;
}

.card-content h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #444;
}

.card-content ul {
  margin: 10px 0;
  padding-left: 0;
  list-style: none;
}

.card-content ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #333;
  padding-top: 10px;
}

.card-content .btn-outline {
  padding: 8px 16px;
  border: 1px solid #f68712;
  background: transparent;
  color: #f68712;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: 10px;
}

/* Regular Card */

.card {
  background: white;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #f68712;
}

.shield {
  margin-top: 10px;
  background-color: rgb(254, 223, 183);
  padding: 16px;
  border-radius: 50%;
}

.support-call {
  background-color: rgb(254, 235, 183);
  padding: 16px;
  border-radius: 50%;
}

.fa-crown {
  margin-top: 10px;
  background-color: rgb(183, 254, 185);
  padding: 16px;
  border-radius: 50%;
}

.icon.yellow {
  color: #f4b400;
  padding: 10px;
  border-radius: 100%;

}

.icon.green {
  color: #34a853;
}

.icon.white {
  color: white;
}

.card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  font-size: .875em;
  padding: 0px 20px;
  font-family: Rubik, sans-serif;
  color: #060606;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}

/* Concierge Contact */
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 20px;

}

/* VIP Progress */
.progress-bar {
  background: #e0e0e0;
  height: 6px;
  border-radius: 4px;
  margin-top: 12px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.progress {
  height: 6px;
  background: #34a853;
  border-radius: 4px;

}

/* CTA */
.card.cta {
  background: #f68712;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card.cta .btn-primary {
  background: white;
  color: #f68712;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;

}

/* Responsive */
@media screen and (max-width: 768px) {
  .features {
    padding: 20px;

  }

  .card-flexs {
    flex-direction: column;
  }

  .card.highlight {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }

  .card-content {
    padding: 20px 20px;
  }

  .card-left {
    border-radius: 12px 12px 0 0;
    width: 100%;
    padding: 10px 10px;
  }

  .card p {
    padding: 20px 20px;

  }
}


/* ==========================================features cards end====================================== */


.routes-section {
  padding: 20px 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;

}

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: start;

}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  text-align: start;

}

.cards-booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.route-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: 0.3s;
}

.route-card:hover {
  transform: translateY(-4px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #e9f1ff;
  font-size: 0.9rem;
}

.badge {
  background: #f68712;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
}

.airline {
  color: #444;
}

.route {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 35px 0px;
}

.route h3 {
  font-size: 1.5rem;
  text-align: start;
}

.route p {
  font-size: 0.85rem;
  color: #555;
}

.flight-icon {
  color: #f68712;
  font-size: 1.2rem;
}

.card-bottom {
  border-top: 1px solid #eee;
  padding: 16px;
  text-align: left;
}

.card-bottom p {
  margin-bottom: 10px;
}


.price-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0px;
}

.price-flex .price {
  font-size: 1.2em;
  font-weight: bold;
  color: #f68712;
  margin-top: 4px;
}

.price-flex p {
  margin: 0;
}

.book-btn {
  background: #f68712;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}


.info {
  font-size: 0.8rem;
  color: #555;
  display: flex;
  gap: 20px;
  align-items: center;
}

.view-all {
  margin-top: 30px;
  display: flex;
  justify-content: end;
}

.view-btn {
  background: #fff;
  border: 2px solid #f68712;
  color: #f68712;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-btn:hover {
  background: #f68712;
  color: white;
}

@media(max-width: 768px) {
  .routes-section {
    padding: 20px 20px;

  }

}

/* ==========================================booking cards end====================================== */


.places-section {
  padding: 20px 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.place-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.place-card.large {
  grid-column: span 2;
  flex-direction: row;
  min-height: 420px;
}

.place-card.large .image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.place-card.small .image {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.location {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: white;
  text-align: left;
}

.location h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.location p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.prices {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: #f68712;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.pricess {
  bottom: 10px;
  right: 12px;
  background: #f68712;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
}

.details {
  padding: 16px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.details h3 {
  margin-top: -20px;
  font-size: 1.5rem;
}

.details h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}


.ptag1 {
  font-size: 1rem;
  color: #001;
  line-height: 25px;
}

.ptag2 {
  font-size: 0.9rem;
  color: #555;
  margin: 10px 0;
}

.info {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  width: fit-content;
  min-width: 60px;
  text-align: center;
  user-select: none;
  cursor: default;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tag.winter {
  background-color: #e0f4ff;
  color: #f68712;
}

.tag.cultural {
  background-color: #fff4e5;
  color: #d81b60;
}

.tag.nature {
  background-color: #b9fab3;
  color: #2e7d32;
}

.tag.beach {
  background-color: #f7d6a5;
  color: #f4960a;
}

@media (max-width: 600px) {
  .tag {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 14px;
    min-width: 50px;
  }
}

.explore-btn {
  background: #f68712;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view-btn {
  background: #e3f2fd;
  color: #f68712;
  border: none;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
}

.price-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

@media(max-width: 768px) {
  .places-section {
    padding: 40px 20px;

  }

  .place-card.large {
    flex-direction: column;
    grid-column: span 1;
  }
}

/* ========================================================================= */

.travel-experience {
  background: linear-gradient(108.3deg, #fff 22.5%, #f68712 22.5%);
  padding: 60px 68px;
}

.content {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.text {
  flex: 1 1 500px;
  color: #111;
}

.label {
  background: #e1ecfb;
  color: #f68712;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 10px;
  display: inline-block;
}

.text h1 {
  font-size: 3rem;
  font-weight: 700;
}

.text h2 {
  color: #f68712;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.featuress {
  list-style: none;
  margin-bottom: 24px;
}

.featuress li {
  margin-bottom: 16px;
  color: #111;
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.featuress i {
  color: #fff;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #f68712;
  padding: 15px;
  float: left;
}

.featuress span {
  color: #222;
  font-size: .9rem;
  font-weight: 400;
}

.description {
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 90%;
  margin: 10px 0px;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.stats:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}


.stat {
  background: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: start;
  flex: 1 1 120px;
}

.stat strong {
  font-size: 1.5rem;
  color: #f68712;
  display: block;
}

.stat span {
  font-size: 0.85rem;
  color: #555;
}


.image-block {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 4 / 4;
  /* Maintains aspect ratio */
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 15px solid #fff;
  border-radius: 20px;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}


.testimonial {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 250px;
}

.testimonial i {
  color: #007bff;
  margin-bottom: 6px;
}

.testimonial p {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #333;
}

.testimonial .author {
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 1024px) {
  .travel-experience {
    background: linear-gradient(100.8deg, #fff 35.4%, #0066ff 35.4%);
    padding: 40px 20px;

  }

  .content {
    flex-direction: column;
    text-align: center;
  }

  .text {
    text-align: left;
  }

  .image-block {
    order: -1;
  }

  .testimonial {
    bottom: 10px;
    left: 10px;
  }
}

/* ==============================================footer start====================== */

.footer {
  background-color: #042651;
  color: #fff;
  padding: 40px 30px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col p {
  text-align: start;
  font-size: 16px;
  line-height: 30px;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 18px;
  color: #fff;
  /* border-bottom: 2px solid #1e90ff; */
  /* display: inline-block; */
  padding-bottom: 4px;
  text-align: start;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0px;
  text-align: start;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #1e90ff;
}



.contact-info i {
  color: #d4780e;
  margin-right: 8px;
}


.subscribe-box input[type="email"] {
  width: 100%;
  padding: 15px 50px 15px 15px;
  /* extra right padding for button space */
  border: none;
  border-radius: 5px;
  font-size: 14px;
  box-sizing: border-box;
}

.subscribe-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.subscribe-box button {
  position: absolute;
  top: 48%;
  right: 5px;
  transform: translateY(-50%);
  background-color: #f68712;
  border: none;
  color: white;
  padding: 10px 12px;
  border-radius: 5px;
  cursor: pointer;
  height: 80%;
}


.checkbox {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.checkbox input {
  margin-right: 6px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 40px;
  gap: 30px;
}

.social-icons i {
  background-color: #2a2f36;
  border-radius: 50%;
  padding: 10px;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 5px;
}

.social-icons i:hover {
  background-color: #e6800b;
}

.payments h4 {
  margin-bottom: 10px;
  text-align: center;
}

.payment-icons img {
  width: 35px;
  margin-right: 3px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
}

.hr-line{
  margin-top: 20px;
  font-size: 2px;
  border-bottom: 1px solid #6f6f6f;

}
.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-col {
    flex: 1 1 120px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .subscribe-box {
    flex-direction: column;
  }

  .subscribe-box input {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 5px;
  }

  .subscribe-box button {
    width: 12%;
    border-radius: 5px;
    top: 42%;
  }
}

/* ==============================about ============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 00px;
}

/* Contact Banner */
.contact-banner {
  background-image: url('images/bg-banner.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

.contact-banner .container h1 {
  margin-bottom: 10px;
  font-size: 2.5em;
}

/* ==========================================privacy=================================== */


.policy-container {
  max-width: 800px;
  background: #fff;
  margin: 40px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  color: #031d40;
  font-size: 1.8em;
  margin-bottom: 10px;
  text-align: center;
}

.policy-container .intro {
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
  color: #4a4949;
}

.highlight {
  color: #031d40;
}

.section {
  display: flex;
  align-items: flex-start;
  margin-top: 25px;
  gap: 15px;
}

.icon {
  font-size: 22px;
  color: #031d40;
  margin-top: 5px;
  flex-shrink: 0;
}

.section h2 {
  margin: 0 0 6px;
  font-size: 1.2em;
  color: #031d40;
}

.section p {
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .section {
    flex-direction: column;
  }

  .icon {
    margin-bottom: 8px;
  }
}

/* =====================================contact=================================== */


.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1.1rem;
  color: #6b7280;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-card h3 {
  margin-bottom: 10px;
  font-weight: bold;
}

.info-card a {
  color: #f68712;
  text-decoration: none;
}

.contact-form {
  flex: 1 1 600px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 15px;
}

.contact-form button {
  background-color: #b91c1c;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    flex-direction: column;
  }
}

/* ===================================expedia======================================== */


.container {
  /* max-width: 1000px; */
  padding: 40px;
}

.main-title {
  font-size: 32px;
  color: #051864;
  margin-bottom: 10px;
  text-align: start;
}

.section-title {
  font-size: 24px;
  color: #f68712;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1f1e1e;
  text-align: start;

}

.description {
  font-size: 18px;
  line-height: 1.8;
  text-align: start;

}

/* =======================================model======================================= */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.6); */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}


 .card-wrapper {
  display: flex;
  justify-content: center;  /* Horizontal centering */
  align-items: center;      /* Vertical centering */
  /* height: 100vh;   */
}
 .spirit-card {
  background: white;
  max-width: 400px;
  width: 90%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  padding: 20px 10px;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.spirit-header {
  background: linear-gradient(to right, #91560e, #f68712);
  padding: 20px;
  text-align: center;
  color: white;
}

.spirit-header img {
  max-height: 40px;
  margin-bottom: 10px;
}

.spirit-title {
  font-weight: bold;
  font-size: 18px;
}

.spirit-title .highlight {
  color: #ffc107;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
  margin: 10px;
  border-radius: 10px;
  font-size: 14px;
}

.call-box i {
  font-size: 24px;
  color: #f68712;
}

.call-number {
  font-weight: bold;
  font-size: 16px;
}

.call-text {
  color: #555;
}

.support-strip {
  background: #f0f0f0;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  margin: 10px;
}

.support-strip i {
  color: #f68712;
  margin-right: 5px;
}

.profile-section {
  text-align: center;
  margin: 10px 0;
}

.profile-section img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #f68712;
}

.button-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px;
  margin: 15px 0;
}

.button-grid button {
  background-color: white;
  color: #f68712;
  border: 2px solid #f68712;
  padding: 10px 5px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  cursor: pointer;
}

.deal-banner {
  background-color: #ffc107;
  padding: 10px 16px;
  text-align: center;
  font-size: 14px;
  /* border-radius: 0 0 15px 15px; */
  color: black;
  font-weight: bold;
}

.deal-text {
  margin-bottom: 10px;
}

.deal-call {
  background-color: white;
  color: #f68712;
  padding: 10px;
  border-radius: 10px;
  display: inline-block;
  font-weight: bold;
}

.deal-call i {
  margin-right: 6px;
}

/* .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  color: #333;
  background: #f0f0f0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
} */

@media (max-width: 1440px) {
  .modal.show-on-mobile {
    display: flex;
  }
}
/* CALL BUTTON */
.call-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ef5a07;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

.call-button i {
  margin-right: 8px;
}


/* ============================search-flight================================ */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
  backdrop-filter: blur(4px);           /* Optional blur effect */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fly {
  0% { transform: translateX(0) rotate(0deg); }
  50% { transform: translateX(20px) translateY(-10px) rotate(10deg); }
  100% { transform: translateX(0) rotate(0deg); }
}


.search-loading-box{
  margin-left: 15%;
  margin-right: 15%;
  width: 70%;
  background-color:  white;
  border-radius: 20px;

}
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f68712;
  color: white;
  padding: 1.5rem 1rem;
  flex-wrap: wrap;
  text-align: center;
  border-radius: 20px 20px 0px 0px;

}

.column {
  flex: 1 1 150px;
}

.column h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.column h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.column p {
  font-size: 1rem;
  margin-top: 4px;
}

.plane-icon {
  font-size: 2rem;
  margin: 0 1rem;
}

/* OFFER SECTION */
.offer-section {
  max-width: 700px;
  margin: 1.5rem auto;
  background-color: #f7f9fc;
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.offer-label {
  color: #d32f2f;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.offer-label i {
  margin-right: 0.5rem;
}

.offer-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* LOADER */
.loader {
  width: 30px;
  height: 30px;
  margin: 1rem auto;
  border: 4px solid #007bff;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/* CALL BUTTON */
.call-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #ef5a07;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
}

.call-button i {
  margin-right: 8px;
}

/* DETAILS SECTION */
.details-section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 1rem;
  background-color: #f1f1f1;
  text-align: center;
  border-radius: 0px 0px 20px 20px;

}

.detail-box {
  flex: 1 1 180px;
  margin: 0.5rem;
}

.detail-box p {
  font-size: 0.95rem;
  color: #555;
}

.detail-box strong {
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .search-loading-box{
  margin-left: 10%;
  margin-right: 10%;
  width: 80%;
}
  .top-section {
    flex-direction: row;
     padding: 1rem;

  }
  .column {
  flex: 1 1 10px;
}

  .details-section {
    flex-direction: row;
  }
  .detail-box {
  flex: 1 1 18px;
  margin: 0.5rem;
}

  .call-button {
    width: 100%;
    max-width: 300px;
  }
}
/* ===============================search-result-display============================= */
.search-result{
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.no-flights-container {
  max-width: 500px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.no-flights-img {
  width: 150px;
  margin-bottom: 20px;
}

h1 {
  /* color: #0070f3; */
  font-size: 24px;
  margin-bottom: 10px;
}

.subtext {
  color: #555;
  font-size: 16px;
  margin-bottom: 15px;
}

.route {
  margin-bottom: 20px;
  font-size: 16px;
}

.tag {
  background: #f1f1f1;
  border-radius: 8px;
  padding: 4px 10px;
  margin: 0 5px;
  font-weight: bold;
  display: inline-block;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.help-section {
  margin-bottom: 30px;
}

.help-title {
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

.call-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.call-btn .phone-icon {
  margin-right: 8px;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-btn,
.search-btn {
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-btn {
  background-color: #042651;
  color: white;
}



.search-btns {
  border: 1px solid #0070f3;
  background: white;
  color: #0070f3;
  border-radius: 5px;
}
.search-btns:hover  {
  background: #0070f3;
  color: white;
}


.icon {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (min-width: 480px) {
  .action-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .action-buttons button {
    width: 45%;
  }
}