@charset "UTF-8";
.hero {
  position: relative;
  height: clamp(480px, 65vh, 640px);
  min-height: 480px;
  overflow: hidden;
}

.catalog-hero {
  min-height: clamp(300px, 38vw, 460px);
  padding: clamp(70px, 10vw, 130px) max(24px, calc((100vw - 1200px) / 2));
  color: #fff;
  background:
    linear-gradient(120deg, rgba(13, 31, 51, 0.94), rgba(28, 74, 79, 0.82)),
    url("../images/destinations/northeast/meghalaya/hero.webp") center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catalog-hero .breadcrumb { margin-bottom: 24px; }
.catalog-hero .breadcrumb a { color: #fff; }
.catalog-hero h1 {
  font: 700 clamp(2.4rem, 5vw, 4.5rem) / 1.05 "Playfair Display", serif;
  margin: 4px 0 16px;
}
.catalog-hero > p:last-child { max-width: 640px; font-size: 1.1rem; }
.catalog-main {
  max-width: none;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}
.package-filters {
  max-width: 1280px;
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid rgba(13, 31, 51, 0.1);
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.filter-buttons { display: flex; flex-wrap: wrap; gap: 9px; }
.package-filter {
  border: 1px solid rgba(13, 31, 51, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.package-filter:hover,
.package-filter:focus-visible,
.package-filter.is-active { background: var(--primary); color: #fff; }
.destination-filter { min-width: 210px; font-weight: 700; color: var(--primary); }
.destination-filter select {
  width: 100%;
  margin-top: 7px;
  padding: 10px 12px;
  border: 1px solid rgba(13, 31, 51, 0.18);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  font: inherit;
}
.all-packages-grid { max-width: 1280px; margin: 0 auto; }
.all-packages-grid .pkg-card[hidden] { display: none !important; }
.package-result-count { max-width: 1280px; margin: 0 auto 18px; color: var(--muted); }
.package-empty { text-align: center; padding: 50px 20px; }
.package-empty[hidden] { display: none !important; }
.section-action { display: flex; justify-content: center; margin-top: 34px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--accent); color: #fff; }

@media (max-width: 760px) {
  .package-filters { align-items: stretch; flex-direction: column; }
  .destination-filter { min-width: 0; }
}
.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;
  will-change: transform;
}
.hero.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.slides--no-animate {
  transition: none !important;
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.slide-content {
  position: absolute;
  bottom: 100px;
  left: 80px;
  color: white;
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.slide-content h1,
.slide-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 4.4vw, 66px);
  font-weight: 700;
  line-height: 1.05;
  max-width: 700px;
}
.slide-content h1 + .slide-destination {
  margin-top: 0.35rem;
}
.slide-content h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.slide-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 16px;
  max-width: 520px;
  line-height: 1.5;
}
.btn-hero {
  display: inline-block;
  margin-top: 28px;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 164, 39, 0.45);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 31, 51, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
  min-width: 58px;
  height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  z-index: 10;
  box-shadow: 0 14px 28px rgba(17, 32, 52, 0.16);
}
.slider-btn:hover {
  background: rgba(13, 31, 51, 0.28);
  color: white;
  transform: translateY(-50%) translateX(0);
  box-shadow: 0 18px 34px rgba(17, 32, 52, 0.2);
}
.slider-prev {
  left: 14px;
}
.slider-next {
  right: 14px;
}
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 0;
}
.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}
.section-wrapper {
  padding: 48px 72px 54px;
  scroll-margin-top: var(--anchor-offset, 106px);
}
.section-wrapper.bg-light {
  background: var(--light);
}
.section-wrapper.bg-white {
  background: white;
}

.hero-followup {
  padding: 42px 24px 38px;
  background: #fff;
  text-align: center;
}

.hero-followup h1 {
  margin: 8px auto 0;
  max-width: 980px;
  color: var(--primary);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.08;
}

@media (max-width: 520px) {
  .hero-followup {
    padding: 30px 18px 28px;
  }

  .hero-followup h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }
}
.section-header {
  text-align: center;
  margin-bottom: 28px;
}
.section-label {
  font-size: 12px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  color: var(--primary);
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: #777;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-groups {
  display: grid;
  gap: 34px;
}

