.about-section {
  position: relative;

  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-right: 0;
  max-width: 1660px;
  padding-right: 0;
}
.content-section {
  flex: 1;
  max-width: 560px;
}
.about-image {
  flex: 1;
  display: flex;

  justify-content: flex-end;
}

.about-image img {
  height: auto;
  object-fit: cover;

  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: url("../images/home-images/mask-image.png");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
/* =============
  Featured Section
  ================== */
.featured-section {
  background: linear-gradient(106.68deg, #e2f2ff 0%, #ffffff 65.44%);
  position: relative;
  overflow: hidden;
}
.featured-section .title-section p span {
  background: #eaf6ff;
}
.featured-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 500px;
  height: 250px;
  background: url("../images/home-images/featured-bg.png") no-repeat center
    center/cover;
  opacity: 1;
  z-index: 0;
}
.featured-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* Gallery Section - Right Side */
.trips-gallery {
  width: 100%;
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.trip-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 350px;
  cursor: pointer;
}

.trip-card:hover {
  transform: translateY(-10px);
}

.trip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Duration Badge */
.duration-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 600;
  z-index: 2;
}

/* Card Overlay */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  gap: 30px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
}

.card-overlay span {
  color: white;
  font-size: 18px;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 1.3;
}
.trip-card:hover .card-overlay span {
  transition: all 0.3s ease;
}
.arrow-circle {
  width: 36px;
  height: 36px;
  /* background: rgba(255, 255, 255, 0.25); */
  border-radius: 50%;
  display: flex;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  color: white;
  /* backdrop-filter: blur(10px); */
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.arrow-circle::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: white;
  transform: rotate(-45deg);
}
.trip-card:hover .arrow-circle {
  background: var(--primary);
  border: 1px solid var(--primary);
  transform: rotate(45deg);
}

/* Destination Section */
.destination-container .content-section {
  max-width: 100%;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 35px;
}

.destination-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );

  z-index: 2;
}

.destination-labels {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 3px;
  overflow: hidden;
  right: 15px;
  display: flex;

  background: rgba(0, 0, 0, 0.7);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-radius: 40px;
  border: 0.6px #fff solid;
  z-index: 4;
}
.destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 500px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.location-label {
  background: rgba(255, 255, 255, 0.95);
  color: #232323;

  padding: 8px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.destination-card:hover .location-label {
  background: var(--primary);
  color: #fff;
  transition: all 0.3s ease;
}

.package-label {
  color: rgba(255, 255, 255, 0.8);

  padding: 8px 18px;

  font-size: 16px;
  font-weight: 700;
}
.destination-card:hover .package-label {
  color: #fff;
  transition: all 0.3s ease;
}
/* =================================================
    HIGHLIGHTS SECTION
  ================================================= */

.highlights-section {
  background: #e7f4ff;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  padding-bottom: 120px;
}

/* Background decorative image */
.highlights-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 250px;
  background: url("../images/home-images/highlights-bg.png") no-repeat center
    center/cover;
  z-index: 0;
}
.highlights-section .title-section {
  margin-bottom: 2px;
}
.highlights-section .title-section p span {
  background: #e7f4ff;
}

/* ==============================
    LAYOUT GRID
  ============================== */

.highlights-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 18px;

  max-width: 1660px;
  margin: 0 auto;
  margin-right: 0;

  position: relative;
  z-index: 1;
  align-items: center;
  padding-bottom: 120px;
}

/* ==============================
    IMAGE COLLAGE SECTION
  ============================== */

