.inbound-tours-section {
  background: var(--white);
  color: var(--ink);
  padding: 104px 0;
  scroll-margin-top: 100px;
}

.inbound-tours-page .inbound-tours-section {
  padding-top: 126px;
}

.inbound-home-preview {
  background: var(--surface);
  padding: 0;
  scroll-margin-top: 100px;
}

.inbound-home-preview-card {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 430px;
  overflow: hidden;
}

.inbound-home-preview-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 58px;
}

.inbound-home-preview-content h2 {
  color: var(--ink);
  font-size: clamp(2.35rem, 4.5vw, 4.2rem);
  line-height: 1.06;
  margin: 0 0 19px;
}

.inbound-home-preview-content > p:not(.inbound-eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 17px;
}

.inbound-home-preview-content > span {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 26px;
}

.inbound-home-preview-content .btn {
  align-items: center;
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.inbound-home-preview-content .btn svg {
  height: 17px;
  width: 17px;
}

.inbound-home-preview-media {
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.inbound-home-preview-media > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  width: 100%;
}

.inbound-home-preview-card:hover .inbound-home-preview-media > img {
  transform: scale(1.035);
}

.inbound-home-preview-thumbnails {
  bottom: 22px;
  display: flex;
  gap: 9px;
  position: absolute;
  right: 22px;
}

.inbound-home-preview-thumbnails img {
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(5, 22, 53, 0.22);
  height: 74px;
  object-fit: cover;
  width: 92px;
}

.inbound-tours-section svg {
  display: block;
}

.inbound-hero {
  align-items: center;
  background:
    radial-gradient(ellipse 70% 60% at 15% 15%, rgba(251, 191, 36, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 85% 85%, rgba(56, 189, 248, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 70%),
    linear-gradient(140deg, #05142d 0%, #07224f 45%, #0b3778 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow:
    0 32px 85px -15px rgba(2, 11, 26, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  display: grid;
  gap: clamp(36px, 3.5vw, 60px);
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  min-height: 640px;
  overflow: hidden;
  padding: 56px;
  position: relative;
  isolation: isolate;
}

/* Ambient glow blobs */
.inbound-hero-ambient {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.inbound-hero-ambient--left {
  animation: ambientGlow 8s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
  height: 380px;
  left: -80px;
  top: -80px;
  width: 380px;
}

.inbound-hero-ambient--right {
  animation: ambientGlow 9s ease-in-out infinite alternate-reverse;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.32) 0%, rgba(99, 102, 241, 0.2) 50%, transparent 70%);
  bottom: -100px;
  height: 420px;
  right: -60px;
  width: 420px;
}

.inbound-hero-grid-pattern {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  inset: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 90%);
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.inbound-hero-copy,
.inbound-hero-visual {
  min-width: 0;
  position: relative;
  z-index: 1;
}

/* Modern Eyebrow Pill */
.inbound-eyebrow {
  align-items: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(252, 211, 77, 0.35);
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  color: #fed7aa;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 9px;
  letter-spacing: 0.12em;
  margin: 0 0 22px;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.inbound-eyebrow:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(252, 211, 77, 0.55);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.inbound-eyebrow-icon {
  align-items: center;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  width: 22px;
}

.inbound-eyebrow-icon svg {
  height: 13px;
  width: 13px;
}

.inbound-hero h1,
.inbound-heading h2,
.inbound-story h2,
.inbound-itinerary h2,
.inbound-testimonial-header h2 {
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
}

.inbound-hero h1 {
  color: #ffffff;
  font-size: clamp(2.45rem, 3.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  max-width: 100%;
  text-shadow: 0 2px 14px rgba(2, 10, 25, 0.4);
}

.inbound-hero-title-lead {
  display: block;
  color: #ffffff;
  white-space: nowrap;
}

.inbound-hero-title-highlight,
.inbound-hero h1 span:not(.inbound-hero-title-lead) {
  background: linear-gradient(135deg, #fffbeb 0%, #fde047 35%, #fbbf24 70%, #f59e0b 100%);
  background-clip: text;
  display: block;
  filter: drop-shadow(0 2px 18px rgba(245, 158, 11, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}

.inbound-hero-description {
  color: #dbeafe;
  font-size: 1.04rem;
  line-height: 1.82;
  margin: 22px 0 32px;
  max-width: 610px;
  text-shadow: 0 1px 3px rgba(2, 10, 25, 0.3);
}

/* Modern Action Buttons */
.inbound-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.inbound-actions .btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  margin: 0;
  min-height: 52px;
  padding-inline: 26px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.inbound-actions .btn svg {
  height: 17px;
  transition: transform 0.25s ease;
  width: 17px;
}

.inbound-actions .inbound-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 55%, #d97706 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow:
    0 12px 28px -4px rgba(245, 158, 11, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #0b1d3d;
}

.inbound-actions .inbound-primary:hover {
  background: linear-gradient(135deg, #fde047 0%, #fbbf24 55%, #ea580c 100%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 16px 36px -2px rgba(245, 158, 11, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  color: #051329;
  transform: translateY(-2px);
}

.inbound-actions .inbound-primary:hover svg {
  transform: translateX(4px);
}

.inbound-actions .outline {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 24px -4px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.inbound-actions .outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 14px 30px -2px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Modern Trust Pills */
.inbound-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.inbound-trust-item {
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #eff6ff;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 650;
  gap: 8px;
  padding: 8px 14px;
  transition: all 0.3s ease;
}

.inbound-trust-item:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(252, 211, 77, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.inbound-trust-icon {
  align-items: center;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 50%;
  color: #fbbf24;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.inbound-trust-icon svg {
  height: 11px;
  width: 11px;
}

/* Modern Visual Collage */
.inbound-hero-visual {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.5fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  height: 520px;
  min-width: 0;
  position: relative;
}

.inbound-collage-main {
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  box-shadow:
    0 28px 65px -12px rgba(2, 10, 25, 0.58),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  grid-row: 1 / 3;
  overflow: hidden;
  position: relative;
}

.inbound-collage-small {
  display: grid;
  gap: 16px;
  grid-row: 1 / 3;
  grid-template-rows: 1fr 1fr;
  min-height: 0;
  padding-block: 16px;
}

.inbound-collage-tile {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 22px;
  box-shadow:
    0 20px 45px -10px rgba(2, 10, 25, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.inbound-collage-main img,
.inbound-collage-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.inbound-collage-main::after,
.inbound-collage-tile::after {
  background: linear-gradient(to top, rgba(3, 12, 30, 0.65) 0%, rgba(3, 12, 30, 0.15) 45%, transparent 100%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.inbound-collage-main:hover img,
.inbound-collage-tile:hover img {
  transform: scale(1.06);
}

.inbound-image-label {
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(5, 18, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  bottom: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #ffffff;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 750;
  gap: 7px;
  left: 16px;
  padding: 6px 14px;
  position: absolute;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.inbound-image-label svg {
  color: #fbbf24;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

/* Floating Modern GUI Glass Chips */
.inbound-float-card {
  align-items: center;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  box-shadow:
    0 22px 50px -10px rgba(2, 11, 26, 0.38),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 #ffffff;
  color: #0f172a;
  display: flex;
  gap: 12px;
  padding: 10px 18px;
  position: absolute;
  z-index: 10;
}

.inbound-float-icon {
  align-items: center;
  border-radius: 12px;
  display: flex;
  flex-shrink: 0;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.inbound-float-icon svg {
  height: 19px;
  width: 19px;
}

.inbound-float-icon--gold {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.28);
  color: #b45309;
}

.inbound-float-icon--blue {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  color: #1d4ed8;
}

.inbound-float-text strong {
  color: #0f172a;
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.25;
  white-space: nowrap;
}

.inbound-float-one {
  animation: inboundFloat1 5.5s ease-in-out infinite alternate;
  left: -22px;
  top: 36px;
}

.inbound-float-two {
  animation: inboundFloat2 6.5s ease-in-out infinite alternate;
  animation-delay: -2.8s;
  bottom: 22px;
  right: -12px;
}

@keyframes inboundFloat1 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes inboundFloat2 {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-7px) rotate(0.5deg); }
}

@keyframes ambientGlow {
  0% { opacity: 0.45; transform: scale(1); }
  100% { opacity: 0.75; transform: scale(1.15); }
}

.inbound-filter-wrap {
  display: flex;
  justify-content: center;
  margin: 42px 0 0;
}

.inbound-filter-scroll {
  display: flex;
  gap: 9px;
  max-width: 100%;
  overflow-x: auto;
  padding: 5px;
  scrollbar-width: thin;
}

.inbound-filter {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 0.78rem;
  font-weight: 750;
  padding: 11px 18px;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.inbound-filter:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.inbound-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-950);
}

.inbound-block {
  padding-top: 106px;
  scroll-margin-top: 100px;
}

.inbound-heading {
  margin-bottom: 45px;
  max-width: 820px;
}

.inbound-heading.center {
  margin-inline: auto;
  text-align: center;
}

.inbound-heading h2,
.inbound-testimonial-header h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
}

.inbound-heading > p:not(.inbound-eyebrow) {
  color: var(--muted);
  line-height: 1.75;
  margin: 18px auto 0;
  max-width: 760px;
}

.inbound-tour-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.inbound-tour-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.inbound-tour-card[hidden] {
  display: none;
}

.inbound-tour-card:hover {
  border-color: rgba(245, 173, 36, 0.5);
  box-shadow: 0 20px 42px rgba(16, 36, 72, 0.11);
  transform: translateY(-7px);
}

.inbound-tour-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.inbound-tour-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  width: 100%;
}

.inbound-tour-card:hover .inbound-tour-media img {
  transform: scale(1.06);
}

.inbound-tour-category {
  background: rgba(5, 22, 53, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  font-size: 0.69rem;
  font-weight: 800;
  left: 14px;
  padding: 7px 11px;
  position: absolute;
  top: 14px;
}

.inbound-favorite {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 40px;
}

.inbound-favorite:hover {
  transform: scale(1.06);
}

.inbound-favorite.active {
  background: var(--gold);
  color: var(--navy-950);
}

.inbound-favorite svg {
  height: 19px;
  width: 19px;
}

.inbound-tour-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 23px;
}

.inbound-tour-location {
  align-items: center;
  color: var(--gold);
  display: flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 6px;
  letter-spacing: 0.04em;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.inbound-tour-location svg {
  height: 15px;
  width: 15px;
}

.inbound-tour-body h3 {
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0 0 10px;
}

.inbound-tour-description {
  color: var(--muted);
  flex: 1;
  font-size: 0.85rem;
  line-height: 1.65;
  margin: 0;
}

.inbound-tour-facts {
  border-block: 1px solid var(--border);
  display: grid;
  gap: 9px;
  margin: 20px 0;
  padding: 15px 0;
}

.inbound-tour-facts span {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 0.75rem;
  gap: 8px;
}

.inbound-tour-facts svg {
  color: var(--navy);
  height: 16px;
  width: 16px;
}

.inbound-tour-footer > strong {
  color: var(--navy);
  display: block;
  font-size: 0.84rem;
  margin-bottom: 14px;
}

.inbound-tour-footer > div {
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 1fr;
}

.inbound-tour-footer .btn {
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0;
  min-height: 43px;
  padding-inline: 12px;
  width: 100%;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
}

.inbound-story {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.inbound-story:hover {
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.inbound-story-media {
  min-height: 480px;
  overflow: hidden;
}

.inbound-story-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  width: 100%;
}

.inbound-story:hover .inbound-story-media img {
  transform: scale(1.05);
}

.inbound-story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 60px;
}

.inbound-story h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.3em;
}

.inbound-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin: 20px 0;
}

.inbound-story-meta span {
  color: var(--muted);
  font-size: 0.71rem;
}

.inbound-story-content > p:not(.inbound-eyebrow) {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.inbound-story-highlights {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}

.inbound-story-highlights span {
  align-items: center;
  color: var(--ink);
  display: flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 8px;
}

.inbound-story-highlights svg {
  color: var(--gold);
  height: 17px;
  width: 17px;
}

.inbound-story .btn {
  align-self: flex-start;
  margin: 0;
}

.inbound-destination-grid {
  display: grid;
  gap: 18px;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
}

.inbound-destination-card {
  border-radius: 20px;
  margin: 0;
  overflow: hidden;
  position: relative;
  text-transform: none;
}

.inbound-destination-card.featured {
  grid-row: span 2;
}

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

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

.inbound-destination-overlay {
  background: linear-gradient(0deg, rgba(5, 22, 53, 0.92) 0%, rgba(5, 22, 53, 0.08) 72%);
  inset: 0;
  position: absolute;
}

.inbound-destination-content {
  bottom: 0;
  color: #fff;
  display: grid;
  left: 0;
  padding: 22px;
  position: absolute;
  right: 0;
}

.inbound-destination-content small {
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 700;
}

.inbound-destination-content strong {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  margin-top: 4px;
}

.inbound-destination-content > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  line-height: 1.45;
  padding-right: 38px;
}

.inbound-destination-content i {
  bottom: 22px;
  position: absolute;
  right: 20px;
}

.inbound-destination-content i svg {
  height: 21px;
  width: 21px;
}

.inbound-review-section {
  background: var(--surface);
  border-block: 1px solid var(--border);
  margin-top: 106px;
  padding: 100px 0;
}

.inbound-style-grid,
.inbound-benefit-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.inbound-style-card,
.inbound-benefit-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 27px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.inbound-style-card:hover,
.inbound-benefit-grid article:hover {
  border-color: rgba(245, 173, 36, 0.55);
  transform: translateY(-4px);
}

.inbound-icon-box {
  align-items: center;
  background: rgba(245, 173, 36, 0.18);
  border-radius: 14px;
  color: var(--navy);
  display: inline-flex;
  height: 50px;
  justify-content: center;
  margin-bottom: 20px;
  width: 50px;
}

.inbound-icon-box svg {
  height: 24px;
  width: 24px;
}

.inbound-style-card h3,
.inbound-benefit-grid h3 {
  color: var(--ink);
  font-family: inherit;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.inbound-style-card p,
.inbound-benefit-grid p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.inbound-style-card a {
  align-items: center;
  color: var(--navy);
  display: inline-flex;
  font-size: 0.7rem;
  font-weight: 800;
  gap: 6px;
  margin: 20px 0 0;
}

.inbound-style-card a svg {
  height: 15px;
  width: 15px;
}

.inbound-benefits .inbound-heading {
  margin-bottom: 42px;
}

.inbound-itinerary {
  background: var(--navy-950);
  border-radius: 24px;
  color: #fff;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.72fr 1.28fr;
  padding: 58px;
  scroll-margin-top: 100px;
}

.inbound-itinerary h2 {
  color: #fff;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.inbound-itinerary-intro > strong {
  color: var(--gold-soft);
  display: block;
  margin: 18px 0 30px;
}

.inbound-itinerary-intro .btn {
  margin: 0;
}

.inbound-day-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.inbound-day {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.inbound-day > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 72px 1fr 18px;
  padding: 19px 0;
  text-align: left;
  width: 100%;
}

.inbound-day > button > span {
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inbound-day > button > strong {
  font-size: 0.86rem;
}

.inbound-day i,
.inbound-faq-item i {
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  height: 8px;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  width: 8px;
}

.inbound-day.open i,
.inbound-faq-item.open i {
  transform: rotate(225deg);
}

.inbound-day-panel,
.inbound-faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.inbound-day-panel p,
.inbound-faq-panel p {
  margin: 0;
  overflow: hidden;
}

.inbound-day.open .inbound-day-panel,
.inbound-faq-item.open .inbound-faq-panel {
  grid-template-rows: 1fr;
}

.inbound-day-panel p {
  color: #b9c8dc;
  font-size: 0.78rem;
  line-height: 1.7;
  padding-left: 86px;
}

.inbound-day.open .inbound-day-panel p {
  padding-bottom: 20px;
}

.inbound-testimonial-header {
  align-items: center;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 42px;
}

.inbound-testimonial-header > div {
  display: flex;
  gap: 9px;
}

.inbound-testimonial-header button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.15rem;
  height: 47px;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: 47px;
}

.inbound-testimonial-header button:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.inbound-review-carousel {
  overflow: hidden;
}

.inbound-review-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.inbound-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  flex: 0 0 100%;
  min-height: 330px;
  padding: 40px;
}

.inbound-stars {
  color: var(--gold);
  display: flex;
  gap: 4px;
}

.inbound-stars svg {
  fill: var(--gold);
  height: 16px;
  width: 16px;
}

.inbound-review-card blockquote {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  line-height: 1.5;
  margin: 28px 0 35px;
  max-width: 920px;
}

.inbound-review-card footer {
  align-items: center;
  display: flex;
  gap: 13px;
}

.inbound-review-card footer > span {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.inbound-review-card footer strong,
.inbound-review-card footer small {
  display: block;
}

.inbound-review-card footer strong {
  color: var(--ink);
  margin-bottom: 3px;
}

.inbound-review-card footer small {
  color: var(--muted);
  font-size: 0.72rem;
}

.inbound-faq {
  margin-inline: auto;
  max-width: 900px;
}

.inbound-faq-list {
  border-top: 1px solid var(--border);
}

.inbound-faq-item {
  border-bottom: 1px solid var(--border);
}

.inbound-faq-item > button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 0.95rem;
  font-weight: 750;
  justify-content: space-between;
  padding: 23px 0;
  text-align: left;
  width: 100%;
}

.inbound-faq-item i {
  flex: 0 0 auto;
  margin-left: 20px;
}

.inbound-faq-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.inbound-faq-item.open .inbound-faq-panel p {
  padding-bottom: 22px;
}

.inbound-tours-section :is(button, a):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.inbound-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.inbound-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-theme="dark"] .inbound-hero,
html[data-theme="dark"] .inbound-style-card,
html[data-theme="dark"] .inbound-benefit-grid article {
  background: #172033;
}

html[data-theme="dark"] .inbound-hero {
  background:
    radial-gradient(ellipse 70% 60% at 15% 15%, rgba(251, 191, 36, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 65% 55% at 85% 85%, rgba(56, 189, 248, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%),
    linear-gradient(140deg, #070e1b 0%, #0d192d 45%, #132440 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 32px 85px -15px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

html[data-theme="dark"] .inbound-float-card {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 50px -10px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .inbound-float-text strong {
  color: #f8fafc;
}

html[data-theme="dark"] .inbound-tour-card,
html[data-theme="dark"] .inbound-review-card {
  background: #0f172a;
}

html[data-theme="dark"] .inbound-filter {
  background: #1e293b;
}

html[data-theme="dark"] .inbound-filter.active {
  background: var(--gold);
  color: var(--navy-950);
}

html[data-theme="dark"] .inbound-icon-box {
  color: var(--gold-soft);
}

/* Khmer typography needs a wider rhythm and a smaller display scale than Latin. */
html[lang="km"] .inbound-tours-section,
html[lang="km"] .inbound-home-preview {
  font-family: "Noto Sans Khmer", Inter, sans-serif;
}

html[lang="km"] .inbound-eyebrow {
  letter-spacing: 0.03em;
  line-height: 1.6;
  text-transform: none;
}

html[lang="km"] .inbound-hero {
  gap: 48px;
  grid-template-columns: 1.05fr 0.95fr;
}

html[lang="km"] .inbound-hero h1 {
  font-family: "Kantumruy Pro", "Noto Sans Khmer", sans-serif;
  font-size: clamp(2.8rem, 3.35vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.44;
  max-width: 640px;
  text-wrap: balance;
}

html[lang="km"] .inbound-hero-title-lead {
  white-space: normal;
}

html[lang="km"] .inbound-hero-description {
  font-size: 0.96rem;
  line-height: 1.95;
  margin: 22px 0 30px;
  max-width: 620px;
}

html[lang="km"] .inbound-trust-item {
  font-size: 0.78rem;
  line-height: 1.5;
}

html[lang="km"] .inbound-float-text strong {
  font-family: "Noto Sans Khmer", "Kantumruy Pro", sans-serif;
  font-size: 0.8rem;
  line-height: 1.45;
}

html[lang="km"] .inbound-heading {
  max-width: 940px;
}

html[lang="km"] .inbound-heading h2,
html[lang="km"] .inbound-testimonial-header h2 {
  font-family: "Kantumruy Pro", "Noto Sans Khmer", sans-serif;
  font-size: clamp(2.15rem, 3vw, 3rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.48;
  text-wrap: balance;
}

html[lang="km"] .inbound-heading > p:not(.inbound-eyebrow) {
  font-size: 0.9rem;
  line-height: 1.95;
  max-width: 860px;
}

html[lang="km"] .inbound-story h2 {
  font-family: "Kantumruy Pro", "Noto Sans Khmer", sans-serif;
  font-size: clamp(2rem, 2.65vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  text-wrap: balance;
}

html[lang="km"] .inbound-story-content > p:not(.inbound-eyebrow) {
  font-size: 0.9rem;
  line-height: 1.95;
}

html[lang="km"] .inbound-tour-body h3,
html[lang="km"] .inbound-style-card h3,
html[lang="km"] .inbound-benefit-grid h3 {
  font-family: "Kantumruy Pro", "Noto Sans Khmer", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.65;
}

html[lang="km"] .inbound-tour-description,
html[lang="km"] .inbound-style-card p,
html[lang="km"] .inbound-benefit-grid p,
html[lang="km"] .inbound-faq-panel p,
html[lang="km"] .inbound-day-panel p {
  line-height: 1.9;
}

html[lang="km"] .inbound-filter,
html[lang="km"] .inbound-tour-facts span,
html[lang="km"] .inbound-tour-footer .btn,
html[lang="km"] .inbound-actions .btn {
  line-height: 1.55;
}

html[lang="km"] .inbound-home-preview-content h2 {
  font-family: "Kantumruy Pro", "Noto Sans Khmer", sans-serif;
  font-size: clamp(2.15rem, 3.2vw, 3.25rem);
  letter-spacing: 0;
  line-height: 1.48;
  text-wrap: balance;
}

html[lang="km"] .inbound-home-preview-content > p:not(.inbound-eyebrow) {
  line-height: 1.95;
}

@media (max-width: 1050px) {
  .inbound-hero {
    border-radius: 30px;
    padding: 44px 36px;
  }

  .inbound-hero-visual {
    height: 480px;
  }

  .inbound-float-one {
    left: -14px;
    top: 24px;
  }

  .inbound-float-two {
    bottom: 16px;
    right: -8px;
  }

  .inbound-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inbound-destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .inbound-story-content {
    padding: 42px;
  }

  html[lang="km"] .inbound-hero {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  html[lang="km"] .inbound-hero h1 {
    font-size: clamp(2.45rem, 4vw, 3.1rem);
  }
}

@media (max-width: 800px) {
  .inbound-tours-section {
    padding: 80px 0;
  }

  .inbound-home-preview-card {
    grid-template-columns: 1fr;
  }

  .inbound-home-preview-content {
    padding: 44px;
  }

  .inbound-home-preview-media {
    min-height: 350px;
  }

  .inbound-hero {
    border-radius: 28px;
    grid-template-columns: 1fr;
    padding: 42px 30px;
  }

  .inbound-hero-copy {
    order: 1;
  }

  .inbound-hero-visual {
    height: 460px;
    margin-top: 12px;
    order: 2;
  }

  .inbound-filter-wrap {
    justify-content: flex-start;
  }

  .inbound-story,
  .inbound-itinerary {
    grid-template-columns: 1fr;
  }

  .inbound-story-media {
    min-height: 430px;
  }

  .inbound-destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inbound-style-grid,
  .inbound-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inbound-itinerary {
    padding: 44px;
  }

  html[lang="km"] .inbound-hero {
    grid-template-columns: 1fr;
  }

  html[lang="km"] .inbound-hero h1 {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .inbound-tours-section {
    padding: 64px 0;
  }

  .inbound-tours-page .inbound-tours-section {
    padding-top: 100px;
  }

  .inbound-home-preview-content {
    padding: 34px 24px;
  }

  .inbound-home-preview-content .btn {
    width: 100%;
  }

  .inbound-home-preview-media {
    min-height: 280px;
  }

  .inbound-home-preview-thumbnails {
    bottom: 14px;
    right: 14px;
  }

  .inbound-home-preview-thumbnails img {
    height: 58px;
    width: 72px;
  }

  .inbound-hero {
    border-radius: 22px;
    gap: 26px;
    min-height: 0;
    padding: 28px 18px;
  }

  .inbound-eyebrow {
    border-radius: 18px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    max-width: 100%;
    padding: 6px 13px;
    text-wrap: pretty;
  }

  .inbound-eyebrow svg {
    flex: 0 0 auto;
  }

  .inbound-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  html[lang="km"] .inbound-hero h1 {
    font-size: clamp(2.15rem, 9.2vw, 2.75rem);
    line-height: 1.48;
  }

  html[lang="km"] .inbound-heading h2,
  html[lang="km"] .inbound-testimonial-header h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    line-height: 1.55;
  }

  html[lang="km"] .inbound-story h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
  }

  .inbound-actions,
  .inbound-actions .btn {
    width: 100%;
  }

  .inbound-trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .inbound-trust-item {
    width: 100%;
  }

  .inbound-hero-visual {
    display: block;
    height: 360px;
  }

  .inbound-collage-main {
    height: 100%;
  }

  .inbound-collage-small {
    display: none;
  }

  .inbound-image-label {
    bottom: 14px;
    left: 14px;
  }

  .inbound-float-one {
    left: 12px;
    top: 14px;
  }

  .inbound-float-two {
    bottom: 14px;
    right: 12px;
  }

  .inbound-filter-wrap {
    margin-inline: -12px;
  }

  .inbound-filter-scroll {
    padding-inline: 12px;
  }

  .inbound-block {
    padding-top: 76px;
  }

  .inbound-heading {
    margin-bottom: 32px;
  }

  .inbound-tour-grid,
  .inbound-destination-grid,
  .inbound-style-grid,
  .inbound-benefit-grid {
    grid-template-columns: 1fr;
  }

  .inbound-story-media {
    min-height: 310px;
  }

  .inbound-story-content {
    padding: 32px 24px;
  }

  .inbound-destination-grid {
    grid-auto-rows: 280px;
  }

  .inbound-destination-card.featured {
    grid-row: span 1;
  }

  .inbound-review-section {
    margin-top: 76px;
    padding: 70px 0;
  }

  .inbound-itinerary {
    gap: 36px;
    padding: 34px 22px;
  }

  .inbound-day > button {
    gap: 9px;
    grid-template-columns: 58px 1fr 16px;
  }

  .inbound-day-panel p {
    padding-left: 0;
  }

  .inbound-review-card {
    min-height: 390px;
    padding: 28px 22px;
  }

  .inbound-testimonial-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================================================
   BROCHURE HERITAGE & ATTRACTION HIGHLIGHTS
   ========================================================================== */
.inbound-heritage-block {
  margin-top: 60px;
  margin-bottom: 20px;
}

.inbound-heritage-heading {
  scroll-margin-top: 100px;
}

.inbound-heritage-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 32px auto 44px;
  flex-wrap: wrap;
}

.inbound-heritage-tab {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
  transition: background-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.inbound-heritage-tab svg {
  color: currentColor;
}

.inbound-heritage-tab:hover {
  background: var(--white);
  border-color: var(--navy);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(11, 27, 60, 0.08);
}

.inbound-heritage-tab:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.inbound-heritage-tab.active,
.inbound-heritage-tab.active:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(6, 45, 122, 0.28);
}

.inbound-heritage-tab.active svg {
  color: #ffffff;
}

.inbound-heritage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.inbound-heritage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 27, 60, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.inbound-heritage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(11, 27, 60, 0.12);
  border-color: rgba(224, 90, 43, 0.4);
}

.inbound-heritage-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  background: var(--surface);
}

.inbound-heritage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.inbound-heritage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.inbound-heritage-card:hover .inbound-heritage-media img {
  transform: scale(1.06);
}

.inbound-heritage-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
}

.inbound-heritage-region {
  background: rgba(11, 27, 60, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.inbound-heritage-tag {
  background: rgba(224, 90, 43, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.inbound-heritage-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.inbound-heritage-content h3 {
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.35;
}

.inbound-heritage-content p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 20px;
  flex-grow: 1;
}

.inbound-heritage-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

.inbound-heritage-footer .btn {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  word-break: keep-all;
  flex-shrink: 0;
  min-width: max-content;
  text-decoration: none;
}

@media (max-width: 768px) {
  .inbound-heritage-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inbound-float-card {
    animation: none;
  }

  .inbound-tours-section *,
  .inbound-tours-section *::before,
  .inbound-tours-section *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .inbound-reveal {
    opacity: 1;
    transform: none;
  }

  .inbound-collage-main:hover img,
  .inbound-collage-tile:hover img,
  .inbound-actions .inbound-primary:hover svg {
    transform: none;
  }
}