.destination-group {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 60, 94, 0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.04);
}

.destination-group-header {
  margin-bottom: 24px;
}

.destination-group-kicker {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.destination-group-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 8px;
}

.destination-group-desc {
  color: #6a6a6a;
  font-size: 15px;
  line-height: 1.7;
  max-width: 760px;
}
.dest-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-card:hover img {
  transform: scale(1.1);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.1) 60%
  );
  transition: background 0.3s;
  pointer-events: none;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(
    to top,
    rgba(26, 60, 94, 0.88) 0%,
    rgba(0, 0, 0, 0.2) 60%
  );
}
.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: white;
}
.dest-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.dest-tag {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 10px;
}
.dest-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
}
.dest-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}
.dest-card:hover .dest-arrow {
  opacity: 1;
  transform: translateY(0);
}
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.theme-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  text-decoration: none;
  display: block;
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.12);
  transition:
    transform 0.35s,
    box-shadow 0.35s;
}
.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s;
}
.theme-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(17, 17, 17, 0.18);
}
.theme-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.06);
}
.theme-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 94, 0.75) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  transition: background 0.3s;
  pointer-events: none;
}
.theme-card:hover .theme-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 60, 94, 0.88) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.theme-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  text-align: center;
  padding: 28px 24px;
  transition: transform 0.3s ease;
}
.theme-icon {
  font-size: 38px;
  line-height: 1;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}
.theme-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.theme-content p {
  font-size: 13px;
  opacity: 0.85;
  margin: 0;
  max-width: 420px;
  line-height: 1.45;
}
.theme-btn {
  display: none;
}

.theme-carousel {
  position: relative;
}

.theme-carousel-viewport {
  overflow: visible;
}

.theme-carousel-btn {
  display: none;
}

.themes-grid {
  counter-reset: theme-item;
}

.theme-card {
  counter-increment: theme-item;
}

.theme-icon::before {
  content: counter(theme-item, decimal-leading-zero);
}

.services-grid {
  counter-reset: service-item;
}

.service-card {
  counter-increment: service-item;
}

.service-icon::before {
  content: counter(service-item, decimal-leading-zero);
}

.theme-icon,
.service-icon {
  font-family: "DM Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.faq-list {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid rgba(24, 58, 91, 0.16);
}