.walks-slider-wrapper {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.walks-slider,
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Base slide style */
.highlights-section .slide {
  position: absolute;
  opacity: 0;
  z-index: 0;
  border-radius: 30px;
  overflow: hidden;
  width: 0;
  height: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.highlights-section .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  display: block;
}

.highlights-section .slide.pos-1 {
  left: 0;
  top: 0;
  width: 400px;
  height: 500px;
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.highlights-section .slide.pos-2 {
  right: 29%;
  top: 60%;
  width: 250px;
  height: 300px;
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.highlights-section .slide.pos-3 {
  top: 26%;
  right: 0;
  width: 250px;
  height: 300px;
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.highlights-section .slide:not(.pos-1):not(.pos-2):not(.pos-3) {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* 
  .highlights-section .slide:nth-child(1) {
    left: 0;
    max-width: 100%;
    width: 400px;
    height: 500px;
    opacity: 1;
    z-index: 3;
  }


  .highlights-section .slide:nth-child(2) {
    right: 29%;
    top: 60%;
    max-width: 100%;
    width: 250px;
    height: 300px;
    opacity: 1;
    z-index: 2;
  }


  .highlights-section .slide:nth-child(3) {
    top: 26%;
    right: 0;
    max-width: 100%;
    width: 250px;
    height: 300px;
    opacity: 1;
    z-index: 1;
  }


  .highlights-section .slide:nth-child(n + 4) {
    opacity: 0;
    pointer-events: none;
  } */

.walks-slider-wrapper:empty::after {
  content: "";
  display: block;
  width: 400px;
  height: 500px;
  background: #f3f3f3;
  border-radius: 30px;
}
/* ==============================
    CONTENT SLIDER (TEXT)
  ============================== */

.content-section {
  position: relative;
}

.content-slider-container {
  position: relative;
  min-height: 280px;
}

.content-slide {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Text animations */
.title-section.highlights h2,
.slide-text {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s ease;
}

.content-slide.active .title-section h2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.content-slide.active .slide-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}
.content-slide .title-section h2,
.content-slide .slide-text,
.content-slide .hero-btn {
  opacity: 0;
  transform: translateY(80px);
  filter: blur(10px);
  transition: all 0.3s ease;
}

.content-slide.active .title-section h2 {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.1s;
}

.content-slide.active .slide-text {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.3s;
}

.content-slide.active .hero-btn {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: 0.3s;
}
.slide-text p {
  color: rgba(39, 39, 39, 0.73);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin: 20px 0;
  font-family: var(--primary-font);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;

  max-height: calc(1.7em * 4);
}
/* ==============================
    SLIDER CONTROLS
  ============================== */

.slider-controls {
  position: absolute;
  bottom: -10%;
  right: 6%;
  display: flex;
  gap: 2px;
  z-index: 10;
  text-align: center;
  display: flex;
  justify-content: center;
}

.slider-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--primary);
  background: transparent;
  cursor: pointer;
  margin: 0 5px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-controls button::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--primary);
}

.highlights-prev-btn::before {
  transform: rotate(180deg);
}
.slider-controls button:hover::before {
  color: white;
}

.slider-controls .next::after {
  transform: rotate(180deg);
}
.slider-controls button:hover {
  background: var(--primary);
}

/*==============
  Blog Section
  ====================*/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 10px;
  position: relative;
  border: 0.6px solid rgba(146, 146, 146, 0.5);
  transition: 0.3s ease;
  width: 100%;
  display: block;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.blog-image {
  padding: 26px 20px 0 20px;
  border-radius: 10px;
}

.blog-image-inner {
  position: relative;
  height: 340px;
  overflow: hidden;
  border-radius: 8px;
}
.blog-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: 0.4s ease;
}

/* Date Badge */
.date-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
  width: 80px;
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 500;
  z-index: 2;
}
.blog-card:hover .date-badge {
  transition: all 0.3s ease;
}

.date-badge span {
  display: block;
  font-size: 26px;
  font-weight: 700;
}
/* Content */
.blog-content {
  padding: 20px;
  padding-bottom: 40px;
}

.blog-subtitle span {
  font-size: 16px;
  font-family: var(--primary-font);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  line-height: 20px;
}

.blog-title h3 {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--primary-font);
  line-height: 26px;
  margin-top: 5px;
  padding-left: 4px;
  color: rgba(0, 0, 0, 0.7);
}
.blog-card:hover h3 {
  color: var(--primary);
  transition: color 0.3s ease;
}
/* Button */
.blog-btn {
  text-align: center;
  margin-top: 30px;
}

