/* JustWravel-inspired homepage (below hero) — Nature Holiday brand blues */
:root {
  --jw-blue: #2f6fed;
  --jw-blue-dark: #1d4ed8;
  --jw-green: #22c55e;
  --jw-ink: #0f172a;
  --jw-muted: #64748b;
  --jw-line: #e2e8f0;
  --jw-soft: #f8fafc;
}

.jw-page {
  background: #fff;
  color: var(--jw-ink);
  overflow-x: hidden;
}

.jw-wrap {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Category circular strip — floating pill with photo chips */
.jw-cats {
  margin-top: -42px;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 3;
}
.jw-cats-shell {
  position: relative;
  display: block;
}
.jw-cats-clip {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.9) inset,
    0 0 0 1px rgba(226, 232, 240, 0.95);
}
.jw-cats-clip::before,
.jw-cats-clip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.jw-cats-clip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 15%, transparent);
}
.jw-cats-clip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 15%, transparent);
}
.jw-cats-shell.is-scrollable .jw-cats-clip::before,
.jw-cats-shell.is-scrollable .jw-cats-clip::after {
  opacity: 1;
}
.jw-cats-inner {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 0.35rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 1.05rem 1.5rem 1.1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}
.jw-cats-inner::-webkit-scrollbar {
  display: none;
}
.jw-cats-inner.is-scrollable {
  justify-content: flex-start;
  gap: 0.75rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  scroll-snap-type: x mandatory;
}
.jw-cats-arrow {
  display: none !important;
}
.jw-cat {
  flex: 0 0 auto;
  width: 90px;
  min-width: 90px;
  max-width: 90px;
  text-align: center;
  text-decoration: none !important;
  color: inherit;
  padding: 0.15rem 0.1rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  transform: none;
  scroll-snap-align: start;
  transition: color 0.2s ease;
}
.jw-cats-inner.is-scrollable .jw-cat {
  width: 86px;
  min-width: 86px;
  max-width: 86px;
}
.jw-cat:hover,
.jw-cat.active,
.jw-cat:focus,
.jw-cat:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: none;
  text-decoration: none !important;
  outline: none;
}
.jw-cat-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 0.55rem;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow:
    0 0 0 2px #dbeafe,
    0 6px 14px rgba(15, 23, 42, 0.12);
  background: #e2e8f0 center/cover no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.jw-cat-icon.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.jw-cat:hover .jw-cat-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 0 2px #93c5fd,
    0 10px 20px rgba(47, 111, 237, 0.18);
}
.jw-cat.active .jw-cat-icon {
  box-shadow:
    0 0 0 2.5px #2f6fed,
    0 10px 22px rgba(47, 111, 237, 0.22);
  transform: translateY(-1px);
}
.jw-cat span {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 0;
  border: 0;
  text-decoration: none;
  box-shadow: none;
}
.jw-cat.active span,
.jw-cat:hover span {
  color: #1d4ed8;
}

/* Section chrome */
.jw-section {
  padding: 1.4rem 0 0.35rem;
  position: relative;
}
.jw-section-intro {
  text-align: center;
  margin-bottom: 0.7rem;
  max-width: 640px;
  margin-inline: auto;
}
.jw-section-lead {
  margin: 0.35rem auto 0;
  color: var(--jw-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 520px;
}
.jw-section-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.jw-section-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 800;
}
.jw-section-head .jw-nav-arrows,
.jw-nav-arrows {
  display: none !important;
}
.jw-section-head--tabs-only {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  position: relative;
  min-height: 0;
}
.jw-section-head--tabs-only .jw-center-tabs {
  justify-self: center;
}
.jw-section-head--tabs-only .jw-nav-arrows {
  display: none !important;
}
.jw-center-tabs {
  justify-self: center;
}
.jw-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jw-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.jw-label i {
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--jw-blue);
}
.jw-center-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.55rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.jw-section-intro .jw-center-title {
  margin-bottom: 0.35rem;
}
.jw-section--packages,
.jw-section--custom {
  padding-top: 1.15rem;
}
.jw-section--packages::before,
.jw-section--custom::before {
  content: "";
  display: block;
  width: min(88px, 32%);
  height: 3px;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--jw-blue), #38bdf8, transparent);
}
.jw-section--custom {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(47, 111, 237, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 70% at 0% 100%, rgba(14, 165, 233, 0.05), transparent 50%);
  border-radius: 28px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-inline: auto;
}

