@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
/* Regular */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-Regular.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-Regular.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* SemiBold */
@font-face {
  font-family: "PP Mori";
  src:
    url("../fonts/pp-mori/PPMori-SemiBold.woff2") format("woff2"),
    url("../fonts/pp-mori/PPMori-SemiBold.woff") format("woff"),
    url("../fonts/pp-mori/PPMori-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "General Sans";
  src:
    url("../fonts/general-sans/GeneralSans-Semibold.woff2") format("woff2"),
    url("../fonts/general-sans/GeneralSans-Semibold.woff") format("woff"),
    url("../fonts/general-sans/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ================
About Us 
=============== */
.about-us {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-us .section-title {
  text-align: left;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.bg-about {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.about-content h3 {
  color: rgba(33, 33, 33, 0.81);
}
.bg-about img {
  max-width: 100%;
  height: auto;
}

.about-image-stack {
  position: relative;
  width: 650px;
  height: 600px;
  margin: 0 auto;
}

.about-card {
  position: absolute;
  width: 300px;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
  z-index: 5 !important;
}

.about-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  font-size: 150px;
  font-family: var(--secondary-font);
  font-weight: 700;
  color: transparent;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #ffffff;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.about-card.tibet {
  top: 0;
  left: 0;
  z-index: 1;
}

.about-card.nepal {
  height: 535px;
  top: 30px;
  left: 210px;
  z-index: 2;
}

.nepal span {
  font-size: 100px;
}

.about-card.bhutan {
  height: 465px;
  top: 60px;
  left: 410px;
  z-index: 3;
}

.bhutan span {
  font-size: 65px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #525252;
  font-family: var(--primary-font);
}

/* Responsive - 1200px */
@media (max-width: 1200px) {
  .about-wrapper {
    gap: 180px;
  }

  .about-image-stack {
    width: 480px;
    height: 560px;
  }

  .about-card {
    width: 280px;
    height: 560px;
  }

  .about-card.nepal {
    height: 500px;
    left: 190px;
  }

  .about-card.bhutan {
    height: 440px;
    left: 370px;
  }

  .about-card span {
    font-size: 130px;
  }

  .nepal span {
    font-size: 90px;
  }

  .bhutan span {
    font-size: 60px;
  }

  .about-content p {
    font-size: 17px;
  }
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .about-wrapper {
    gap: 50px;
  }

  .about-image-stack {
    width: 550px;
    height: 520px;
  }

  .about-card {
    width: 220px;
    height: 520px;
  }

  .about-card.nepal {
    height: 465px;
    left: 175px;
  }

  .about-card.bhutan {
    height: 410px;
    left: 340px;
  }

  .about-card span {
    font-size: 110px;
  }

  .nepal span {
    font-size: 80px;
  }

  .bhutan span {
    font-size: 55px;
  }

  .about-content p {
    font-size: 16px;
  }
}

/* Responsive - 992px */
@media (max-width: 992px) {
  .about-us {
    padding: 60px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    display: flex;
    flex-direction: column;
  }

  .about-us .section-title {
    text-align: center !important;
  }

  .about-image-stack {
    order: 1;
    margin: 0 auto;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .about-content br {
    display: none;
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .about-image-stack {
    width: 500px;
    height: 450px;
  }

  .about-card {
    width: 220px;
    height: 450px;
  }

  .about-card.nepal {
    height: 400px;
    left: 150px;
  }

  .about-card.bhutan {
    height: 350px;
    left: 290px;
  }

  .about-card span {
    font-size: 90px;
  }

  .nepal span {
    font-size: 65px;
  }

  .bhutan span {
    font-size: 45px;
  }

  .about-content p {
    font-size: 15px;
  }
}

/* Responsive - 600px */
@media (max-width: 600px) {
  .about-image-stack {
    width: 450px;
    height: 400px;
  }
  .about-content {
    text-align: center;
  }

  .about-card {
    width: 190px;
    height: 400px;
  }

  .about-card.nepal {
    height: 355px;
    left: 130px;
  }

  .about-card.bhutan {
    height: 310px;
    left: 250px;
  }

  .about-card span {
    font-size: 75px;
  }

  .nepal span {
    font-size: 55px;
  }

  .bhutan span {
    font-size: 40px;
  }

  .about-content p {
    font-size: 14px;
  }
}

/* Responsive - 480px */
@media (max-width: 480px) {
  .about-image-stack {
    width: 385px;
    height: 360px;
  }

  .about-card {
    width: 170px;
    height: 360px;
  }

  .about-card.nepal {
    height: 320px;
    left: 115px;
  }

  .about-card.bhutan {
    height: 280px;
    left: 220px;
  }

  .about-card span {
    font-size: 65px;
  }

  .nepal span {
    font-size: 48px;
  }

  .bhutan span {
    font-size: 35px;
  }

  .about-content p {
    font-size: 13px;
  }
}

/* Responsive - 360px */
@media (max-width: 360px) {
  .about-image-stack {
    width: 280px;
    height: 340px;
  }

  .about-card {
    width: 160px;
    height: 340px;
  }

  .about-card.nepal {
    height: 300px;
    left: 105px;
  }

  .about-card.bhutan {
    height: 260px;
    left: 200px;
  }

  .about-card span {
    font-size: 60px;
  }

  .nepal span {
    font-size: 45px;
  }

  .bhutan span {
    font-size: 32px;
  }
}

/* ==============
Featured Trips
============== */
.featured-section {
  background: #e7f4ff;
  padding: 80px 20px;
}

.trip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  max-width: 1600px;
  margin: 0 auto;
}

.trip-card {
  position: relative;
  width: 400px;
  height: 550px;
  text-decoration: none;
  color: #fff;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.trip-card:hover {
  transform: scale(0.95);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.trip-days {
  position: absolute;
  display: block;
  top: 16px;
  right: 16px;

  padding: 6px 14px;
  border-radius: 20px;

  z-index: 3;
}
.trip-days,
.card-btn {
  background: var(--color-yellow);
  font-weight: 600;
  font-size: 13.4px;
  font-family: var(--primary-font);
  color: #000;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;

  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.card-content h3 {
  font-size: 22px;
  font-family: var(--primary-font);

  line-height: 28px;
  color: white;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-btn {
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12.8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
  background: transparent;
  font-family: var(--primary-font);
}
.card-btn .fa-solid {
  color: var(--color-yellow);
  font-size: 15px;
}

.trip-card:hover .card-btn {
  background: var(--color-yellow);
  color: #000;
}
.trip-card:hover .card-btn .fa-solid {
  color: #000;
}

.card-rating {
  color: var(--primary);
  font-size: 14px;
  display: flex;
  gap: 2px;
}

.card-rating i {
  font-size: 14px;
}

/* Responsive - 1200px */
@media (max-width: 1200px) {
  .card-title {
    font-size: 21px;
  }
}

/* Responsive - 1024px */
@media (max-width: 1024px) {
  .trip-cards {
    gap: 30px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-btn {
    font-size: 12px;
    padding: 5px 14px;
  }
}

/* Responsive - 900px */
@media (max-width: 900px) {
  .featured-section {
    padding: 60px 20px;
  }

  .trip-cards {
    gap: 25px;
  }

  .card-title {
    font-size: 19px;
  }
}

/* Responsive - 768px */
@media (max-width: 768px) {
  .trip-cards {
    flex-direction: column;
    align-items: center;
  }

  .card-content {
    padding: 20px;
  }

  .card-title {
    font-size: 20px;
  }
}

/* Responsive - 600px */
@media (max-width: 600px) {
  .card-title {
    font-size: 18px;
  }

  .card-content {
    padding: 18px;
    gap: 12px;
  }

  .trip-days {
    font-size: 12px;
    padding: 5px 12px;
  }

  .card-btn {
    font-size: 11px;
    padding: 5px 12px;
  }

  .card-rating i {
    font-size: 13px;
  }
}

/* Responsive - 480px */
@media (max-width: 480px) {
  .card-title {
    font-size: 17px;
  }

  .card-content {
    padding: 16px;
  }

  .trip-days {
    font-size: 11px;
    padding: 4px 10px;
  }

  .card-btn {
    font-size: 10px;
    padding: 4px 10px;
  }

  .card-rating i {
    font-size: 12px;
  }
}

/* Responsive - 360px */
@media (max-width: 360px) {
  .card-title {
    font-size: 16px;
  }

  .card-content {
    padding: 14px;
  }
}
/* ==================
Things to do Section
==================== */

.things-to-do {
  background: var(--secondary);
  padding: 80px 0;
  position: relative;

  overflow: hidden;
}

.back-things-to-do {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.back-things-to-do img {
  height: auto;
  display: block;
}

.section-title.white {
  text-align: left;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title.white span {
  color: white;
}

.header-title.white {
  max-width: 400px;
}

.header-title.white p {
  color: #fff;
  text-align: left;

  line-height: 1.6;
  margin-bottom: 30px;
}

.header-title.white .explore-btn-container {
  margin-top: 20px;
}

.header-title.white .hero-btn {
  background-color: #fff;
  color: var(--secondary);
}

.things-slider {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Navigation Arrows */
.nav-arrow {
  position: absolute;
  width: 55px;
  height: 55px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%) scale(1.15);
}

.nav-arrow svg {
  width: 22px;
  height: 22px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.nav-arrow.slider-left {
  left: 10px;
}

.nav-arrow.slider-right {
  right: 10px;
}

/* Text Container */
.slider-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
}

.slider-wrapper {
  position: relative;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;

  width: 350px;
  height: 550px;
  border-radius: 30px;
  overflow: hidden;

  cursor: pointer;
}

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

.trip-days {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-yellow);
  color: #000;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  z-index: 5;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.99%, #000000 100%);
  padding: 30px 25px;
  z-index: 4;
  transform: translateY(0);
  transition: all 0.4s ease;
}
.slide:hover .card-overlay {
  padding-bottom: 35px;
}
.card-title {
  font-size: 25px;
  font-weight: 560;
  color: white;
  margin-bottom: 10px;
  opacity: 0.8;
  line-height: auto;
}

.card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 19px;
  margin-bottom: 0;
}

/* Slide Positions */
.slide.active {
  z-index: 3;
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
}

.slide.prev {
  z-index: 2;
  transform: translateX(-180px) scale(0.9) rotateY(8deg);
  opacity: 0.8;
  filter: brightness(0.85);
}

.slide.next {
  z-index: 2;
  transform: translateX(180px) scale(0.9) rotateY(-8deg);
  opacity: 0.8;
  filter: brightness(0.85);
}

.slide.hidden {
  z-index: 1;
  opacity: 0;
  transform: scale(0.7);
  pointer-events: none;
}

/* Responsive Design - 1200px */
@media (max-width: 1200px) {
  .things-slider {
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    padding: 0 20px;
  }

  .slider-container {
    padding: 0 60px;
  }

  .slide {
    width: 300px;
    height: 500px;
  }

  .slide.prev {
    transform: translateX(-160px) scale(0.88) rotateY(6deg);
  }

  .slide.next {
    transform: translateX(160px) scale(0.88) rotateY(-6deg);
  }

  .slider-container {
    height: 500px;
  }

  .nav-arrow.slider-left {
    left: -60px;
  }

  .nav-arrow.slider-right {
    right: -60px;
  }
}

/* Responsive Design - 1024px */
@media (max-width: 1024px) {
  .things-slider {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  .slide {
    width: 280px;
    height: 460px;
  }

  .slide.prev {
    transform: translateX(-140px) scale(0.85) rotateY(4deg);
  }

  .slide.next {
    transform: translateX(140px) scale(0.85) rotateY(-4deg);
  }

  .slider-container {
    height: 460px;
    padding: 0 50px;
  }

  .nav-arrow {
    width: 48px;
    height: 48px;
  }

  .nav-arrow.slider-left {
    left: -50px;
  }

  .nav-arrow.slider-right {
    right: -50px;
  }
}

/* Responsive Design - 900px - MOBILE RESTRUCTURE */
@media (max-width: 900px) {
  .header-title p br {
    display: none;
  }
  .things-to-do {
    padding: 60px 20px;
  }

  .things-slider {
    display: flex;
    flex-direction: column;
    gap: 50px;
    grid-template-columns: none;
    padding: 0;
  }

  .slider-text-container {
    order: 1;
    max-width: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
  }

  .header-title.white {
    max-width: 100%;
    text-align: center;
  }

  .section-title.white {
    text-align: center !important;
    font-size: 42px;
    margin-bottom: 20px;
  }

  .header-title.white p {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-container {
    order: 2;
    height: 450px;
    padding: 0 40px;
  }

  .slide {
    width: 280px;
    height: 420px;
  }

  .slide.prev {
    transform: translateX(-140px) scale(0.85) rotateY(0deg);
    opacity: 0.7;
  }

  .slide.next {
    transform: translateX(140px) scale(0.85) rotateY(0deg);
    opacity: 0.7;
  }

  .nav-arrow.slider-left {
    left: 20px;
  }

  .nav-arrow.slider-right {
    right: 20px;
  }
}

/* Responsive Design - 768px */
@media (max-width: 768px) {
  .section-title.white {
    font-size: 36px !important;
    margin-bottom: 15px;
  }

  .header-title.white p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .hero-btn {
    padding: 12px 35px;
    font-size: 15px;
  }

  .slider-container {
    height: 400px;
  }

  .slide {
    width: 250px;
    height: 380px;
  }

  .slide.prev {
    transform: translateX(-120px) scale(0.8);
    opacity: 0.6;
  }

  .slide.next {
    transform: translateX(120px) scale(0.8);
    opacity: 0.6;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
  }

  .nav-arrow svg {
    width: 18px;
    height: 18px;
  }

  .nav-arrow.slider-left {
    left: 15px;
  }

  .nav-arrow.slider-right {
    right: 15px;
  }
}

/* Responsive Design - 600px */
@media (max-width: 600px) {
  .things-to-do {
    padding: 50px 15px;
  }

  .section-title.white {
    font-size: 30px !important;
    margin-bottom: 15px;
  }

  .header-title.white p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  .slider-container {
    height: 360px;
    padding: 0 30px;
  }

  .slide {
    width: 220px;
    height: 340px;
  }

  .slide.prev {
    transform: translateX(-100px) scale(0.75);
    opacity: 0.5;
  }

  .slide.next {
    transform: translateX(100px) scale(0.75);
    opacity: 0.5;
  }

  .nav-arrow {
    width: 42px;
    height: 42px;
  }

  .nav-arrow.slider-left {
    left: 10px;
  }

  .nav-arrow.slider-right {
    right: 10px;
  }
}

/* Responsive Design - 480px */
@media (max-width: 480px) {
  .section-title.white {
    font-size: 26px !important;
  }

  .header-title.white p {
    font-size: 12px;
    line-height: 1.6;
  }

  .slider-container {
    height: 330px;
    padding: 0 20px;
  }

  .slide {
    width: 190px;
    height: 310px;
  }

  .slide.prev {
    transform: translateX(-85px) scale(0.7);
    opacity: 0.4;
  }

  .slide.next {
    transform: translateX(85px) scale(0.7);
    opacity: 0.4;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .nav-arrow svg {
    width: 16px;
    height: 16px;
  }

  .nav-arrow.slider-left {
    left: 8px;
  }

  .nav-arrow.slider-right {
    right: 8px;
  }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
  .section-title.white {
    font-size: 24px !important;
  }

  .header-title.white p {
    font-size: 11px;
  }

  .slider-container {
    height: 300px;
  }

  .slide {
    width: 170px;
    height: 280px;
  }

  .slide.prev {
    transform: translateX(-75px) scale(0.65);
  }

  .slide.next {
    transform: translateX(75px) scale(0.65);
  }

  .nav-arrow {
    width: 38px;
    height: 38px;
  }

  .nav-arrow.slider-left {
    left: 5px;
  }

  .nav-arrow.slider-right {
    right: 5px;
  }
}

/* ===================
Popular Treks
==================== */
.popular-treks {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.trek-background {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.trek-background img {
  width: 100%;
  height: auto;
}

.treks-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  gap: 0;
}

.treks-text-container .section-title {
  text-align: left;
}

.treks-images-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.treks-images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.trek-slide {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.trek-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trek-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.trek-slide.active {
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.trek-slide.next {
  z-index: 2;
  transform: translate(calc(-50% + 120px), -50%) scale(0.9);
  opacity: 0.8;
}

.trek-slide.next2 {
  z-index: 1;
  transform: translate(calc(-50% + 240px), -50%) scale(0.8);
  opacity: 0.7;
}

.trek-slide.hidden {
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.7);
  pointer-events: none;
}

.nav-arrow.trek {
  border: 2px solid rgba(0, 0, 0, 0.74);

  background: white;
}

.nav-arrow.trek:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.nav-arrow.trek:hover svg {
  stroke: white;
}

.nav-arrow.trek.left {
  left: -100px;
}

.nav-arrow.trek.right {
  right: 50px;
}

.nav-arrow.trek svg {
  stroke: rgba(0, 0, 0, 0.74);
  stroke-width: 2.5;
}

.treks-text-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 500px;
  min-height: 200px;
}

.trek-text-wrapper {
  position: relative;
  min-height: 250px;
}

.trek-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.trek-text.active {
  opacity: 1;
  pointer-events: auto;
}

.trek-text h3 {
  font-size: 32px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: #4f4f4f;
  margin-bottom: 20px;
}

.trek-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Responsive Design - 1200px */
@media (max-width: 1200px) {
  .treks-slider {
    gap: 60px;
  }

  .trek-slide {
    width: 270px;
    height: 440px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 110px), -50%) scale(0.9);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 220px), -50%) scale(0.8);
  }

  .treks-images-container {
    height: 480px;
  }

  .trek-text h3 {
    font-size: 30px;
  }

  .trek-text p {
    font-size: 15px;
  }

  .nav-arrow.trek.left {
    left: -60px;
  }

  .nav-arrow.trek.right {
    right: -60px;
  }
}

/* Responsive Design - 1024px */
@media (max-width: 1024px) {
  .treks-slider {
    gap: 40px;
  }

  .trek-slide {
    width: 260px;
    height: 420px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 100px), -50%) scale(0.88);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 200px), -50%) scale(0.78);
  }

  .treks-images-container {
    height: 460px;
  }

  .trek-text h3 {
    font-size: 28px;
  }

  .trek-text p {
    font-size: 15px;
  }

  .nav-arrow.trek {
    width: 48px;
    height: 48px;
  }

  .nav-arrow.trek.left {
    left: -50px;
  }

  .nav-arrow.trek.right {
    right: -50px;
  }
}

/* Responsive Design - 900px */
@media (max-width: 900px) {
  .treks-text-container .section-title {
    font-size: 42px;

    text-align: center;
  }

  .treks-slider {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .treks-text-container {
    order: 1;
    width: 100%;
    max-width: 100%;
    text-align: center;
    min-height: 180px;
    margin: 0 auto;
  }

  .trek-text {
    text-align: center;
  }

  .trek-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .treks-images-container {
    order: 2;
    height: 450px;
  }

  .trek-slide {
    left: 50%;
    width: 280px;
    height: 420px;
  }

  .trek-slide.active {
    transform: translate(-50%, -50%) scale(1);
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 220px), -50%) scale(0.85);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 440px), -50%) scale(0.75);
  }

  .nav-arrow.trek.left {
    left: 20px;
  }

  .nav-arrow.trek.right {
    right: 20px;
  }
  .trek-slide {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .trek-slide.active {
    z-index: 3;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 70px), -50%);
    opacity: 0.55;
    z-index: 2;
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 140px), -50%);
    opacity: 0.35;
    z-index: 1;
  }
}

