/* homepage.css */

#a5 {
  background-color: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#a7 {
  max-width: 1350px;
  width: 100%;
}

/* Deal Card */

.deal-card {
  display: flex;
  align-items: stretch;
  width: 90%;
  height: 160px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
}

.deal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image */

.deal-image {
  position: relative;
  flex: 0 0 110px;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Countdown */

.countdown {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e6f4ff;
  color: #000;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown i {
  color: #0C2140;
  font-size: 0.8rem;
}

/* Content */

.deal-content {
  flex: 1;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.deal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.deal-info {
  font-size: 0.85rem;
  color: #000;
  margin-bottom: 3px;
}

.deal-info i {
  margin-right: 6px;
  color: #000;
}

/* Price */

.price {
  font-size: 0.85rem;
  text-align: right;
  color: #555;
  margin-top: 4px;
}

.price span {
  color: #0C2140;
  font-weight: 700;
  font-size: 1rem;
}

/* Row center */

.row {
  justify-content: center;
}

/* Tablet */

@media (max-width: 992px) {
  .deal-card {
    width: 95%;
  }
}

/* Mobile */

@media (max-width: 768px) {

  #a7 {
    padding-left: 18px;
    padding-right: 18px;
  }

  .deal-card {
    width: 100%;
    height: auto;
  }

  .deal-image {
    flex: 0 0 90px;
  }

  .deal-title {
    font-size: 0.95rem;
  }

  .deal-info {
    font-size: 0.8rem;
  }

  .price span {
    font-size: 0.9rem;
  }

}

/*<<<<<<<<<<<<<<<<< Section A5 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
/* === Custom Card Styling === */
.destination-box {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  height: 90px;
  color: #000;
}

.destination-box:hover {
  transform: translateY(-3px);
}

.destination-img {
  width: 40%;
  height: 100%;
  object-fit: cover;
}

.destination-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.destination-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

/* === Responsive === */
@media (max-width: 768px) {
  .destination-box {
    flex-direction: column;
    height: auto;
  }

  .destination-img {
    width: 100%;
    height: 150px;
  }

  .destination-content {
    padding: 10px;
  }

  .destination-content h5 {
    font-size: 1rem;
  }
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<< Honeymoon Section >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/




/*<<<<<<<<<<<<<<<<<<< A7 >>>>>>>>>>>>>>>>>>>>*/
/* Unique CSS class names to avoid conflicts */
.travel-faq-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.travel-faq-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
  font-size: 2rem;
  position: relative;
}

.travel-faq-title:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  margin: 10px auto;
  border-radius: 2px;
}

.travel-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.travel-faq-item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.travel-faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.travel-faq-question {
  padding: 15px 20px;
  background: #0C2140;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.travel-faq-question:after {
  content: '+';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.travel-faq-item.active .travel-faq-question:after {
  transform: rotate(45deg);
  content: '-';
}

.travel-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: #555;
  line-height: 1.5;
  font-size: 0.9rem;
}

.travel-faq-item.active .travel-faq-answer {
  padding: 15px 20px;
}

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

  .travel-faq-title {
    font-size: 1.7rem;
  }

  .travel-faq-question {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .travel-faq-answer {
    padding: 0 15px;
  }

  .travel-faq-item.active .travel-faq-answer {
    padding: 12px 15px;
  }
}

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

  .travel-faq-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .travel-faq-question {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .travel-faq-answer {
    padding: 0 12px;
    font-size: 0.85rem;
  }

  .travel-faq-item.active .travel-faq-answer {
    padding: 10px 12px;
  }
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<,*/
/* -------------------- Container -------------------- */
#qx72lm {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

/* Form box */
#zv19np {
  background: #1C2D4A;
  border-radius: 18px;
  padding: 50px;
  max-width: 1300px;
  width: 100%;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

/* Header */
#lkr3vw {
  text-align: center;
  margin-bottom: 38px;
}

#lkr3vw h4 {
  color: #5AC1CB;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

#lkr3vw p {
  color: #ffffff;
  font-size: 23px;
}

/* Row layout */
#bht84f {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.qm45xn {
  flex: 1 1 calc(25% - 27px);
  /* 4 inputs equally spaced on desktop */
  position: relative;
  min-width: 200px;
  /* Prevent inputs from being too small */
}

/* Input styling */
.iw29ak {
  width: 100%;
  padding: 12px 38px 12px 14px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  box-sizing: border-box;
}

.iw29ak::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.iw29ak:focus {
  outline: none;
  border-color: #ffffff;
}

/* Icons inside inputs */
.om82ty {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}

/* Captcha */
#pw93jf {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#pw93jf span {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 5px;
}

/* Submit button */
#s8v14m {
  margin-top: 30px;
}

#s8v14m button {
  width: 100%;
  padding: 15px;
  border-radius: 11px;
  background: #5AC1CB;
  color: #ffffff;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