.jw-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  background: #f1f5f9;
  padding: 0.28rem;
  border-radius: 999px;
}
.jw-pills button,
.jw-pills a {
  border: 0;
  background: transparent;
  color: var(--jw-ink);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
}
.jw-pills button.active,
.jw-pills a.active {
  background: var(--jw-blue);
  color: #fff;
}

.jw-month-row {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  margin: 0.5rem 0 0.75rem;
  padding-bottom: 0;
  scrollbar-width: none;
}
.jw-month-row::-webkit-scrollbar {
  display: none;
}
.jw-month-row button {
  flex: 0 0 auto;
  border: 1px solid var(--jw-line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.jw-month-row button.active {
  background: var(--jw-blue);
  border-color: var(--jw-blue);
  color: #fff;
}

.jw-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: var(--jw-blue);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(47, 111, 237, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
.jw-arrow:hover {
  background: var(--jw-blue-dark);
  transform: scale(1.05);
}

/* Clip wrapper hides native Windows scrollbar while cards still slide */
.jw-page .jw-slider-clip {
  overflow: hidden !important;
  width: 100%;
}

/* Trip cards — horizontal slider, scrollbar hidden */
.jw-page .jw-trip-grid,
.jw-page .jw-custom-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.1rem;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  padding: 10px 2px 28px !important;
  margin-bottom: -22px !important;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
}
.jw-page .jw-trip-grid::-webkit-scrollbar,
.jw-page .jw-custom-grid::-webkit-scrollbar,
.jw-page .jw-slider-clip::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}
.jw-pkg-card,
.jw-trip-grid .pkg-card {
  position: relative;
  background: #fff;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 18px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.jw-page .jw-trip-grid .jw-pkg-card,
.jw-page .jw-trip-grid .pkg-card,
.jw-page .jw-custom-grid .jw-pkg-card {
  flex: 0 0 calc((100% - 3.3rem) / 4) !important;
  width: calc((100% - 3.3rem) / 4) !important;
  min-width: 270px !important;
  max-width: none !important;
  flex-shrink: 0 !important;
  scroll-snap-align: start;
}
.jw-page .jw-pkg-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(47, 111, 237, 0.35), rgba(226, 232, 240, 0.2) 40%, rgba(14, 165, 233, 0.28));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0.85;
}
.jw-pkg-card:hover,
.jw-trip-grid .pkg-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 28px 56px rgba(29, 78, 216, 0.18);
}
.jw-pkg-media,
.jw-pkg-card .pkg-card-media {
  position: relative;
  display: block;
  aspect-ratio: 5 / 4;
  height: auto;
  min-height: 210px;
  background: #0f172a;
  overflow: hidden;
}
.jw-pkg-media img,
.jw-pkg-card .pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}
.jw-pkg-card:hover .jw-pkg-media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}
.jw-pkg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, transparent 38%),
    linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.72) 100%);
  pointer-events: none;
  z-index: 1;
}
.jw-pkg-tag,
.jw-pkg-off,
.jw-pkg-card .pkg-card-tag,
.jw-pkg-card .pkg-card-discount {
  position: absolute;
  top: 14px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 0.34rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}