/* Responsive Design - 768px */
@media (max-width: 768px) {
  .treks-text-container .section-title {
    font-size: 36px;
  }

  .trek-text-wrapper {
    min-height: 200px;
  }

  .trek-slide {
    width: 250px;
    height: 380px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 200px), -50%) scale(0.8);
    opacity: 0.5;
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 400px), -50%) scale(0.7);
    opacity: 0.3;
  }

  .treks-images-container {
    height: 400px;
  }

  .trek-text h3 {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .trek-text p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .nav-arrow.trek {
    width: 45px;
    height: 45px;
  }

  .nav-arrow.trek svg {
    width: 18px;
    height: 18px;
  }

  .nav-arrow.trek.left {
    left: 15px;
  }

  .nav-arrow.trek.right {
    right: 15px;
  }
  .trek-slide.next {
    transform: translate(calc(-50% + 55px), -50%);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 110px), -50%);
  }
}

/* Responsive Design - 600px */
@media (max-width: 600px) {
  .treks-text-container .section-title {
    font-size: 30px;
  }

  .treks-text-container {
    min-height: 150px;
    padding: 0 10px;
  }

  .trek-text-wrapper {
    min-height: 180px;
  }

  .trek-text h3 {
    font-size: 22px;
  }

  .trek-text p {
    font-size: 13px;
  }

  .treks-images-container {
    height: 360px;
  }

  .trek-slide {
    width: 220px;
    height: 340px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 180px), -50%) scale(0.75);
    opacity: 0.4;
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 360px), -50%) scale(0.65);
    opacity: 0.2;
  }

  .nav-arrow.trek {
    width: 42px;
    height: 42px;
  }

  .nav-arrow.trek.left {
    left: 10px;
  }

  .nav-arrow.trek.right {
    right: 10px;
  }
}

