.bottomContainer {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px; /* Reduced margin for better alignment */
  padding: 20px; /* Added padding for spacing inside the container */
  position: relative; /* Ensures proper stacking context */
}

.header__title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.header__subtitle {
  color: #cccccc;
  font-size: 1.1rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Adjusted spacing between grid items */
}

.city-card {
  background: white;
  overflow: hidden;
  display: flex;
  height: 80px;
  border-radius: 0px 5px 5px 0px;
  transition: transform 0.2s;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Added shadow for better aesthetics */
}

.city-card__image {
  width: 40%;
  object-fit: cover;
}

.city-card__content {
  width: 60%;
  padding: 10px; /* Adjusted padding */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-card__label {
  color: #666;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.city-card__city {
  color: #000;
  font-size: 1.25rem;
  font-weight: 600;
}



  @media (max-width: 1024px) {
    .city-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .city-grid {
      grid-template-columns: 1fr;
    }


    .header__title {
      font-size: 2rem;
    }
  }

  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cards_section {
    background-color: #1a0033;
    color: white;
    padding: 2rem;
}

/* Common Carousel Styles */
.carousel-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
}

.carousel-nav {
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin: 1%;
}

.carousel-nav:hover{
  background-color: antiquewhite;
}

.destinationButton{
  display: flex;
  justify-content: end;
  margin: 4%;
}

.carouselNavButton{
  margin: 3%;
  padding: 0% 2% 0% 0%;
  display: flex;
  justify-content: end;
}


.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

/* Destination Carousel Specific */
.destination-card {
    flex: 0 0 calc(25% - 0.75rem);
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.destination-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.destination-content {
    padding: 1rem;
    color: black;
}

.destination-city {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.destination-info {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.destination-price {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Feature Carousel Specific */
.feature-card {
    flex: 0 0 calc(25% - 0.75rem);
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    color: black;
    min-height: 280px;
}

.feature-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    display: block;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .destination-card, .feature-card {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

@media (max-width: 768px) {
    .destination-card, .feature-card {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 480px) {
    .destination-card, .feature-card {
        flex: 0 0 100%;
    }
}








.hero {
  position: relative;
  min-height: 400px;
  padding: 60px 24px;
  background: linear-gradient(45deg, #1a0b2e, #2a1b3e);
  overflow: hidden;
}

.content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.top h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
  font-weight: 600;
}

.top p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}

.smoke {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.1), transparent 60%);
  filter: blur(60px);
  animation: smoke 8s infinite alternate;
}

.fan {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.fan-segment {
  position: absolute;
  width: 40px;
  height: 200px;
  left: 50%;
  top: 50%;
  transform-origin: bottom center;
  background: #ff7b00;
}

@keyframes smoke {
  0% {
      transform: translate(5%, 5%) scale(1);
      opacity: 0.5;
  }
  100% {
      transform: translate(-5%, -5%) scale(1.1);
      opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero {
      padding: 40px 20px;
      min-height: 300px;
  }

  .top h1 {
      font-size: 36px;
  }

  .top p {
      font-size: 16px;
  }

  .fan {
      width: 300px;
      height: 300px;
      right: -150px;
  }
}

.helpContainer {
  max-width: 900px;
  margin: 0 auto;
}

.warning p{
  color: white;
}

.FNQ input{
  width: 100%;
  padding: 13px;
  border-radius: 5px;
}

.helpContainer h1 {
  color: white;
  font-size: 24px;
  margin-bottom: 32px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: white;
  padding: 10px 15px 0px 10px;
  border-radius: 5px;
}

.accordion-item {
  border-bottom: 1px solid #1a0b2e;
}

.accordion-button {
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  text-align: left;
  color: #432072;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion-button:hover {
  opacity: 0.9;
}

.accordion-button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid#1a0b2e;
  border-bottom: 2px solid#1a0b2e;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  transform: rotate(-135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #1a0b2e;
  padding: 0 18px; /* Only horizontal padding */
  font-size: 14px;
  margin-bottom: 15px;
}

.accordion-content h1{
  color: #5b25a1;
  font-size: 13px;
  margin-bottom: 3px;
}

@media (max-width: 768px) {

  .accordion-button {
    padding: 12px;
    font-size: 11px;
  }
}

.contact{
  margin: 10%;
}

.contact h1{
  color: white;
}
.contact p{
  color: white;
}
.contact a{
  color: rgb(81, 107, 253);
  text-decoration: none;
  font-weight:500;
}

.couponContainer{
  margin: 10%;
}
.coupon{
  color: white;
}

.coupon a{
  color: #1c82e0;
  text-decoration: none;
}