.jw-pkg-tag,
.jw-pkg-card .pkg-card-tag {
  left: 14px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.jw-pkg-off,
.jw-pkg-card .pkg-card-discount {
  right: 14px;
  left: auto;
  background: rgba(34, 197, 94, 0.92);
  color: #052e16;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.jw-pkg-duration {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.2);
}
.jw-pkg-duration i {
  color: var(--jw-blue);
  font-size: 0.7rem;
}
.jw-pkg-body,
.jw-pkg-card .pkg-card-body {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding: 1.05rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.08);
}
.jw-pkg-body h3,
.jw-pkg-card .pkg-card-body h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
}
.jw-pkg-body h3 a,
.jw-pkg-card .pkg-card-body h3 a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}
.jw-pkg-card:hover .jw-pkg-body h3 a {
  color: #1d4ed8;
}
.jw-pkg-meta,
.jw-pkg-card .pkg-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}
.jw-pkg-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  max-width: 100%;
}
.jw-pkg-meta span i {
  color: #2f6fed;
  font-size: 0.72rem;
}
.jw-pkg-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(226, 232, 240, 0.95);
}
.jw-pkg-price,
.jw-pkg-card .pkg-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.4rem;
  line-height: 1.15;
}
.jw-pkg-from {
  width: 100%;
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.jw-pkg-price del,
.jw-pkg-card .pkg-card-price del {
  color: #94a3b8;
  font-size: 0.75rem;
}
.jw-pkg-price strong,
.jw-pkg-card .pkg-card-price strong {
  color: #0f172a;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #1d4ed8, #0284c7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.jw-pkg-cta,
.jw-pkg-card .pkg-card-cta {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #0f172a;
  color: #fff;
  border-radius: 999px;
  padding: 0.62rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.jw-pkg-cta i {
  font-size: 0.7rem;
  transition: transform 0.22s ease;
}
.jw-pkg-cta:hover,
.jw-pkg-card .pkg-card-cta:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(29, 78, 216, 0.28);
}
.jw-pkg-cta:hover i,
.jw-pkg-card .pkg-card-cta:hover i {
  transform: translateX(3px);
}

.jw-trip-card {
  scroll-snap-align: start;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  min-height: 360px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.jw-trip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .2);
}
.jw-trip-link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}
.jw-trip-media {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.jw-trip-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.12) 18%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.9) 92%);
  transition: opacity 0.25s ease;
}
.jw-trip-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
  z-index: 2;
}
.jw-trip-badges,
.jw-trip-script,
.jw-trip-overlay {
  position: relative;
  z-index: 1;
}
.jw-trip-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  z-index: 2;
}
.jw-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  background: var(--jw-blue);
  color: #fff;
  text-transform: uppercase;
}
.jw-badge.girls { background: #16a34a; }
.jw-badge.new { background: #f97316; margin-left: auto; }
.jw-badge.best { background: var(--jw-blue); }

.jw-trip-script {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #fff;
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
  z-index: 2;
  line-height: 1.1;
}

.jw-trip-overlay {
  padding: 0.9rem 0.95rem 1rem;
  color: #fff;
}
.jw-trip-overlay h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  line-height: 1.3;
  font-weight: 700;
}
.jw-route {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}
.jw-trip-meta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  opacity: .95;
  margin-bottom: 0.45rem;
}
.jw-trip-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.jw-trip-price del {
  opacity: .7;
  margin-right: 0.25rem;
  font-size: 0.82rem;
}
.jw-trip-price strong {
  font-size: 1.05rem;
}
.jw-off {
  background: #bbf7d0;
  color: #14532d;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
}
.jw-rating {
  margin-top: 0.35rem;
  color: #fbbf24;
  font-size: 0.78rem;
}
.jw-rating span { color: #e2e8f0; }

.jw-empty-note {
  flex: 0 0 100%;
  margin: 0.5rem 0 0;
  padding: 1.1rem 1.2rem;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.92rem;
}
.jw-view-all {
  display: flex;
  justify-content: center;
  margin: 0.85rem 0 0.15rem;
}
.jw-view-all a,
.jw-btn {
  background: var(--jw-blue);
  color: #fff;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.jw-btn.yellow {
  background: #facc15;
  color: #111827;
}

/* Promo banners */
.jw-banner {
  margin: 1.75rem auto;
  border-radius: 22px;
  overflow: hidden;
  min-height: 180px;
  background: linear-gradient(90deg, #0ea5e9, #0369a1);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  position: relative;
}
.jw-banner h3 {
  margin: 0.2rem 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.jw-banner .badge {
  display: inline-block;
  background: #ef4444;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}
.jw-banner .discount {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0.35rem 0 0.75rem;
}

/* Customized tours */
.jw-custom-grid {
  gap: 1rem;
}
.jw-page .jw-custom-card {
  flex: 0 0 calc((100% - 3rem) / 4) !important;
  width: calc((100% - 3rem) / 4) !important;
  min-width: 260px !important;
  flex-shrink: 0 !important;
  scroll-snap-align: start;
  position: relative;
  min-height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a center/cover no-repeat;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.jw-custom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.22);
}
.jw-custom-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.2) 10%, rgba(15,23,42,.35) 45%, rgba(15,23,42,.78) 100%);
  transition: background 0.25s ease;
}
.jw-custom-card:hover::before {
  background: linear-gradient(180deg, rgba(29,78,216,.25) 0%, rgba(15,23,42,.4) 40%, rgba(15,23,42,.85) 100%);
}
.jw-custom-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
  border-radius: inherit;
  pointer-events: none;
}
.jw-custom-card > * { position: relative; z-index: 1; }
.jw-custom-card .count {
  margin: 0.9rem;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--jw-blue), #38bdf8);
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 14px rgba(47, 111, 237, 0.35);
}
.jw-custom-body {
  padding: 0 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.jw-custom-card .name {
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin-top: 0;
  text-shadow: 0 8px 24px rgba(0,0,0,.4);
  letter-spacing: -0.02em;
}
.jw-custom-card .sub {
  text-align: center;
  opacity: .92;
  margin: 0.35rem 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.jw-custom-card .foot {
  background: rgba(255,255,255,.97);
  color: var(--jw-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  font-weight: 700;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}
.jw-custom-card .foot span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jw-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.jw-custom-card .foot strong {
  font-size: 1.05rem;
  color: var(--jw-blue-dark);
}
.jw-custom-cta {
  margin: 1.35rem auto 0.25rem;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(224, 242, 254, 0.9));
  border: 1px solid #bfdbfe;
  box-shadow: 0 10px 28px rgba(47, 111, 237, 0.08);
}
.jw-custom-cta-copy {
  display: grid;
  gap: 0.2rem;
  min-width: min(100%, 280px);
}
.jw-custom-cta-copy strong {
  font-size: 1rem;
  color: var(--jw-ink);
}
.jw-custom-cta-copy span {
  font-size: 0.88rem;
  color: var(--jw-muted);
  line-height: 1.45;
}
.jw-custom-cta .jw-btn {
  flex: 0 0 auto;
}

/* Reviews */
.jw-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.jw-review-card {
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(47, 111, 237, .06);
}
.jw-review-top {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.65rem;
}
.jw-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dbeafe;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--jw-blue);
}
.jw-review-card .stars { color: #f59e0b; font-size: 0.85rem; }
.jw-review-card p { color: #334155; font-size: 0.92rem; line-height: 1.5; }
.jw-review-trip {
  margin-top: 0.85rem;
  background: #eff6ff;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.jw-review-trip a {
  color: var(--jw-blue);
  font-weight: 700;
  text-decoration: none;
}
.jw-review-trip a:hover {
  text-decoration: underline;
}

/* Why choose */
.jw-why {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.jw-why-col {
  display: grid;
  gap: 1rem;
}
.jw-why-card {
  border-radius: 18px;
  padding: 1.1rem;
  border: 1px solid var(--jw-line);
  background: #fff;
}
.jw-why-card.blue {
  background: var(--jw-blue);
  color: #fff;
  border-color: transparent;
}
.jw-why-card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(47,111,237,.12);
  color: var(--jw-blue);
  margin-bottom: 0.65rem;
}
.jw-why-card.blue i {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.jw-why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.jw-why-card p {
  margin: 0;
  color: inherit;
  opacity: .9;
  font-size: 0.92rem;
  line-height: 1.45;
}
.jw-why-center {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  background: #0f172a center/cover;
}
.jw-why-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.jw-why-panel h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}
.jw-why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--jw-muted);
}

