/* ===== Full-Screen Hero Section ===== */
.trip-hero--section {
  position: relative;
  height: 50vh !important; /* Force your chosen height */
  min-height: unset !important; /* Remove inherited min-height */  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom:80px;
  margin-top:20px;
  border-top:3px solid #24b26f;
  border-bottom:3px solid #24b26f;
}
.hero--overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  z-index: 1;
}

.hero--content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.page--title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
}

.trip--rate {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.trip--rate svg {
  width: 30px;
  height: 30px;
  fill: #fcc419;
}

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


/* Fix slider height on mobile */
@media (max-width: 576px) {
  .gallery-slider-wrapper {
    height: 250px !important;
  }

  .gallery-slider-main-wrapper {
    min-height: 200px !important;
  }

  .gallery-slider-image {
    height: 100% !important;
    object-fit: cover;
  }

  /* Thumbnails container */
  .gallery-slider-thumbnails {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 5px 0;
    background: transparent !important; /* remove the red */
    height: auto !important; /* IMPORTANT */
  }

  /* Each thumbnail */
  .gallery-slider-thumbnail {
    width: 60px !important;   /* square */
    height: 60px !important;  /* square */
    border-radius: 6px;
    flex: 0 0 auto !important;
  }

  .gallery-slider-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



.gallery-slider-wrapper {
  display: flex;
  gap: 1rem;
  height: 500px;
  width: 100%;
	margin:10px
}

.gallery-slider-main-wrapper {
  flex: 1;
  border-radius: 1rem;
  position: relative;
}

.gallery-slider-main {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation */
.gallery-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
  border: none;
  padding: 0.75rem;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.gallery-slider-main-wrapper:hover .gallery-slider-nav {
  opacity: 1;
}

.gallery-slider-prev {
  left: 1rem;
}

.gallery-slider-next {
  right: 1rem;
}

/* Pagination Dots */
.gallery-slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.gallery-slider-dot {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  width: 0.5rem;
}

.gallery-slider-dot.active {
  width: 2rem;
  background: white;
}

/* Thumbnails */
.gallery-slider-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 12rem;
}

.gallery-slider-thumbnail {
  position: relative;
  flex: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
  background: none;
}

.gallery-slider-thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.gallery-slider-thumbnail.active {
  border: 3px solid #24b26f !important;
  box-shadow: 0 0 0 2px #24b26f;
  opacity: 1;
  transform: scale(1.05);
}

.gallery-slider-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video badge */
.gallery-slider-video-badge {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: white;
}

/* ---------- PAGE LAYOUT ---------- */

.page--title {
  font-size: 30px !important;
}

.trip-contain {
  width: 100%;
  max-width: 1400px;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap; /* allow stacking on smaller screens */
}

#tripGallerySlider {
  flex: 1;
  direction: ltr;
  min-width: 0;
}

.trip--summary {
  width: 350px;
  background-color: #fff !important;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex-shrink: 0;
  align-self: flex-start;
	height:500px
}

/* ---------- RESPONSIVE FIXES ---------- */

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .trip-contain {
    flex-direction: column;
	  padding:10px;
    gap: 30px;
  }

  .trip--summary {
    width: 100%;
    order: 2;
  }

  #tripGallerySlider {
    order: 1;
  }

  .gallery-slider-wrapper {
    flex-direction: column;
    height: auto;
  }

  .gallery-slider-main-wrapper {
    min-height: 250px;
  }

  .gallery-slider-thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .gallery-slider-thumbnail {
    height: 100px;
    flex: 0 0 100px;
  }
}

/* ===== Trip Summary Modern Card ===== */
.modern-summary {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 20px !important;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 380px;
}

.modern-summary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.07);
}

.summary--title {
  font-size: 1.3rem;
  color: #24b26f;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.summary--list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.summary--item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f1f1;
}

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

.summary--icon {
  width: 50px;
  height: 50px;
  background: rgba(36,178,111,0.1);
  color: #24b26f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.summary--item:hover .summary--icon {
  background: #24b26f;
  color: #fff;
}

.summary--text {
  flex: 1;
}

.summary--text strong {
  display: block;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.summary--text p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.summary--text .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #24b26f;
}

.summary--text .price span {
  display: block;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
}

/* ====== Modern Green Button ====== */
.modern-btn {
  display: inline-block;
  background: #24b26f;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(36,178,111,0.3);
  margin-top: 1rem;
}

.modern-btn:hover {
  background: #1f9a61;
  box-shadow: 0 8px 25px rgba(36,178,111,0.4);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .modern-summary {
    max-width: 100%;
    padding: 1.5rem;
  }

  .summary--item {
    gap: 0.75rem;
  }

  .summary--icon {
    width: 44px;
    height: 44px;
  }
}