/* Responsive Design - 480px */
@media (max-width: 480px) {
  .treks-text-container .section-title {
    font-size: 26px;
  }

  .trek-text h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .trek-text-wrapper {
    min-height: 160px;
  }

  .trek-text p {
    font-size: 12px;
    line-height: 1.6;
  }

  .treks-images-container {
    height: 330px;
  }

  .trek-slide {
    width: 190px;
    height: 310px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 150px), -50%) scale(0.7);
    opacity: 0.3;
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 300px), -50%) scale(0.6);
    opacity: 0.1;
  }

  .nav-arrow.trek {
    width: 40px;
    height: 40px;
  }

  .nav-arrow.trek svg {
    width: 16px;
    height: 16px;
  }

  .nav-arrow.trek.left {
    left: 8px;
  }

  .nav-arrow.trek.right {
    right: 8px;
  }
  .trek-slide.next {
    transform: translate(calc(-50% + 40px), -50%);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 80px), -50%);
  }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
  .treks-text-container .section-title {
    font-size: 24px;
  }

  .trek-text h3 {
    font-size: 18px;
  }

  .trek-text-wrapper {
    min-height: 150px;
  }

  .trek-text p {
    font-size: 11px;
  }

  .treks-images-container {
    height: 300px;
  }

  .trek-slide {
    width: 170px;
    height: 280px;
  }

  .trek-slide.next {
    transform: translate(calc(-50% + 130px), -50%) scale(0.65);
  }

  .trek-slide.next2 {
    transform: translate(calc(-50% + 260px), -50%) scale(0.55);
  }

  .nav-arrow.trek {
    width: 38px;
    height: 38px;
  }

  .nav-arrow.trek.left {
    left: 5px;
  }

  .nav-arrow.trek.right {
    right: 5px;
  }
}
/* ===== TRIP OF THE MONTH SECTION ===== */
.trip-of-month {
  position: relative;
  margin: 0 auto;
}