/* Videos */
.jw-videos {
  display: grid;
  grid-template-columns: .7fr 1.4fr .7fr;
  gap: 0.85rem;
  align-items: center;
}
.jw-video-side,
.jw-video-main {
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  aspect-ratio: 16/10;
}
.jw-video-side {
  transform: perspective(800px) rotateY(12deg) scale(.92);
  opacity: .85;
}
.jw-video-side.right {
  transform: perspective(800px) rotateY(-12deg) scale(.92);
}
.jw-video-main iframe,
.jw-video-side img,
.jw-video-side iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

/* Blogs */
.jw-blogs {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}
.jw-blog-list {
  display: grid;
  gap: 0.85rem;
}
.jw-blog-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
  align-items: center;
  padding: 0.65rem;
  border: 1px solid var(--jw-line);
  border-radius: 16px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.jw-blog-row:hover {
  border-color: rgba(47, 111, 237, 0.35);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.jw-blog-row img {
  width: 120px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  background: #e2e8f0;
}
.jw-blog-row strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}
.jw-blog-excerpt {
  margin: 0.28rem 0 0;
  color: var(--jw-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}
.jw-blog-meta {
  color: var(--jw-muted);
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
}
.jw-blog-feature {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--jw-line);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.jw-blog-feature:hover {
  border-color: rgba(47, 111, 237, 0.35);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}
.jw-blog-feature img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #0f172a, #1e40af);
}
.jw-blog-feature .body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.jw-blog-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  line-height: 1.35;
}
.jw-blog-feature .body p {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.jw-blog-more {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--jw-blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* FAQ + newsletter */
.jw-faq details {
  border-bottom: 1px solid var(--jw-line);
  padding: 0.95rem 0;
}
.jw-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.jw-faq summary::-webkit-details-marker { display: none; }
.jw-faq summary::after { content: "▾"; color: var(--jw-blue); }
.jw-faq details[open] summary::after { content: "▴"; }
.jw-faq p {
  color: var(--jw-muted);
  margin: 0.65rem 0 0;
  line-height: 1.5;
}

.jw-newsletter {
  margin: 2rem auto 3rem;
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(15,23,42,.92), rgba(30,64,175,.88)),
    #0f172a;
  color: #fff;
  padding: 1.6rem;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 1rem;
  align-items: center;
}
.jw-newsletter h2 { margin: 0.25rem 0 0.45rem; }
.jw-newsletter form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 0.3rem;
  margin-top: 0.85rem;
  max-width: 480px;
}
.jw-newsletter input {
  flex: 1;
  border: 0;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  outline: none;
}
.jw-newsletter button {
  border: 0;
  background: var(--jw-blue);
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}
.jw-news-brand {
  text-align: center;
  opacity: .95;
}
.jw-news-brand strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  margin: 0.35rem 0;
}