/* ==========
  Testimonial Section
  ============== */

.testimonial {
  position: relative;
  background: url("../images/home-images/test-bg.png") no-repeat center
    center/cover;
  overflow: hidden;
}
.testimonial .title-section p span {
  background: #f8f8fa;
}

/* Fade overlay */
.testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0) 80%,
    #ffffff 100%
  );
  z-index: 1;
  pointer-events: none;
}

.testimonial-container,
.testimonial-slider {
  position: relative;
  z-index: 2;
}

.scenic-container-large.testimonial-container {
  padding: 20px 20px;
  margin-bottom: 80px;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;

  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-slide p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(39, 39, 39, 0.73);

  text-align: center;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;

  /* min-height: calc(1.8em * 4); */
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-slide.to-left {
  transform: translateX(-100%);
}

.testimonial-slide.to-right {
  transform: translateX(100%);
}

.testimonial-slide h3 {
  color: var(--primary);
  font-weight: 400;
  font-family: "Haffer", sans-serif;
  font-size: 22px;
  margin: 30px 0 0 0;
}

.testimonial-nav {
  position: relative;
  margin-top: 280px; /* match the height above */
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 3;
}
.testimonial-nav button {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: relative;
  top: 50%;
  border: 1px solid var(--secondary);
  background: transparent;
  cursor: pointer;
  margin: 0 5px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-content {
  max-width: 600px;
  width: 100%;
  height: 200px;
}

.testimonial-nav button::before {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--secondary);
}
.testimonial-nav button:hover {
  background: var(--secondary);
}
.testimonial-nav .prev::before {
  transform: rotate(180deg);
}
.testimonial-nav button:hover::before {
  color: white;
}

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

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
    line-height: 56px;
    width: 700px;
    letter-spacing: -1.5%;
  }
  .hero-content {
    max-width: 800px;
    padding: 0 30px;
  }
  .about-container,
  .featured-container,
  .highlights-container {
    gap: 50px;
  }

  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trip-card {
    height: 320px;
  }
}

/* Desktop / Tablet: 992px and below */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 44px;
    line-height: 44px;
    width: 100%;
  }
  .hero-search {
    max-width: 500px;
  }
  .title-section {
    margin-bottom: 0;
  }
  .about-image {
    justify-content: center;
    margin-top: 30px;
  }
  .about-image img {
    height: 280px;
    width: 100%;
    max-width: 500px;
  }
  .featured-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
  }

  .blog-title h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .blog-content {
    padding: 16px;
    padding-bottom: 30px;
  }
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 6;
  }
  .grid {
    grid-gap: 16px;
  }
  .blog-btn {
    margin-top: 0;
  }
  .content-section {
    max-width: 100%;
  }
}