.faq-item {
  border-bottom: 1px solid rgba(24, 58, 91, 0.16);
  background: transparent;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 4px;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-number {
  align-self: stretch;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(24, 58, 91, 0.18);
  color: var(--accent);
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.faq-symbol {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(24, 58, 91, 0.28);
  border-radius: 50%;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.faq-symbol::before,
.faq-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-symbol {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item[open] .faq-symbol::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 62px 28px 74px;
  color: var(--muted, #5f6872);
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
  max-width: 760px;
}

.faq-item[open] .faq-answer {
  animation: faq-reveal 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 36px;
    gap: 12px;
    min-height: 78px;
    font-size: 1.16rem;
  }

  .faq-number {
    border-right: 0;
  }

  .faq-symbol {
    width: 34px;
    height: 34px;
  }

  .faq-answer {
    padding: 0 48px 24px 46px;
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.carousel-track {
  --slides-per-view: 4;
  --carousel-gap: 20px;
  display: flex;
  gap: var(--carousel-gap);
  padding: 4px 2px 10px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-track--no-animate {
  transition: none !important;
}

.carousel-track > * {
  flex: 0 0
    calc(
      (100% - (var(--carousel-gap) * (var(--slides-per-view) - 1))) /
        var(--slides-per-view)
    );
  min-width: 0;
}

.carousel-viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.package-carousel-track {
  --carousel-gap: 18px;
}

.bike-carousel-track {
  --carousel-gap: 18px;
}

.destination-carousel-track {
  --carousel-gap: 24px;
}

.testimonial-carousel-track {
  --carousel-gap: 18px;
  margin-top: 8px;
}

.package-group {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(26, 60, 94, 0.08);
  border-radius: 28px;
  padding: 20px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.04);
}

.package-group + .package-group {
  margin-top: 22px;
}

.package-group-header {
  text-align: left;
  align-items: flex-start;
  margin-bottom: 18px;
}

.package-group-header .section-label {
  margin-bottom: 10px;
}

.package-group-header .section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.package-group-header .section-subtitle {
  margin: 0;
  max-width: 760px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel-btn {
  min-width: 54px;
  height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: none;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(26, 60, 94, 0.08);
  color: var(--accent);
  box-shadow: 0 10px 24px rgba(26, 60, 94, 0.08);
}

.carousel-btn:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.bike-section {
  position: relative;
  overflow: hidden;
}

.bike-section::before {
  display: none;
}

.bike-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.packages-grid.carousel-track,
.bike-grid.carousel-track,
.destinations-grid.carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
}
.pkg-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.14);
}
.pkg-card-img {
  position: relative;
  aspect-ratio: 16 / 9.2;
  overflow: hidden;
}
.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(241, 171, 32, 0.18);
}
.pkg-body {
  padding: 14px 16px 10px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.pkg-location {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.pkg-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.18;
  min-height: 2.36em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-body p {
  font-size: 12.5px;
  color: #777;
  line-height: 1.38;
  margin-bottom: auto;
  min-height: 2.76em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pkg-footer {
  padding: 10px 16px 14px;
  border-top: 1px solid #f0f0f0;
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.pkg-footer > div {
  display: grid;
  gap: 5px;
  width: 100%;
}
.pkg-meta-item {
  font-size: 12.5px;
  color: #888;
}
.pkg-meta-item strong {
  color: var(--primary);
}
.pkg-footer .pkg-meta-item:first-child {
  font-size: 14px;
  color: var(--primary);
}
.btn-pkg {
  background: var(--primary);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.pkg-card:hover .btn-pkg {
  background: var(--accent);
  transform: translateY(-1px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.55;
}

#packages,
#bike-packages,
#themes {
  padding-top: 28px;
}

#destinations,
#packages,
#bike-packages {
  padding-bottom: 30px;
}
.experiences-grid,
.business-grid,
.utility-grid {
  display: grid;
  gap: 24px;
}
.experiences-grid {
  grid-template-columns: repeat(3, 1fr);
}
.business-grid,
.utility-grid {
  grid-template-columns: repeat(2, 1fr);
}
.experience-card,
.business-card,
.utility-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.experience-card {
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}
.experience-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.experience-body,
.business-card,
.utility-card {
  padding: 24px;
}
.experience-kicker,
.business-kicker,
.utility-kicker {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.experience-body h3,
.business-card h3,
.utility-card h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 10px;
}
.experience-body p,
.business-card p,
.utility-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
.experience-link,
.business-link,
.utility-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}
.business-card {
  text-align: left;
}
.utility-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-strip {
  background: var(--primary);
  padding: 3rem 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-number span {
  font-size: 0.68em;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

.section-desc {
  font-size: 16px;
  color: #777;
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.testimonials-grid.carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: var(--carousel-gap);
  margin-top: 12px;
}

.testimonial-card {
  background: var(--light);
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 3px solid var(--accent);
  height: 100%;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-origin {
  font-size: 0.85rem;
  color: #888;
}

.why-card {
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.why-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}
#trip-form {
  background: var(--primary);
  color: white;
  padding: 90px 80px;
}
.form-inner {
  max-width: 900px;
  margin: 0 auto;
}
.form-header {
  text-align: center;
  margin-bottom: 48px;
}
.form-header .section-label {
  color: var(--accent);
}
.form-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
}
.form-header p {
  opacity: 0.8;
  margin-top: 10px;
  font-size: 16px;
}
.form-header .form-promise {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  opacity: 0.95;
}
.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -24px 0 28px;
}
.form-trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-width: 0;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-width: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.18);
}
form.form-was-validated .form-group input:invalid,
form.form-was-validated .form-group select:invalid,
form.form-was-validated .form-group textarea:invalid {
  border-color: rgba(255, 216, 216, 0.9);
}
.form-group select option {
  background: var(--primary);
  color: white;
}
.form-full {
  grid-column: 1 / -1;
}
.form-helper {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}
.form-status {
  min-height: 20px;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
}
.form-status.is-error {
  color: #ffd8d8;
}
.form-status.is-success {
  color: #d7ffd7;
}
.btn-submit {
  display: block;
  width: 100%;
  margin-top: 8px;
  background: var(--accent);
  color: white;
  padding: 18px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
  box-shadow: none;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 164, 39, 0.45);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.contact-icon img {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-icon--whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #17b85a 100%);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.26);
}

.contact-icon--whatsapp svg {
  width: 30px;
  height: 30px;
  display: block;
}

.contact-icon.emoji-icon {
  font-size: 32px;
}
.contact-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-card p,
.contact-card a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  display: block;
  line-height: 1.7;
}
.contact-card a:hover {
  color: var(--accent);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-overlay.show {
  display: flex;
}
.modal {
  background: white;
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 400px;
  animation: fadeUp 0.3s ease;
}
.modal-status-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 34px;
  margin-bottom: 14px;
  border: 1px solid rgba(24, 58, 91, 0.2);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.modal h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary);
  margin: 16px 0 8px;
}
.modal p {
  color: #666;
  font-size: 15px;
}
.modal .ok-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
}

