.trip-hero {
  position: relative;
  width: 100%;
  height: calc(80vh - 80px);
  margin-top: 80px;
  overflow: hidden;
}


/* SLIDER */
.trip-hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* SLIDE */
.trip-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trip-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.trip-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.trip-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.25)
  );
  pointer-events: none;
}

/* CONTENT */
.trip-hero__content {
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 600px;
}

.trip-hero__title {
  font-size: 42px;
  margin-bottom: 16px;
}

.trip-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
}

/* CTA */
.trip-hero__cta {
  position: absolute;
  left: 80px;
  bottom: 80px;
}

.trip-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: linear-gradient(180deg, #40e0d0, #2a9f9d);
  color: #000;
}

/* NAVIGATION */
.trip-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.trip-hero__nav--prev { left: 20px; }
.trip-hero__nav--next { right: 20px; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .trip-hero__content,
  .trip-hero__cta {
    left: 40px;
  }

  .trip-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .trip-hero {
    height: 85vh;
  }

  .trip-hero__content,
  .trip-hero__cta {
    left: 20px;
    right: 20px;
  }

  .trip-hero__title {
    font-size: 28px;
  }

  .trip-hero__subtitle {
    font-size: 16px;
  }
}


/* ================================
   DESTINATION EXPLORE
================================ */
.destination-explore {
  padding: 5rem 0;
}

/* ================================
   GRID LAYOUT
================================ */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Span two columns */
.destination-card.span-2 {
  grid-column: span 2;
}

/* ================================
   CARD
================================ */
.destination-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* ================================
   IMAGE
================================ */
.destination-img-wrap {
  position: relative;
  height: 220px;
}

.destination-card.span-2 .destination-img-wrap {
  height: 260px;
}

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

/* ================================
   HEART ICON (IMAGE)
================================ */
.fav-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fav-icon img {
  width: 14px;
  height: 14px;
  display: block;
}

/* ================================
   CONTENT
================================ */
.destination-content {
  padding: 14px 16px;
  position: relative;
}

.destination-content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.destination-content p {
  font-size: 12px;
  color: #8a8a8a;
  margin: 0;
}

.destination-content .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #c2c2c2;
}

/* ================================
   RESPONSIVE
================================ */

/* TABLET */
@media (max-width: 991px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card.span-2 {
    grid-column: span 2;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card.span-2 {
    grid-column: span 1;
  }

  .destination-img-wrap,
  .destination-card.span-2 .destination-img-wrap {
    height: 190px;
  }
}




/* ================================
   ADVENTURE SECTION
================================ */
.adventure-section {
  padding: 5rem 0;
  background: var(--background);
}

/* ================================
   ACTIVITY GRID
================================ */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.activity-card {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

/* ICON */
.activity-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* TEXT */
.activity-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #1c1c1c;
}

/* ================================
   IMAGE BLOCK
================================ */
.adventure-image {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.adventure-image.tall {
  height: 420px;
}

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

/* ================================
   RESPONSIVE
================================ */

/* LARGE DESKTOP */
@media (min-width: 1200px) {
  .adventure-image.tall {
    height: 425px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .adventure-section {
    padding: 4rem 0;
  }

  .activity-grid {
    gap: 16px;
  }

  .activity-card {
    padding: 18px;
  }

  .adventure-image.tall {
    height: 360px;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }

  .activity-card h5 {
    font-size: 14px;
  }

  .activity-icon {
    width: 42px;
    height: 42px;
  }

  .activity-icon img {
    width: 20px;
    height: 20px;
  }

  .adventure-image.tall {
    height: 300px;
    border-radius: 20px;
  }
}


/* ================================
   ABOUT TREKER SECTION
================================ */
.about-treker {
  padding: 5rem 0;
  background: #ffffff;
}

/* ================================
   LEFT IMAGE CARD
================================ */
.about-image-card {
  padding: 14px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #ffffff;
}

.about-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10px;
}

/* ================================
   DESCRIPTION
================================ */
.about-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
}

/* ================================
   SUB HEADING
================================ */
.about-subheading {
  font-size: 18px;
  font-weight: 700;
  color: #0b0b1f;
  margin-bottom: 20px;
  position: relative;
  padding-left: 14px;
}

.about-subheading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: var(--secondary-color, #1ecad3);
  border-radius: 2px;
}

/* ================================
   INFO BOX (TWO ULs)
================================ */
.about-info-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ================================
   LIST CARD
================================ */
.about-list {
  list-style: none;
  padding: 24px;
  margin: 0;
  background: #f7fbfc;
  border: 1px solid #e6f2f4;
  border-radius: 10px;
}

.about-list li {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  margin-bottom: 14px;
  color: #222;
  line-height: 1.5;
}

.about-list li:last-child {
  margin-bottom: 0;
}

/* ================================
   CHECK ICON (PURE CSS)
================================ */
.about-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: #ffffff;
  color: var(--secondary-color, #1ecad3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .about-image-card img {
    height: 360px;
  }

  .about-info-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .about-treker {
    padding: 3.5rem 0;
  }

  .about-image-card img {
    height: 300px;
  }

  .about-desc {
    font-size: 16px;
  }
}


/* ================================
   IMAGE TEXT SECTION
================================ */
.image-text-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.image-text-section .container{
    max-width: 1800px;
}

/* ================================
   IMAGE INSIDE TEXT
================================ */
.image-text-heading {
  font-size: clamp(48px, 10vw, 200px);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: -2px;

  /* Image inside text */
  background-image: var(--text-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* fallback */
  color: #111;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .image-text-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .image-text-heading {
    letter-spacing: -1px;
  }
}
