/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.8),
    rgba(0, 119, 182, 0.6)
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.hero-text {
  margin-bottom: 3rem;
  color: var(--white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
}

/* Search Engine */
.search-engine {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.search-tabs {
  display: flex;
  margin-bottom: 2rem;
  background: #f8fafc;
  border-radius: 10px;
  padding: 4px;
}

.tab-btn {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
}

.tab-btn:hover:not(.active) {
  background: rgba(0, 180, 216, 0.1);
  color: var(--primary-color);
}

.search-form {
  display: none;
}

.search-form.active {
  display: block;
}

.form-row {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  min-width: 150px;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

/* Promo Banner */
.promo-banner {
  padding: 5rem 0 0 0;
  /* margin: 2rem 0 0 0; */
  background-color: #fff;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.promo-content img {
  width: 100%;
}

.promo-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.promo-discount {
  font-size: 2rem;
  font-weight: 700;
  background: var(--white);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.promo-text h3 {
  margin: 0;
  font-size: 1.5rem;
}

.promo-text p {
  margin: 0;
  opacity: 0.9;
}

.promo-btn {
  padding: 12px 24px;
  background: var(--white);
  color: var(--accent-color);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Flights Section */
.flights-section {
  padding: 40px 0;
  background-color: #fff;
}

/* Flights Grid */
.flights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 24px;
}

/* Flight Card */
.flight-card {
  position: relative;
  background: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Badges */
.discount-badge {
  position: absolute;
  top: 15px;
  right: 18px;
  background: #07aabd;
  color: white;
  padding: 6px 12px;
  border-radius: 15px 0px 15px 0px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.lowest-price-badge {
  position: absolute;
  background: #70107b;
  color: white;
  padding: 4px 12px;
  border-radius: 0px 0px 10px 10px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* Main Content */
.flight-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

/* Left Side */
.flight-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.airline-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.airline-logo img {
  width: 43px;
  height: 100%;
  object-fit: contain;
}

.flight-details {
  flex: 1;
}

.flight-date {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.flight-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.route-codes {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1a1a1a;
}

.origin {
  font-size: 14px;
}

.arrow {
  color: #666;
  font-size: 12px;
}

.separator {
  color: #ccc;
  font-size: 12px;
}

.cities {
  color: #666;
  font-size: 14px;
}

.flight-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #666;
}

.direct {
  color: #1a1a1a;
  font-weight: 500;
}

.airline-name {
  color: #666;
}

/* Right Side */
.flight-right {
  background: #f8f9fa;
  flex-shrink: 0;
  padding: 15px 20px;
}

.pricing-section {
  text-align: right;
}

.original-price {
  text-align: center;
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-bottom: 2px;
  margin-top: 5px;
}

.current-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.current-price .price-amount {
  font-size: 28px;
  font-weight: 700;
  color: #70107b;
}

.current-price .currency {
  font-size: 16px;
  font-weight: 600;
  color: #70107b;
}

.original-price .price-amount {
  font-size: 16px;
}

.original-price .currency {
  font-size: 14px;
}

.price-note {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 10px !important;
    margin-top: 10px;
  }
  .flights-section {
    padding: 20px 0;
  }

  .flights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

.flight-content{
  padding: 0;
}

  .flight-left {
    width: 100%;
    gap: 12px;
  }

  .flight-right {
    width: 30%;
    padding: 30px 5px;
  }

  .pricing-section {
    text-align: center;
  }

  .current-price {
    justify-content: center;
  }

  .discount-badge,
  .lowest-price-badge {
    top: 0px;
  }

  .discount-badge {
    right: 0px;
    padding: 4px 10px;
    top: 0px;
  }

  .lowest-price-badge {
    left: 8px;
  }
}

@media (max-width: 540px) {
  .flights-grid {
    grid-template-columns: 1fr;
  }

  .flight-route {
    gap: 4px;
  }

  .route-codes {
    gap: 6px;
  }

  .cities {
    font-size: 13px;
  }

  .current-price .price-amount {
    font-size: 17px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .search-engine {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    min-width: 100%;
  }

  .search-btn {
    width: 100%;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .promo-text {
    flex-direction: column;
    gap: 0.5rem;
  }

  .flights-grid {
    grid-template-columns: 1fr;
  }
}

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

  .search-engine {
    padding: 1rem;
  }

  .tab-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .flight-card {
    padding: 1.5rem;
  }

  .flight-route {
    gap: 1rem;
  }

  .flight-icon::before,
  .flight-icon::after {
    display: none;
  }

  .promo-discount {
    font-size: 1.5rem;
  }

  .promo-text h3 {
    font-size: 1.2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.search-engine {
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
.tab-btn:focus,
.search-btn:focus,
.promo-btn:focus {
  outline: 3px solid rgba(0, 180, 216, 0.3);
  outline-offset: 2px;
}

/* Destinations Section */
.destinations-section {
  padding: 40px 0;
  background: #f8fafc;
}

/* Carousel Styles */
.destinations-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  color: #333;
}

.carousel-btn:hover {
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-wrapper {
  overflow: hidden;
}
.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.destinations-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.destination-card {
  position: relative;
  min-width: 350px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(119, 153, 190, 0) 0px,
    rgba(73, 124, 166, 0.37) 37%,
    rgba(6, 82, 132, 0.7) 100%
  );
  pointer-events: none; /* so it doesn’t block clicks */
}
.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 2rem 1.5rem 0rem;
}

.destination-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.destination-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  color: #fbbf24;
  font-weight: 500;
}
/* Responsive Design */
@media (max-width: 768px) {
  .promo-banner {
    padding: 2rem 0 0 0;
  }
  #myCarousel {
    display: none;
  }
  .destinations-carousel {
    flex-direction: column;
    gap: 1rem;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-wrapper {
    width: 100%;
  }

  .destinations-track {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .destinations-track::-webkit-scrollbar {
    display: none;
  }

  .destination-card {
    min-width: 250px;
    height: 300px;
  }
}

/* FAQ Content Styles */
.faq-section {
  padding: 40px 0;
  background-color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-content {
  background: white;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-header {
  background: linear-gradient(135deg, #07aabd, #17a2b8);
  color: white;
  padding: 24px 30px;
  margin: 0;
}

.faq-header h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

.faq-list {
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
  flex: 1;
  padding-right: 20px;
  line-height: 1.4;
}

.faq-toggle {
  color: #6c757d;
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8f9fa;
}

.faq-answer p {
  padding: 0 30px 20px 30px;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* FAQ Images Styles */
.faq-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-image-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  height: 280px;
  position: relative;
}

.faq-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.faq-button {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 20px;
  margin-bottom: -20px;
}

.faq-image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

.faq-image-1 {
  background-image: url("/images/destinations/Rectangle 7378.jpg");
  background-size: cover;
}

.faq-image-2 {
  background-image: url("/images/destinations/Rectangle 7379.jpg");
  background-size: cover;
}

.faq-image-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  width: 100%;
}

.faq-image-content h4 {
  text-align: center;
  color: white;
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.faq-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 25px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.faq-btn:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-header h2 {
    font-size: 20px;
  }

  .faq-question {
    padding: 16px 20px;
  }

  .faq-question h4 {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 16px 20px;
  }

  .faq-image-content {
    padding: 20px;
  }

  .faq-image-content h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-header {
    padding: 20px;
  }

  .faq-question {
    padding: 14px 20px;
  }

  .faq-image-card {
    height: 180px;
  }

  .faq-image-content h4 {
    font-size: 15px;
  }
}

/* Services Section */
.services-section {
  padding: 40px 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: start;
}

.service-item {
  overflow: hidden;
  height: 100%;
}

.service-image {
  text-align: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-content {
  padding: 30px;
  text-align: center;
}

.service-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.4;
}

.service-content p {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.6;
  margin: 0;
}

/* Airlines Section */
.airlines-section {
  padding: 40px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #70107b;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prev-btn {
  left: -25px;
}

.next-btn {
  right: -25px;
}

.airlines-carousel {
  display: flex;
  transition: transform 0.3s ease;
  width: max-content; /* Let it grow beyond visible area */
}

.airline-slide {
  flex: 0 0 25%;
  height: 120px;
  background: white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  border: 1px solid #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airline-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.airline-slide img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.airline-slide:hover img {
  filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-section,
  .destinations-section,
  .airlines-section {
    padding: 20px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0px !important;
  }

  .service-item {
    margin: 0 auto;
    max-width: 400px;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 25px;
  }

  .service-content h3 {
    font-size: 20px;
  }

  .service-content p {
    font-size: 15px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .carousel-container {
    max-width: 100%;
    margin: 0 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

 .prev-btn{
    display: none;

  }
  .next-btn{
    display: none;
  }

  .airline-slide {
    flex: 0 0 50%;
    height: 100px;
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }

  .carousel-container {
    margin: 0 5px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .prev-btn {
    left: -15px;
  }

  .next-btn {
    right: -15px;
  }

  .airline-slide {
    flex: 0 0 50%;
    height: 80px;
    margin: 0 2px;
  }
  
}

/* Animation effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-item {
  animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.service-item:nth-child(3) {
  animation-delay: 0.4s;
}

/* Mobile-specific fixes for destinations carousel */
@media (max-width: 768px) {
  .destinations-carousel {
    position: relative;
    overflow: hidden;
  }

  .carousel-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .destinations-track {
    display: flex;
    transition: transform 0.3s ease;
    width: max-content;
  }

  .destination-card {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 16px;
  }

  .destination-card:last-child {
    margin-right: 0;
  }

  /* Carousel buttons */
  .carousel-btn {
    display: none;
  }

 

  /* Services section mobile carousel */
  .services-section {
    overflow: hidden;
    position: relative;
  }

  .services-grid {
    display: flex;
    transition: transform 0.3s ease;
    width: max-content;
  }

  .service-item {
    flex: 0 0 auto;
    width: calc(100vw - 32px);
    margin-right: 16px;
    padding: 0 16px;
  }

  .service-item:last-child {
    margin-right: 0;
  }

  /* Services carousel navigation */
  .services-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
  }

  .services-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .services-nav button.active {
    background: #007bff;
  }

  /* Flights section mobile carousel */
  .flights-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 16px;
  }

  .flight-card {
    flex: 0 0 auto;
    width: calc(100vw - 48px);
    scroll-snap-align: start;
  }

  /* Hide scrollbar but keep functionality */
  .flights-grid::-webkit-scrollbar {
    display: none;
  }

  .flights-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.flight-link{
  text-decoration: none;
}

@media (min-width: 576px) {
  .container-destination {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-destination {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-destination {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-destination {
    max-width: 1500px;
  }
}
.container-destination {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}