@media (max-width: 1100px) {
  .jw-page .jw-trip-grid .jw-pkg-card,
  .jw-page .jw-trip-grid .pkg-card,
  .jw-page .jw-custom-grid .jw-pkg-card,
  .jw-page .jw-custom-grid .jw-custom-card {
    flex-basis: calc((100% - 1.1rem) / 2) !important;
    width: calc((100% - 1.1rem) / 2) !important;
    min-width: 240px !important;
  }
  .jw-why,
  .jw-videos,
  .jw-blogs,
  .jw-newsletter { grid-template-columns: 1fr; }
  .jw-video-side { display: none; }
  .jw-section-head { grid-template-columns: 1fr; }
  .jw-center-tabs { justify-self: start; }
  .jw-section-head--tabs-only {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .jw-review-grid { grid-template-columns: 1fr; }
  .jw-page .jw-trip-grid .jw-pkg-card,
  .jw-page .jw-trip-grid .pkg-card,
  .jw-page .jw-custom-grid .jw-pkg-card,
  .jw-page .jw-custom-grid .jw-custom-card {
    flex-basis: 82% !important;
    width: 82% !important;
    min-width: 82% !important;
  }
  .jw-cats {
    margin-top: -28px;
  }
  .jw-cats-clip {
    border-radius: 24px;
  }
  .jw-cats-inner,
  .jw-cats-inner.is-scrollable {
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.9rem 0.85rem 0.95rem;
    scroll-snap-type: x mandatory;
  }
  .jw-cat,
  .jw-cats-inner.is-scrollable .jw-cat {
    flex: 0 0 auto;
    width: 78px;
    min-width: 78px;
    max-width: 78px;
  }
  .jw-cat-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 0.4rem;
  }
  .jw-cat span {
    font-size: 0.68rem;
  }
  .jw-banner { grid-template-columns: 1fr; }
  .jw-section--custom {
    border-radius: 18px;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  .jw-custom-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .jw-custom-cta .jw-btn {
    justify-content: center;
  }
  .jw-trip-card:hover,
  .jw-custom-card:hover {
    transform: translateY(-3px);
  }
}