.castle-container-small.trip {
  position: relative;
  width: 100%;

  display: grid;
  background: linear-gradient(257.63deg, #000000 0%, #666666 98.84%);
  border-radius: 30px;
  padding: 60px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

/* Background Pattern */
.trip-bg {
  position: absolute;
  bottom: -40px;
  left: 0;

  z-index: 1;
  pointer-events: none;
}

.header-title.black {
  margin-bottom: 20px;
}

.section-title.black {
  text-align: left;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.black {
  color: var(--primary);
}

.section-title.black span {
  color: var(--secondary);
}

.trip-text-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  line-height: 1.3;
  font-family: var(--primary-font);
}

.trip-description {
  font-size: 18px;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.6);

  max-width: 500px;
}

/* Image Section */
.trip-images-section {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.trip-images-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.trip-image {
  position: relative;
  width: 100%;

  height: 500px;
  border-radius: 25px;
  overflow: hidden;

  transition: transform 0.3s ease;
}

.trip-image:hover {
  transform: translateY(1.05px);
}

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

/* Days Badge */
.trip-image::before {
  content: "08 Days";
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Explore Button on Image */
.trip-image .explore-btn-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.trip-image:hover .explore-btn-container {
  opacity: 1;
}

.trip-image .hero-btn {
  background: white;
  color: var(--secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trip-image .hero-btn:hover {
  background: var(--primary);
  color: #000;
} /* Trip of Month Responsive */
@media (max-width: 1200px) {
  .castle-container-small.trip {
    padding: 50px;
    gap: 50px;
    width: auto;
    min-height: 550px;
  }

  .trip-title {
    font-size: 42px;
  }

  .trip-subtitle {
    font-size: 26px;
  }

  .trip-images-section {
    width: auto;
    height: auto;
  }
}

/* Responsive Design - 1024px */
@media (max-width: 1024px) {
  .castle-container-small.trip {
    gap: 40px;
    margin: 40px;
    padding: 40px;
  }

  .section-title.black {
    font-size: 40px;
  }

  .trip-subtitle {
    font-size: 24px;
  }

  .trip-image {
    height: 400px;
  }
}

/* Responsive Design - 900px - MOBILE */
@media (max-width: 900px) {
  .castle-container-small.trip {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
  }
  .trip-text-content {
    text-align: center;
  }

  .section-title.black {
    text-align: center;
  }

  .section-title.black {
    font-size: 38px;
  }

  .trip-subtitle {
    font-size: 22px;
  }
  .trip-text-content {
    order: 1;
  }

  .trip-images-section {
    order: 2;
    justify-content: center;
  }
  .trip-description {
    margin: 0 auto;
  }

  .trip-description br {
    display: none;
  }

  .trip-images-wrapper {
    max-width: 300px;
  }

  .trip-image {
    height: 380px;
  }
}

/* Responsive Design - 768px */
@media (max-width: 768px) {
  .castle-container-small.trip {
    flex-direction: column;
    padding: 40px 0;
    gap: 40px;
    margin: 20px;
    min-height: auto;
  }
  .trip-text-content {
    text-align: center;
    order: 1;
  }

  .trip-title br,
  .trip-subtitle br {
    display: none;
  }

  .trip-description {
    margin-left: auto;
    margin-right: auto;
  }

  .trip-images-section {
    order: 2;
    width: 100%;
    height: 380px;
    margin: 0 auto;
  }

  .trip-image img {
    height: 420px;
  }

  .trip-rating {
    top: 50%;
    right: 10%;
  }
}

/* Responsive Design - 600px */
@media (max-width: 600px) {
  .trip-of-month {
    padding: 0 15px;
  }

  .castle-container-small.trip {
    padding: 35px 25px;
    gap: 40px;
  }

  .section-title.black {
    font-size: 28px;
  }

  .trip-title {
    font-size: 32px;
  }

  .trip-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .trip-description {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .trip-images-section {
    height: 320px;
  }
  .hero-btn {
    padding: 12px 35px;
    font-size: 14px;
  }

  .trip-images-wrapper {
    max-width: 100%;
  }

  .trip-image {
    transform: scale(0.85) translateY(-15px);
  }
  .trip-image::before {
    font-size: 12px;
    padding: 6px 16px;
    top: 15px;
    right: 15px;
  }
}

/* Responsive Design - 480px */
@media (max-width: 480px) {
  .castle-container-small.trip {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .section-title.black {
    font-size: 26px;
  }

  .trip-title {
    font-size: 28px;
  }
  .trip-subtitle {
    font-size: 20px;
  }

  .trip-description {
    font-size: 12px;
  }

  .trip-bg {
    display: none;
  }

  .trip-image {
    height: 300px;
  }
}

/* Responsive Design - 360px */
@media (max-width: 360px) {
  .castle-container-small {
    padding: 25px 15px;
  }

  .section-title.black {
    font-size: 24px;
  }

  .trip-subtitle {
    font-size: 15px;
  }

  .trip-image {
    height: 0px;
  }
}

/* ===== CLIENT REVIEWS SECTION ===== */
.client-reviews {
  padding: 80px 0;
  position: relative;
  overflow-x: hidden;
}

.section-title.client {
  color: var(--secondary);
  text-align: center;
}

.section-title.client span {
  color: var(--primary);
}

.reviews-slider-container {
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  will-change: transform;
}

.review-card {
  background: #e7f4ff;
  border-radius: 20px;
  padding: 25px;
  max-width: 100%;
  width: 340px;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0.6;
  transform: scale(0.85) translateY(30px);
  position: relative;
  flex: 0 0 auto;
  margin-right: 10px;
  overflow: hidden;
}

.review-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.review-card > *:not(.review-card-bg) {
  position: relative;
  z-index: 1;
}

.review-card.active {
  opacity: 1;
  transform: scale(1.05) translateY(-30px);
  box-shadow: 0 25px 50px rgba(0, 109, 181, 0.2);
  background: linear-gradient(135deg, #e7f4ff 0%, #d0ebff 100%);
  z-index: 2;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: none;
  min-width: 40px;
  object-fit: cover;
  justify-content: center;
}
.reviewer-avatar img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 50px;
}
.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars i {
  color: var(--primary);
  font-size: 13px;
}

.review-text {
  font-size: 16px;
  font-weight: 400px;
  line-height: 1.6;
  color: #474545;
  opacity: 80%;
  margin-top: 12px;
}

/* Navigation Arrows */
.nav-arrow.review {
  border: 2px solid rgba(0, 0, 0, 0.74);
  background: white;
}

.nav-arrow.review:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.nav-arrow.review:hover svg {
  stroke: white;
}

.nav-arrow.review.left {
  left: 10px;
}

.nav-arrow.review.right {
  right: 10px;
}

.nav-arrow.review svg {
  stroke: rgba(0, 0, 0, 0.74);

  transition: stroke 0.3s ease;
}
.explore-btn-container {
  margin-top: 50px;
}
.explore-btn-container.center {
  text-align: center;
}

/* Responsive Design - 1200px */
@media (max-width: 1200px) {
  .section-title {
    font-size: 42px;
  }

  .review-card {
    width: 320px;
    min-width: 320px;
  }

  .reviews-slider-container {
    padding: 60px 0;
  }
}

/* Responsive Design - 1024px */
@media (max-width: 1024px) {
  .review-card {
    width: 300px;
    min-width: 300px;
  }

  .reviews-slider-container {
    padding: 60px 0;
  }
}

/* Responsive Design - 900px */
@media (max-width: 900px) {
  .client-reviews {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .reviews-slider-container {
    padding: 40px 0;
  }

  .review-card {
    width: 290px;
    min-width: 290px;
  }
}

/* Responsive Design - 768px */
@media (max-width: 768px) {
  .client-reviews {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 36px;
  }

  .review-card {
    width: 280px;
    min-width: 280px;
    padding: 20px;
  }

  .reviews-slider-container {
    padding: 40px 0;
  }

  .nav-arrow.review {
    width: 45px;
    height: 45px;
  }

  .reviewer-avatar {
    width: 45px;
    height: 45px;
    font-size: 15px;
  }

  .reviewer-name {
    font-size: 15px;
  }

  .review-stars i {
    font-size: 12px;
  }

  .review-text {
    font-size: 13px;
  }
}

/* Responsive Design - 600px */
@media (max-width: 600px) {
  .section-title.client {
    font-size: 30px;
  }

  .review-card {
    width: 260px;
    min-width: 260px;
    padding: 18px;
  }

  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .reviewer-name {
    font-size: 14px;
  }

  .review-text {
    font-size: 12px;
  }

  .reviews-slider-container {
    padding: 40px 0;
  }

  .nav-arrow.review {
    width: 40px;
    height: 40px;
  }

  .nav-arrow.review svg {
    width: 16px;
    height: 16px;
  }
}

/* Responsive Design - 480px */
@media (max-width: 480px) {
  .section-title.client {
    font-size: 26px;
  }

  .hero-btn {
    padding: 12px 40px;
    font-size: 14px;
  }

  .reviews-slider-container {
    padding: 40px 0;
  }

  .review-card {
    width: 240px;
    min-width: 240px;
  }
}

/* Responsive Design - 360px */
@media (max-width: 360px) {
  .section-title.client {
    font-size: 24px;
  }

  .reviews-slider-container {
    padding: 40px 0;
  }

  .review-card {
    width: 220px;
    min-width: 220px;
    padding: 16px;
  }

  .nav-arrow.review {
    width: 38px;
    height: 38px;
  }
}
/* OUr Blogs */
.our-blogs {
  background: rgba(237, 248, 255, 1);

  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.our-blogs::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;

  background-size: cover;
  pointer-events: none;
}

.blogs-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.blogs-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: 0;
}
.blogs-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.blog-card {
  border-radius: 16px;
}

.blog-card:hover {
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  background: #fff;
}

.blog-image {
  max-width: 100%;
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.blog-image img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 15px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--secondary);
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.blog-date {
  font-size: 14px;
  color: rgba(36, 36, 36, 0.7);
}
@media (max-width: 1200px) {
  .blogs-grid {
    gap: 10px;
  }
}

@media (max-width: 900px) {
  .blogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
    padding: 0 15px; /* ADD THIS */
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }

  .explore-btn {
    padding: 12px 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .blogs-title {
    font-size: 28px;
  }

  .blog-title {
    font-size: 15px;
  }
}

/* Hero Section Responsive */

@media (max-width: 600px) {
  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content {
    padding: 25px 0;
  }
}

/* Popular Treks Responsive */
@media (max-width: 1200px) {
  .treks-images-container {
    max-width: 500px;
    height: 370px;
  }

  .trek-slide {
    width: 250px;
    height: 350px;
  }

  .trek-slide.next {
    transform: translateY(-50%) translateX(90px) scale(0.9);
  }

  .trek-slide.next2 {
    transform: translateY(-50%) translateX(170px) scale(0.8);
  }
}

@media (max-width: 480px) {
  .trek-slide {
    width: 160px;
    height: 240px;
  }

  .trek-slide.next {
    transform: translateY(-50%) translateX(60px) scale(0.75);
  }

  .trek-slide.next2 {
    transform: translateY(-50%) translateX(110px) scale(0.65);
  }

  .treks-images-container {
    height: 300px;
  }
}

@media (max-width: 900px) {
  .castle-container-xlarge {
    padding: 0;
  }
}

@media (min-width: 1400px) {
  .nav-arrow.slider-left {
    left: -80px !important;
  }
  .nav-arrow.slider-right {
    right: -80px !important;
  }
  .nav-arrow.trek.left {
    left: -100px !important;
  }
  .nav-arrow.trek.right {
    right: 50px !important;
  }
}

.slide,
.trek-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}
.slide.prev,
.slide.next,
.trek-slide.next,
.trek-slide.next2 {
  filter: brightness(0.85); /* Simplify, remove rotateY for less GPU load */
}
:root {
  --transition-fast: 0.2s ease;
}
* {
  scroll-margin-top: 100px; /* Offset for fixed header */
}