/* Tablet: 768px and below */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 36px;
    line-height: 38px;
  }
  .hero-search input,
  .hero-search button {
    padding: 12px 16px;
    font-size: 15px;
  }
  .scenic-container-large {
    padding: 60px 25px;
  }
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    grid-column: span 12;
  }
  .trip-card {
    height: 280px;
    border-radius: 6px;
  }
  .card-overlay {
    padding: 25px 20px;
  }
  .about-image {
    display: none;
  }
  .card-overlay span {
    font-size: 16px;
    line-height: 1.2;
  }
  .duration-badge {
    font-size: 14px;
    padding: 6px 14px;
    top: 12px;
    right: 12px;
  }
  .destination-card {
    height: 340px;
    border-radius: 6px;
  }
  .destination-labels {
    padding: 8px 12px;
    gap: 8px;
  }
  .highlights-section .slide {
    border-radius: 8px;
  }
  .featured-section::before,
  .highlights-section::before {
    display: none;
  }
  .walks-slider-wrapper .slider-controls {
    bottom: -64px;
  }
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  .gallery-columns-2,
  .gallery-columns-3,
  .gallery-columns-4,
  .gallery-columns-5,
  .gallery-columns-6 {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    gap: 16px;
    margin-top: 28px;
  }

  .blog-image {
    padding: 16px 14px 0 14px;
  }

  .blog-title h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .blog-subtitle span {
    font-size: 14px;
  }

  .blog-content {
    padding: 14px;
    padding-bottom: 24px;
  }

  .date-badge {
    width: 66px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .date-badge span {
    font-size: 22px;
  }

  .blog-btn {
    margin-top: 24px;
  }
  .testimonial-slide p {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
  .section-lg {
    padding: 60px 0;
  }
  .section-md {
    padding: 40px 0;
  }
  .section {
    padding-top: 30px;
  }
  .testimonial-slider {
    padding-bottom: 50px;
  }
}

/* Small Phone: 600px and below */
@media (max-width: 600px) {
  .testimonial {
    background: none;
  }
  .hero-content h1 {
    font-size: 30px;
    line-height: 34px;
  }

  .sub-title {
    font-size: 18px;
  }
  .card-overlay span {
    font-size: 15px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-label,
  .package-label {
    font-size: 14px;
    padding: 6px 12px;
  }
  .scenic-container-large {
    padding: 50px 20px;
  }
  .scenic-container {
    padding: 20px 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .blog-image {
    padding: 14px 12px 0 12px;
  }

  .blog-title h3 {
    font-size: 18px;
    line-height: 22px;
  }

  .blog-content {
    padding: 14px 12px;
    padding-bottom: 22px;
  }

  .date-badge {
    width: 64px;
    font-size: 13px;
    padding: 7px 9px;
  }

  .date-badge span {
    font-size: 20px;
  }

  .blog-btn {
    margin-top: 20px;
  }
  .testimonial-slide p {
    font-size: 14px;
    -webkit-line-clamp: 3;
    min-height: calc(1.8em * 3);
  }
  .testimonial-nav button {
    width: 42px;
    height: 42px;
  }
  .trip-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .testimonial-slide h3 {
    font-size: 18px;
    margin: 36px 0 36px 0;
  }
}

/* Phone: 480px and below */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
    line-height: 30px;
  }

  .sub-title {
    font-size: 16px;
  }
  .hero-search input,
  .hero-search button {
    padding: 10px 14px;
    font-size: 14px;
  }

  .about-container {
    gap: 25px;
  }
  .about-image img {
    height: 220px;
  }
  .trip-card {
    height: 240px;
  }
  .card-overlay {
    padding: 20px 15px;
  }
  .duration-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  .destination-card {
    height: 280px;
  }
  .location-label,
  .package-label {
    font-size: 12px;
    padding: 4px 10px;
  }
  .blog-image-inner {
    height: 100%;
  }

  .blog-title h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .blog-subtitle span {
    font-size: 13px;
  }

  .date-badge {
    width: 58px;
    font-size: 12px;
    padding: 6px 8px;
  }

  .date-badge span {
    font-size: 18px;
  }
  .footer-top {
    gap: 25px;
  }
  .footer-bottom-inner {
    padding: 15px 10px;
  }

  .cta-content {
    padding: 30px 15px;
  }
  .testimonial-slide p {
    font-size: 13px;
    -webkit-line-clamp: 2;
  }
  .testimonial-nav button {
    width: 38px;
    height: 38px;
  }
  .site-content p {
    font-size: 14px;
  }
  .title-section p {
    font-size: 18px;
    padding-left: 30px;
  }
  .title-section p::before {
    width: 25px;
  }
}

/* Extra Small Phone: 360px and below */
@media (max-width: 360px) {
  .scenic-container-large {
    padding: 40px 15px;
  }
  .scenic-container {
    padding: 15px 10px;
  }
  .hero-content h1 {
    font-size: 22px;
    line-height: 26px;
  }

  .sub-title {
    font-size: 15px;
  }
  .hero-search input,
  .hero-search button {
    padding: 8px 12px;
    font-size: 13px;
  }

  .card-overlay {
    padding: 15px 12px;
  }
  .card-overlay span {
    font-size: 14px;
  }
  .duration-badge {
    font-size: 11px;
    padding: 3px 8px;
    top: 10px;
  }
  .destination-card {
    height: 260px;
  }
  .location-label,
  .package-label {
    font-size: 12px;
    padding: 4px 10px;
  }
  .blog-image {
    height: 200px;
  }
  .blog-title h4 {
    font-size: 14px;
    line-height: 18px;
  }
  .date-badge {
    width: 58px;
    font-size: 12px;
  }
  .date-badge span {
    font-size: 18px;
  }
  .testimonial-slide p {
    font-size: 12px;
  }
  .testimonial-nav button {
    width: 36px;
    height: 36px;
  }
}
/* =================================================
    HIGHLIGHTS RESPONSIVE
  ================================================= */

/* ===== 1200px ===== */
@media (max-width: 1200px) {
  .highlights-section {
    padding: 40px 0;
  }
  .highlights-container {
    align-items: flex-start;
  }
  .highlights-section .slide.pos-1 {
    width: 350px;
    height: 400px;
  }

  .highlights-section .slide.pos-2,
  .highlights-section .slide.pos-3 {
    width: 250px;
    height: 300px;
  }
  /* .highlights-section .slide:nth-child(1) {
      width: 350px;
      height: 400px;
    }
    .highlights-section .slide:nth-child(2) {
      width: 250px;
      height: 300px;
    }
    .highlights-section .slide:nth-child(3) {
      width: 250px;
      height: 300px;
    } */
}

/* ===== 992px ===== */

@media (max-width: 992px) and (min-width: 600px) {
  .highlights-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-right: 20px;
  }

  .walks-slider-wrapper {
    height: 500px;
  }

  .slider-controls {
    bottom: -16%;
    right: 30%;
  }
  .highlights-section .slide.pos-1 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1.02);
    width: 100%;
    height: 450px;
    opacity: 1;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  }
  .highlights-section .slide.pos-2,
  .highlights-section .slide.pos-3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 100%;
    max-width: 280px;
    height: 340px;
    opacity: 0.15;
    z-index: 1;
  }
  /* .slider-track .slide:first-child {
      opacity: 1;
      z-index: 10;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(1.02);
      width: 400px;
      height: 450px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      filter: brightness(1.1);
    } */

  /* .slider-track .slide:not(:first-child) {
      opacity: 0.15;
      z-index: 1;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      width: 320px;
      height: 400px;
      filter: blur(2px) brightness(0.6);
    } */
}

