


/* Dark overlay like your screenshot */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* Text on hero */
.hero-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  opacity: 0.95;
}

.loc-icon {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-uttarakhand {
    height: 65vh;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }
}

.full-width {
  width: 100%;
  background: #fff;
  padding: 27px 0;
}

.section-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.two-image-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.content-left-premium h2 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 600;
}

.content-left-premium p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #222;
  margin-bottom: 18px;
}

/* IMAGE STACK */
.right-images-duo {
  position: relative;
  width: 100%;
  height: 520px;
}

.img-back {
  position: absolute;
  right: 0;
  top: 0;
  width: 75%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  z-index: 1;
}

.img-front {
  position: absolute;
  left: -40px;
  bottom: -20px;
  width: 55%;
  object-fit: cover;
  transform: rotate(-8deg);
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .two-image-gallery {
    grid-template-columns: 1fr;
  }

  .right-images-duo {
    position: relative;
    height: auto;
    min-height: 300px;
    margin-top: 30px;
  }

  .img-back {
    position: relative;
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
  }

  .img-front {
    position: absolute;
    width: 160px;  /* Smaller on mobile */
    height: 180px; /* Fixed height to maintain aspect */
    object-fit: cover;
    left: 15px;
    bottom: -15px;
    transform: rotate(-5deg); /* Less rotation on mobile */
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .img-front {
    width: 130px;
    height: 150px;
    left: 10px;
    bottom: -10px;
  }

  .img-back {
    height: 220px;
  }
}

.cities-section {
  background: #f5f2ee;
  padding: 80px 20px;
  text-align: center;
}

.cities-title {
  font-size: 2rem;
  font-family: serif;
  margin-bottom: 60px;
}

.cities-slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.cities-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.city-card {
  min-width: 280px;
  background: #f5f2ee;
  border: 1px solid #ccc;
  text-align: left;
}

.city-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.city-name {
  padding: 20px;
  font-size: 1.4rem;
  font-family: serif;
}

.cities-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  z-index: 10;
}

.cities-nav.prev {
  left: -20px;
}

.cities-nav.next {
  right: -20px;
}

@media (max-width: 768px) {
  .cities-title {
    font-size: 2rem;
  }

  .city-card {
    min-width: 220px;
  }
}
.featured-section {
  padding: 35px 20px;
  background: #fff;
  text-align: center;
}

.featured-title {
  font-size: 2rem;
  font-family: serif;
  margin-bottom: 60px;
}

.featured-slider-wrap {
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.featured-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.featured-card {
  min-width: 280px;
  border: 1px solid #ddd;
  background: #fff;
  text-align: left;
}

.featured-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.featured-body {
  padding: 22px;
}

.featured-body h3 {
  font-family: serif;
  font-size: 1.35rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

.btn-view {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid #ff6a2a;
  color: #ff6a2a;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-view:hover {
  background: #ff6a2a;
  color: #fff;
}

.featured-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 38px;
  text-align: center;
  z-index: 10;
}

.featured-nav.prev { left: -20px; }
.featured-nav.next { right: -20px; }
.best-time-section {
  background: #f6f3ee;
  padding: 20px 20px;
  text-align: center;
}

.best-time-section h2 {
  font-family: serif;
  font-size: 2.2rem;
  margin-bottom: 34px;
  color: #000;
}

.best-time-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: start;
  gap: 40px;
}

.best-time-card {
  text-align: left;
  padding: 0 20px;
}