#s8v14m button:hover {
  background: #ffffff;
  color: #000000;
}

/* Terms */
#t6x28d {
  margin-top: 18px;
  color: #ffffff;
  font-size: 14px;
}

#t6x28d a {
  color: #7ED957;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  #qx72lm {
    padding: 20px 10px;
  }

  #bht84f {
    flex-direction: column;
    gap: 20px;
  }

  .qm45xn {
    flex: 1 1 100%;
  }

  #pw93jf {
    margin-top: 12px;
  }

  #lkr3vw p {
    font-size: 18px;
  }

  .iw29ak {
    width: 100%;
     padding: 12px 38px 12px 14px;
  }

  .iw29ak::placeholder {
    color: rgba(255, 255, 255, 0.7);
    padding-left: -70px;
  }

}



/* blogs section */
.pro-wrapper {
  background: #f5f7fa;
  padding: 40px 20px;
  display: flex;
  justify-content: center;

}

/* Main Container with scroll */
.pro-container {
  width: 1320px;
  background: #ffffff;
  padding: 45px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  max-height: 70vh;
  /* Container height restriction */
  overflow-y: auto;
  /* Vertical scroll */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Custom scrollbar styling */
.pro-container::-webkit-scrollbar {
  width: 8px;
}

.pro-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.pro-container::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.pro-container::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Header */
.pro-header {
  text-align: center;
  margin-bottom: 40px;
}

.pro-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0C213F;
}

.pro-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 8px;
}

/* Sections */
.pro-section {
  margin-bottom: 45px;
}

.pro-heading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0C213F;
  margin-bottom: 12px;
  padding-bottom: 6px;

}

.pro-text {
  color: #444;
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

/* List */
.pro-list {
  margin-top: 15px;
  padding-left: 18px;
  line-height: 1.7;
}

.pro-list li {
  margin-bottom: 10px;
  color: #333;
  padding-left: 5px;
}

/* Additional content for demonstration */
.pro-extra-content {
  margin-top: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #0C213F;
}

/* Responsive */
@media (max-width: 768px) {
  .pro-container {
    padding: 25px;
    max-height: 85vh;
    /* Slightly taller on mobile */
  }

  .pro-title {
    font-size: 1.8rem;
  }

  .pro-heading {
    font-size: 1.3rem;
  }

  .pro-text {
    font-size: 1rem;
  }
}

/* 🌴 Wrapper */
.hh-slider-wrapper {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 15px;
  position: relative;
}

.hh-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.hh-subtitle {
  color: #777;
  margin-bottom: 25px;
}






.hh-slider-container {
  position: relative;
  overflow: hidden;
}

.hh-slider {
  display: flex;
  gap: 20px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

.hh-slider a {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 13.33px);
}

.hh-destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.hh-destination-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.hh-destination-card:hover {
  transform: scale(1.03);
}

.hh-card-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.hh-price-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #0C2140;
  color: #fff;
  padding: 6px 15px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}

.hh-arrows {
  position: absolute;
  bottom: 0;
  right: 25px;
  display: flex;
  gap: 15px;
  z-index: 100;
  margin-top: 15px;
}

.hh-arrow-btn {
  background: black;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hh-arrow-btn:hover {
  background: #0C2140;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .hh-slider a {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .hh-slider a {
    flex: 0 0 100%;
  }

  .hh-title,
  .hh-subtitle {
    text-align: center;
  }

  .hh-arrows {
    bottom: 5px;
    right: 10px;
  }
}







/* blog section  */
.blogs-wrapper {
  padding: 70px 20px;
  display: flex;
  justify-content: center;
}

.blogs-container {
  max-width: 1320px;
  width: 100%;
}

.blogs-heading {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* ==== Grid ==== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* exactly 3 columns */
  gap: 30px;
}


@media (max-width: 992px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 576px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    /* 1 column on mobile */
  }
}


/* ==== Blog Item ==== */
.blog-item {
  position: relative;
  height: 370px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.blog-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
  filter: brightness(0.85);
}

.blog-item:hover .blog-bg {
  transform: scale(1.1);
  filter: brightness(0.65);
}

/* ==== Blog Content ==== */
.blog-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding: 25px 25px 30px;
  background: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.8));
  transition: all 0.4s ease;
}

.blog-title {
  font-size: 1.5rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.blog-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-bottom: 15px;
}

.blog-item:hover .blog-summary {
  opacity: 1;
  max-height: 100px;
}

.blog-link {
  display: inline-block;
  color: #00b4d8;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.blog-item:hover .blog-link {
  opacity: 1;
  transform: translateY(0);
}

.blog-link:hover {
  border-bottom: 2px solid #00b4d8;
}

/* ==== Responsive ==== */
@media (max-width: 768px) {
  .blog-item {
    height: 300px;
  }

  .blogs-heading {
    font-size: 2rem;
  }
}