@media (max-width: 600px) {
  .highlights-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
  }

  .content-section {
    width: 100%;
  }

  .content-slider-container {
    position: relative;
    width: 100%;
    height: 280px;
  }

  .content-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .content-slide.active {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }

  /* Image wrapper */
  .walks-slider-wrapper {
    order: 2;
    position: relative;
    width: 100%;
    height: 320px;
    justify-content: center;
  }
  .highlights-section .slide {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden;
    z-index: 1;
    border-radius: 16px;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    transition: opacity 0.4s ease;
  }

  .highlights-section .slide.pos-1 {
    opacity: 1 !important;
    visibility: visible;
    z-index: 10;
  }
  /* .highlights-section .slide {
      width: 100% !important;
      height: 100% !important;
      left: 0 !important;
      right: auto !important;
      top: 0 !important;
    } */
  /* .highlights-section .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100% !important;
      height: 100% !important;
      opacity: 0 !important;
      visibility: hidden;
      z-index: 1;
      border-radius: 16px;
      transition: opacity 0.4s ease;
    } */

  /* .highlights-section .slide:first-child {
      opacity: 1 !important;
      visibility: visible;
      z-index: 10;
    } */

  .highlights-section .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
  }

  /* Controls centered below image */
  .slider-controls {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    justify-content: center;
  }
}

@media (max-width: 360px) {
  .walks-slider-wrapper {
    height: 220px;
  }

  .content-slider-container {
    min-height: 200px;
  }
}