.best-time-card .icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.best-time-card h3 {
  font-family: serif;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.best-time-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.divider {
  width: 1px;
  height: 180px;
  background: #aaa;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .best-time-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .divider {
    display: none;
  }

  .best-time-card {
    text-align: center;
  }
}
.experts-cta {
  background: radial-gradient(circle at left, #3c73c9, #0b5fb8, #0a3f88);
  padding: 80px 30px;
}

.experts-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.experts-left small {
  color: #fff;
  opacity: 0.9;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.experts-left h2 {
  color: #fff;
  font-family: serif;
  font-size: 2rem;
  max-width: 520px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.btn-orange {
  background: #ff6a1a;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background: #ff7f3a;
}

.experts-right {
  text-align: center;
}

.experts-avatars {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.experts-avatars img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  background: #fff;
}
@media (max-width: 900px) {
  .experts-container {
    flex-direction: column;
    text-align: center;
  }

  .experts-left h2 {
    font-size: 2.2rem;
  }

  .experts-avatars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .experts-avatars img {
    width: 70px;
    height: 70px;
  }
}


.must-visit {
  padding: 25px 20px;
  background: #fff;
  overflow: hidden; /* Prevent horizontal scroll */
}

.must-visit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center; /* Better vertical alignment */
}

.must-visit-text {
  padding-right: 20px; /* Add some breathing room */
}

.must-visit-text h2 {
  font-family: serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #222;
}

.must-visit-text h3 {
  font-size: 1.4rem;
  margin: 25px 0 15px;
  color: #333;
}

.must-visit-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.must-visit-text ul,
.must-visit-text ol {
  margin: 15px 0 20px;
  padding-left: 20px;
}

.must-visit-text li {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}

.must-visit-text strong {
  color: #222;
  font-weight: 600;
}

.must-visit-text a {
  color: #0066cc;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.must-visit-text a:hover {
  border-bottom-color: #0066cc;
}

.must-visit-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.must-visit-image img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.must-visit-image:hover img {
  transform: scale(1.03);
}

/* Optional: Add overlay for better text readability on image */
.must-visit-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.must-visit-image:hover::after {
  opacity: 1;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .must-visit-container {
    gap: 40px;
  }

  .must-visit-text h2 {
    font-size: 2rem;
  }

  .must-visit-text h3 {
    font-size: 1.3rem;
  }

  .must-visit-image img {
    min-height: 350px;
  }
}

/* Tablet Portrait & Mobile (up to 768px) */
@media (max-width: 768px) {
  .must-visit {
    padding: 50px 20px;
  }

  .must-visit-container {
    grid-template-columns: 1fr; /* Stack vertically */
    gap: 30px;
  }

  .must-visit-text {
    padding-right: 0;
    order: 1; /* Text first on mobile */
  }

  .must-visit-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .must-visit-text h3 {
    font-size: 1.3rem;
    margin: 20px 0 12px;
  }

  .must-visit-text p,
  .must-visit-text li {
    font-size: 15px;
    line-height: 1.7;
  }

  .must-visit-image {
    order: 2; /* Image second on mobile */
    max-width: 100%;
    margin: 0 auto;
  }

  .must-visit-image img {
    min-height: 300px;
    max-height: 400px;
    width: 100%;
    border-radius: 8px;
  }

  /* Remove hover effects on mobile */
  .must-visit-image:hover img {
    transform: none;
  }

  .must-visit-image::after {
    display: none;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .must-visit {
    padding: 40px 15px;
  }

  .must-visit-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .must-visit-text h3 {
    font-size: 1.2rem;
    margin: 18px 0 10px;
  }

  .must-visit-text p,
  .must-visit-text li {
    font-size: 14px;
    line-height: 1.6;
  }

  .must-visit-image img {
    min-height: 250px;
    max-height: 300px;
  }
}

/* Handle itinerary content specially */
.must-visit-text .day-heading {
  font-weight: 600;
  color: #ff6a00;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.must-visit-text .day-heading:first-of-type {
  margin-top: 0;
}

/* If you want a border between days */
.must-visit-text .day-block {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.must-visit-text .day-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}




.faq-section {
  padding: 29px 20px;
  background: #f5f2ee;
}

.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-container h2 {
  font-family: serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.faq-item {
  border-bottom: 1px solid #bbb;
  padding: 20px 0;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.faq-question .icon {
  color: #ff6a00;
  font-size: 28px;
  font-weight: bold;
  width: 25px;
}

.faq-answer {
  display: none;
  padding-left: 40px;
  margin-top: 15px;
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-item.active .faq-answer {
  display: block;
}
@media (max-width: 768px) {
  .faq-container h2 {
    font-size: 2.2rem;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer {
    padding-left: 20px;
  }
}
.things-section {
  padding: 13px 20px; /* Reduced padding on sides */
  background: #fff;
  overflow: hidden; /* Prevent horizontal scroll */
}

.things-section h2 {
  text-align: center;
  font-family: serif;
  font-size: 42px;
  margin-bottom: 40px;
  padding: 0 15px; /* Add padding for mobile */
}

.things-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px; /* Space for arrows */
}

.things-slider-container {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.things-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.things-card {
  min-width: 300px;
  flex: 0 0 calc(33.333% - 14px); /* For desktop: 3 cards */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease;
}

.things-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.things-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.things-card h3 {
  font-family: serif;
  font-size: 22px;
  margin: 15px 15px 8px;
  color: #333;
}

.things-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0 15px 20px;
}

/* Arrow Styling */
.arrow {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.arrow:hover {
  background: #f8f8f8;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  border-color: #999;
}

.arrow.left {
  left: 5px;
}

.arrow.right {
  right: 5px;
}

/* Tablet View (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .things-card {
    min-width: 280px;
    flex: 0 0 calc(50% - 10px); /* 2 cards on tablet */
  }

  .things-section h2 {
    font-size: 36px;
  }

  .arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Mobile View (up to 768px) */
@media (max-width: 768px) {
  .things-section {
    padding: 40px 15px;
  }

  .things-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    line-height: 1.3;
  }

  .things-wrapper {
    padding: 0 20px; /* Less space for arrows on mobile */
  }

  .things-card {
    min-width: 260px;
    flex: 0 0 calc(100% - 1px); /* Show 1 card with some gap */
  }

  .things-card img {
    height: 180px; /* Smaller images on mobile */
  }

  .things-card h3 {
    font-size: 20px;
    margin: 12px 12px 6px;
  }

  .things-card p {
    font-size: 14px;
    margin: 0 12px 15px;
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(255,255,255,0.9);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .arrow.left {
    left: 0;
  }

  .arrow.right {
    right: 0;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .things-section {
    padding: 30px 10px;
  }

  .things-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .things-wrapper {
    padding: 0 15px;
  }

  .things-card {
    min-width: 220px;
  }

  .things-card img {
    height: 160px;
  }

  .things-card h3 {
    font-size: 18px;
  }

  .arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  /* Optional: Hide arrows on very small screens and rely on swipe */
  @media (max-width: 360px) {
    .arrow {
      display: none;
    }

    .things-wrapper {
      padding: 0;
    }
  }
}

/* Touch-friendly scrolling */
.things-slider {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Optional: Show scroll indicator on mobile */
@media (max-width: 768px) {
  .things-slider-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8));
    pointer-events: none;
    opacity: 0.5;
  }
}



  .reviews-section {
            padding: 0px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* LEFT SECTION - Your original design */
        .reviews-left {
            width: 100%;
            padding-right: 20px;
        }

        .reviews-left h2 {
            font-size: 42px;
            font-family: serif;
            margin-bottom: 30px;
            line-height: 1.2;
            color: #000;
        }

        .rating-box {
            margin-top: 40px;
        }

        .rating-box h3 {
            font-size: 28px;
            color: #00aa6c;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .rating-circles {
            display: flex;
            gap: 8px;
            margin: 15px 0;
        }

        .rating-circles span,
        .review-stars span {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 3px solid #00aa6c;
            display: inline-block;
        }

        .rating-box p {
            margin-top: 10px;
            font-size: 16px;
            color: #333;
        }

        .rating-box strong {
            font-weight: 700;
        }

        .trip-logo {
            margin-top: 25px;
            width: 160px;
            height: auto;
            display: block;
        }

        /* RIGHT SECTION - Slider */
        .reviews-right {
            width: 100%;
            position: relative;
            padding: 0 10px;
        }

        /* slider */
        .reviews-slider {
            width: 100%;
            overflow: hidden;
            padding: 10px 0;
        }

        .reviews-track {
            display: flex;
            gap: 25px;
            transition: transform 0.6s ease;
        }

        /* card */
        .review-card {
            flex: 0 0 calc(33.333% - 17px);
            background: #f6f6f6;
            padding: 22px;
            border-radius: 18px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            min-width: 0; /* Prevents flex item from overflowing */
        }

        /* header */
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            object-fit: cover;
        }

        .review-header div {
            flex-grow: 1;
            min-width: 0; /* Prevents text overflow */
        }

        .review-header h4 {
            font-size: 16px;
            color: #000;
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .review-header span {
            font-size: 14px;
            color: #666;
        }

        .ta-badge {
            width: 20px;
            height: auto;
            flex-shrink: 0;
        }

        /* stars */
        .review-stars {
            display: flex;
            gap: 6px;
            margin-bottom: 15px;
        }

        .review-card p {
            font-size: 15px;
            line-height: 1.5;
            color: #333;
            margin-bottom: 12px;
            /* display: -webkit-box;
            webkit-line-clamp: 3;
            -webkit-box-orient: vertical; */
            overflow: hidden;
        }

        .review-card a {
            color: #00aa6c;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
        }

        .review-card a:hover {
            text-decoration: underline;
        }

        /* arrows */
        .review-arrow {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #fff;
            border: 1px solid #ddd;
            cursor: pointer;
            font-size: 18px;
            position: absolute;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            top: 50%;
            transform: translateY(-50%);
        }

        .review-arrow:hover {
            background: #f0f0f0;
        }

        .review-arrow.left {
            left: -10px;
        }

        .review-arrow.right {
            right: -10px;
        }

        /* Dots indicator */
        .slider-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 25px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: #00aa6c;
        }

        /* RESPONSIVE DESIGN */
        /* Desktop (1024px and above) - Original layout */
        @media (min-width: 1024px) {
            .reviews-container {
                flex-direction: row;
                grid-template-columns: 35% 65%;
                display: grid;
            }

            .review-card {
                flex: 0 0 calc(33.333% - 17px);
            }

            .review-arrow.left {
                left: -20px;
            }

            .review-arrow.right {
                right: -20px;
            }
        }

        /* Tablet (768px to 1023px) */
        @media (max-width: 1023px) and (min-width: 768px) {
            .reviews-container {
                flex-direction: column;
            }

            .reviews-left {
                padding-right: 0;
                text-align: center;
            }

            .reviews-left h2 {
                font-size: 36px;
            }

            .rating-box {
                max-width: 500px;
                margin: 40px auto 0;
            }

            .rating-circles {
                justify-content: center;
            }

            .review-card {
                flex: 0 0 calc(50% - 13px);
                min-width: 0;
            }

            .review-arrow.left {
                left: -10px;
            }

            .review-arrow.right {
                right: -10px;
            }

            .slider-dots {
                display: flex;
            }
        }

        /* Mobile (below 768px) */
        @media (max-width: 767px) {
            .reviews-section {
                padding: 40px 15px;
            }

            .reviews-container {
                gap: 30px;
            }

            .reviews-left {
                padding-right: 0;
                text-align: center;
            }

            .reviews-left h2 {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .rating-box {
                margin-top: 30px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .rating-box h3 {
                font-size: 24px;
            }

            .rating-circles {
                justify-content: center;
                margin: 10px 0;
            }

            .trip-logo {
                margin: 20px auto 0;
            }

            .reviews-right {
                padding: 0;
            }

            .review-card {
                flex: 0 0 100%;
                padding: 20px;
                margin: 0 5px;
            }

            .review-arrow {
                width: 36px;
                height: 36px;
                font-size: 16px;
                display: none; /* Hide arrows on small mobile */
            }

            .review-arrow.left {
                left: 5px;
                display: flex; /* Show arrows on tablets */
            }

            .review-arrow.right {
                right: 5px;
                display: flex; /* Show arrows on tablets */
            }

            .slider-dots {
                display: flex;
            }

            /* Hide arrows on very small screens */
            @media (max-width: 480px) {
                .review-arrow {
                    display: none;
                }
            }
        }

        /* Extra Small Mobile */
        @media (max-width: 480px) {
            .reviews-section {
                padding: 30px 10px;
            }

            .reviews-left h2 {
                font-size: 24px;
            }

            .rating-box {
                margin-top: 25px;
                padding: 0 10px;
            }

            .review-card {
                padding: 18px;
            }

            .avatar {
                width: 36px;
                height: 36px;
            }

            .review-header h4 {
                font-size: 15px;
            }

            .review-header span {
                font-size: 13px;
            }
        }

        /* Touch support */
        .reviews-slider {
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
        }






  .footer-banner-diagonal {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: #0057b8;
}

/* Background Image */
.footer-banner-diagonal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Left Content Panel */
.banner-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 55%;
  padding: 35px 50px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #0057b8;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

/* Text Styles */
.donation-text {
  color: #ffd44d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-left h2 {
  color: #fff;
  font-size: 36px;
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #ff7a18;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #ff5e00;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-left {
    width: 100%;
    clip-path: none;
    padding: 25px;
  }

  .banner-left h2 {
    font-size: 26px;
  }
}






.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  padding: 34px 20px 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* columns */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #ddd;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* contact */
.contact li {
  font-size: 14px;
  color: #ddd;
}

/* social */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fff;
  color: #000;
}

/* bottom */
.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 18px;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.4);
  color: #ccc;
}

/* responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