.page-up {
  position: fixed;
  right: 32px;
  bottom: 120px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(20, 51, 87, 0.72);
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(20, 51, 87, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  z-index: 998;
}

.page-up.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-up:hover {
  transform: translateY(-3px);
  background: rgba(20, 51, 87, 0.9);
}
@media (max-width: 1100px) {
  .destinations-grid,
  .experiences-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .themes-grid,
  .packages-grid,
  .bike-grid,
  .services-grid,
  .business-grid,
  .utility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .hero {
    height: min(70svh, 560px);
    min-height: 480px;
  }
  .section-wrapper,
  #trip-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  .section-wrapper {
    padding-top: 56px;
    padding-bottom: 54px;
  }

  #packages,
  #bike-packages,
  #themes {
    padding-top: 58px;
  }

  #destinations,
  #packages,
  #bike-packages {
    padding-bottom: 46px;
  }

  #trip-form {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .form-inner {
    width: 100%;
  }

  .form-header {
    margin-bottom: 36px;
  }
  .destination-group {
    padding: 22px 18px;
  }
  .destination-group-title {
    font-size: 24px;
  }
  .package-carousel-track {
    --carousel-gap: 18px;
  }
  .bike-carousel-track {
    --carousel-gap: 18px;
  }
  .destination-carousel-track {
    --carousel-gap: 24px;
  }
  .package-group {
    padding: 20px 18px;
  }
  .package-group-header .section-title {
    font-size: 1.9rem;
  }
  .pkg-card-img {
    aspect-ratio: 16 / 8.35;
  }
  .slide-content {
    left: 20px;
    right: 20px;
    bottom: 80px;
  }
  .slide-content h1,
  .slide-content h2 {
    font-size: 42px;
  }
  .slide-content p {
    font-size: 17px;
    max-width: 100%;
  }
  .slider-btn {
    min-width: 46px;
    height: 40px;
    padding: 0 8px;
    font-size: 24px;
  }
  .form-grid,
  .packages-grid,
  .bike-grid,
  .services-grid,
  .experiences-grid,
  .business-grid,
  .utility-grid,
  .destinations-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  #themes .theme-carousel {
    margin: 0 -2px;
  }

  #themes .theme-carousel-viewport {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  #themes .theme-carousel-viewport::-webkit-scrollbar {
    display: none;
  }

  #themes .themes-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    align-items: stretch;
    padding: 4px 44px 12px;
  }

  #themes .theme-card {
    flex: 0 0 min(76vw, 340px);
    scroll-snap-align: center;
  }

  #themes .theme-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(26, 60, 94, 0.9);
    color: white;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 12px 24px rgba(17, 32, 52, 0.18);
    transform: translateY(-50%);
  }

  #themes .theme-carousel-btn--prev {
    left: 4px;
  }

  #themes .theme-carousel-btn--next {
    right: 4px;
  }
}
@media (max-width: 520px) {
  .stats-strip {
    padding: 20px 0;
    overflow: hidden;
  }

  .stats-grid {
    display: flex;
    gap: 10px;
    max-width: none;
    padding: 2px 16px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    text-align: center;
  }

  .stats-grid::-webkit-scrollbar,
  #services .services-grid::-webkit-scrollbar,
  .planning-section .services-grid::-webkit-scrollbar {
    display: none;
  }

  .stat-item {
    flex: 0 0 40vw;
    min-width: 132px;
    padding: 12px 10px;
    scroll-snap-align: center;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 1.1px;
  }

  #services .services-grid,
  .planning-section .services-grid {
    display: flex;
    gap: 14px;
    margin: 0 -20px;
    padding: 4px 20px 16px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  #services .service-card,
  .planning-section .service-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 220px;
    padding: 26px 22px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .hero {
    height: min(70svh, 540px);
    min-height: 480px;
  }
  .package-carousel-track {
    --carousel-gap: 16px;
  }
  .bike-carousel-track {
    --carousel-gap: 16px;
  }
  .destination-carousel-track {
    --carousel-gap: 18px;
  }
  .carousel-controls {
    margin-top: 8px;
  }
  .carousel-btn {
    min-width: 44px;
    height: 40px;
    font-size: 24px;
  }
  .pkg-body {
    padding: 16px 16px 14px;
  }
  .pkg-body h3 {
    font-size: 18px;
  }
  .pkg-body p {
    -webkit-line-clamp: 3;
  }
  .package-group {
    padding: 20px 16px;
  }
  .package-group-header .section-title {
    font-size: 1.65rem;
  }
  .slide-content h1,
  .slide-content h2 {
    font-size: 32px;
    line-height: 1.08;
    max-width: 100%;
  }
  .slide-content p {
    font-size: 15px;
    margin-top: 12px;
  }
  .slide-tag {
    margin-bottom: 12px;
    padding: 5px 14px;
  }
  .btn-hero {
    margin-top: 20px;
    padding: 14px 22px;
    width: 100%;
    text-align: center;
  }
  .section-title,
  .form-header h2 {
    font-size: 32px;
  }
  .section-wrapper {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .section-header {
    margin-bottom: 38px;
  }
  .pkg-body,
  .pkg-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .pkg-footer,
  .pkg-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-pkg {
    width: 100%;
  }
  .theme-content {
    padding: 24px 18px;
    gap: 8px;
  }
  .theme-content h3,
  .dest-content h3 {
    font-size: 22px;
  }
  .theme-icon {
    font-size: 34px;
  }

  .theme-card:hover .theme-content {
    transform: none;
  }

  .dest-arrow {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 430px) {
  .section-wrapper,
  #trip-form {
    padding-left: 16px;
    padding-right: 16px;
  }

  #trip-form {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-title,
  .form-header h2 {
    font-size: 28px;
  }

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

  .slide-content {
    left: 16px;
    right: 16px;
    bottom: 72px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 28px;
  }

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

  .page-up {
    right: auto;
    left: 18px;
    bottom: max(16px, env(safe-area-inset-bottom, 0px) + 10px);
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .slider-btn {
    display: none;
  }

  .destination-group,
  .service-card,
  .business-card,
  .utility-card,
  .why-card,
  .pkg-card,
  .theme-card {
    border-radius: 20px;
  }

  .destination-group {
    padding: 20px 16px;
  }

  .stats-grid {
    gap: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.35rem;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 460px;
  }

  .slide-content {
    bottom: 64px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: 26px;
  }

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

  .slide-tag {
    font-size: 11px;
    padding: 4px 12px;
  }

  .btn-hero {
    padding: 13px 18px;
  }

  .stat-item { flex-basis: 44vw; }
}
