/* Adventures For Life — premium HTML prototype
   Responsive RTL/LTR-ready static website. */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef4f8;
  --surface-3: #f9fbfd;
  --ink: #071426;
  --muted: #657386;
  --muted-2: #95a2b3;
  --line: #e1e8f0;
  --line-strong: #cad8e6;
  --brand: #0877ff;
  --brand-2: #005cdb;
  --brand-soft: #eef6ff;
  --green: #0f6b4f;
  --green-2: #1e8b6c;
  --green-soft: #ecfdf5;
  --sand: #d7ad63;
  --gold: #f7b500;
  --danger: #ef4444;
  --danger-soft: #fff1f2;
  --header-bg: rgba(255, 255, 255, 0.94);
  --hero-overlay: rgba(7, 20, 38, 0.86);
  --hero-overlay-soft: rgba(7, 20, 38, 0.56);
  --card-shadow: 0 10px 30px rgba(7, 20, 38, 0.06);
  --card-shadow-hover: 0 20px 46px rgba(7, 20, 38, 0.11);
  --radius-xs: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow: 0 18px 50px rgba(7, 20, 38, 0.1);
  --shadow-soft: 0 12px 30px rgba(7, 20, 38, 0.08);
  --container: min(1480px, calc(100vw - 40px));
  --font: "IBM Plex Sans Arabic", "Tajawal", "Cairo", "Noto Kufi Arabic",
    "Noto Sans Arabic", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fff 0, #f6f8fb 48%, #eef4f8 100%);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
:lang(ar) .title,
:lang(ar) .section-title,
:lang(ar) h1,
:lang(ar) h2,
:lang(ar) h3 {
  letter-spacing: 0;
}
body.lock {
  overflow: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  inset-inline-start: 18px;
  top: 10px;
  z-index: 1000;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateY(-140%);
  box-shadow: var(--shadow);
}
.skip-link:focus {
  transform: translateY(0);
}
.topbar {
  height: 38px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #344458;
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  white-space: nowrap;
}
.topbar__meta {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(225, 232, 240, 0.92);
}
.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  min-width: max-content;
}
.logo img {
  width: 200px;
  height: auto;
  object-fit: contain;
}
.logo span {
  font-size: 18px;
}
.nav-account-mobile {
  display: none;
}
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  font-size: 14px;
  color: #162235;
}
.menu a {
  position: relative;
  padding: 29px 0;
  color: #26384f;
}
.menu a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--green));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: 0.25s ease;
}
.menu a:hover,
.menu a.active {
  color: var(--brand);
}
.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}
.actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-entry {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 10px;
  min-height: 46px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(7, 20, 38, 0.06);
}

.account-entry__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-entry__icon img,
.mobile-account-chip__avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.account-entry__text {
  display: grid;
  line-height: 1.15;
}

.account-entry__text strong {
  font-size: 14px;
}

.account-entry__text small {
  color: var(--muted);
  font-size: 12px;
}

.account-guest {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-account-chip,
.mobile-login-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(8, 119, 255, 0.14);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(7, 20, 38, 0.08);
}
.mobile-account-chip {
  gap: 10px;
  padding: 6px 14px 6px 8px;
  color: #162235;
}
.mobile-account-chip__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(8, 119, 255, 0.12), rgba(39, 174, 96, 0.18));
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.mobile-account-chip__label {
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.mobile-login-chip {
  padding: 0 18px;
  color: black;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.icon-btn,
.hamburger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #071426;
  box-shadow: 0 6px 18px rgba(7, 20, 38, 0.04);
}
.icon-btn:hover,
.hamburger:hover {
  border-color: rgba(8, 119, 255, 0.35);
  box-shadow: 0 8px 24px rgba(8, 119, 255, 0.12);
}
.badge-dot {
  position: absolute;
  top: -3px;
  inset-inline-end: -3px;
  min-width: 19px;
  height: 19px;
  padding-inline: 5px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.hamburger {
  display: none;
}
.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: relative;
  border-radius: 99px;
}
.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}
.hamburger span::before {
  top: -6px;
}
.hamburger span::after {
  top: 6px;
}
.btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 24px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(8, 119, 255, 0.24);
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(8, 119, 255, 0.32);
}
.btn--green {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 14px 30px rgba(15, 107, 79, 0.2);
}
.btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.btn--ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  border: 1px solid rgba(8, 119, 255, 0.22);
}
.btn--wide {
  width: 100%;
}
.section {
  padding: 28px 0;
}
.section--tight {
  padding: 20px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero-slider .eyebrow{
    color: white;
}
.title {
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.9px;
  margin: 0 0 20px;
  font-weight: 950;
}
.section-title {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.9px;
  margin: 0 0 10px;
  font-weight: 950;
}
.section-sub {
  margin: 0;
  color: var(--muted);
  max-width: 660px;
}
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #071426;
  color: #fff;
  border-bottom-left-radius: 54px;
  border-bottom-right-radius: 54px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      var(--hero-overlay) 0%,
      var(--hero-overlay-soft) 42%,
      rgba(7, 20, 38, 0.24) 100%
    ),
    var(--hero) center/cover no-repeat;
  transform: scale(1.01);
}
.hero::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 170px;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 650px;
  padding: 84px 0 180px;
}
.hero p {
  font-size: 20px;
  color: #dce7f4;
  margin: 0 0 32px;
  max-width: 580px;
}
.hero .eyebrow {
  color: #f7d087;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-card {
  position: absolute;
  z-index: 3;
  inset-inline: 50%;
  bottom: 44px;
  transform: translateX(50%);
  width: var(--container);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 20px 56px rgba(7, 20, 38, 0.14);
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 10px;
  color: var(--ink);
}
[dir="ltr"] .hero-card {
  transform: translateX(-50%);
}
.search-field {
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  background: #fff;
}
.search-field i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 900;
}
.search-field b,
.search-label {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  color: #344458;
}
.search-field input,
.search-field select {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 4px 0 0;
  min-width: 0;
  outline: 0;
}
.search-field input::placeholder {
  color: var(--muted);
}
.trust-strip {
  margin-top: -26px;
  position: relative;
  z-index: 4;
}
.trust-grid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-item {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-inline-start: 1px solid var(--line);
}
.trust-item:first-child {
  border-inline-start: 0;
}
.trust-item i {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 22px;
}
.trust-item b {
  display: block;
  line-height: 1.2;
}
.trust-item span {
  font-size: 13px;
  color: var(--muted);
}
.strategic-partners {
  padding-top: 38px;
}
.strategic-partners__head {
  margin-bottom: 28px;
  text-align: center;
}
.strategic-partners__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.strategic-partners__card {
  min-width: 0;
  height: clamp(220px, 25vw, 320px);
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow-soft);
}
.strategic-partners__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.journeys-chips {
  justify-content: flex-start;
}
.chip {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  color: #344458;
  box-shadow: 0 10px 24px rgba(7, 20, 38, 0.04);
}
.chip.active,
.chip:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.grid {
  display: grid;
  gap: 22px;
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid--6 {
  grid-template-columns: repeat(6, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
  position: relative;
  transition: 0.28s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(8, 119, 255, 0.22);
}
.card-img {
  height: 230px;
  overflow: hidden;
  background: #edf2f7;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}
.card:hover .card-img img {
  transform: scale(1.06);
}
.card-body {
  padding: 18px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  line-height: 1.35;
}
.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price {
  font-weight: 950;
  color: var(--brand);
  font-size: 20px;
}
.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}
.old {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 14px;
  margin-inline-start: 8px;
}
.stars {
  color: var(--gold);
  letter-spacing: 1px;
  white-space: nowrap;
}
.stars i {
  font-size: 0.92em;
}
.pill {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 12px;
  z-index: 2;
}
.pill--blue {
  background: var(--brand);
}
.heart {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 22px rgba(7, 20, 38, 0.12);
}
.heart i {
  font-size: 16px;
}
.heart[aria-pressed="true"] {
  background: var(--danger-soft);
  color: var(--danger);
  border-color: rgba(239, 68, 68, 0.22);
}
.adventure-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  height: 100%;
}
.adventure-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: transparent;
}
.adventure-card__media {
  position: relative;
  height: 360px;
  min-height: 360px;
  border-radius: 32px;
  overflow: hidden;
  background: #dfe8ef;
  box-shadow: 0 22px 44px rgba(7, 20, 38, 0.14);
}
.adventure-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 38, 0.18) 0%,
    rgba(7, 20, 38, 0.08) 38%,
    rgba(7, 20, 38, 0.24) 100%
  );
}
.adventure-card .card-img {
  position: relative;
  height: 100%;
  border-radius: 32px;
  background: transparent;
}
.adventure-card .card-img img {
  height: 100%;
}
.adventure-card__topbar {
  position: absolute;
  top: 16px;
  inset-inline: 16px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.adventure-card__features {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  max-width: calc(100% - 52px);
  overflow: hidden;
}
.adventure-card__feature {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: 0 7px 18px rgba(7, 20, 38, 0.12);
  color: #20949C;
  font-size: 16px;
  backdrop-filter: blur(4px);
}
.adventure-card__feature i {
  font-size: 16px;
  line-height: 1;
}
.adventure-card .heart {
  position: static;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 16px rgba(7, 20, 38, 0.12);
}
.adventure-card__panel {
  position: absolute;
  inset-inline: 18px;
  bottom: 18px;
  z-index: 3;
  min-height: 172px;
  background: rgba(255, 255, 255, 0.985);
  border: 1px solid rgba(225, 232, 240, 0.92);
  border-radius: 28px;
  padding: 20px 20px 18px;
  box-shadow: 0 16px 30px rgba(7, 20, 38, 0.14);
  display: flex;
  flex-direction: column;
}
.adventure-card__facts {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  min-height: 24px;
  margin-bottom: 14px;
  color: #41576b;
  font-size: 12px;
  font-weight: 800;
}
.adventure-card__fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.adventure-card__fact-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 12px;
  flex: 0 0 auto;
}
.adventure-card__fact-icon i {
  font-size: 11px;
  line-height: 1;
}
.adventure-card__title {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.38;
  letter-spacing: -0.5px;
  color: #07182b;
  min-height: 2.64em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.adventure-card__title a {
  color: inherit;
  text-decoration: none;
}
.adventure-card__title a:hover {
  text-decoration: underline;
}
.adventure-card__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.adventure-card__price-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.adventure-card__price {
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  color: #f15a29;
}
.adventure-card__old {
  font-size: 16px;
  font-weight: 900;
  color: #8a97a4;
  text-decoration: line-through;
  line-height: 1;
  margin-inline-start: 0;
}
.adventure-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  border-radius: 999px;
  background: #f3f7fb;
  color: #4d6275;
  font-size: 12px;
  font-weight: 900;
}
.adventure-card .pill,
.adventure-card .card-body {
  display: none;
}
.adventure-card .stars {
  font-size: 13px;
  color: #e4a325;
}
.adventure-card .stars small {
  color: #617486;
  font-weight: 900;
}
.product-card .card-img {
  height: 210px;
  background: linear-gradient(180deg, #fff, #f3f7fb);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-card .card-img img {
  object-fit: contain;
  max-height: 100%;
  width: 100%;
}
.product-card:hover .card-img img {
  transform: scale(1.035);
}
.experience-card {
  min-height: 160px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(7, 20, 38, 0.05);
  text-align: center;
}
.experience-card i {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 24px;
  margin-bottom: 12px;
}
.experience-card h3 {
  margin: 0 0 6px;
}
.experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f7fafc);
  border: 1px solid var(--line);
  box-shadow: 0 16px 32px rgba(7, 20, 38, 0.06);
}
.audience-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.audience-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.audience-card .meta {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(135deg, #08213d, #0f6b4f);
  color: #fff;
  box-shadow: 0 26px 56px rgba(7, 20, 38, 0.18);
}
.spotlight-media {
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(7, 20, 38, 0.18);
}
.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.spotlight-copy .eyebrow {
  color: #fff;
}
.spotlight-copy p {
  color: #deedf7;
}
.spotlight-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.spotlight-fact {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.spotlight-fact b {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: #fff;
}
.spotlight-fact span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
}
.spotlight-card .title {
  color: #fff;
}
.spotlight-card .btn {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}
.spotlight-card .btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: none;
}
.spotlight-card .btn:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}
.spotlight-card .btn--light:hover {
  background: rgba(255, 255, 255, 0.22);
}
.price-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-end;
  margin: 18px 0;
}
.price-stack .price {
  font-size: 34px;
  color: #fff;
}
.price-stack .old {
  color: #bdd0de;
}
.section-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f8fb;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 900;
  color: #344458 !important;
}
.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 360px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 8px;
}
.gallery-rail > * {
  scroll-snap-align: start;
}
.gallery-rail img,
.gallery-rail .video-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.08);
}
.gallery-rail::-webkit-scrollbar {
  height: 10px;
}
.gallery-rail::-webkit-scrollbar-thumb {
  background: #cad5df;
  border-radius: 999px;
}
.video-thumb {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(7, 20, 38, 0.08),
    rgba(7, 20, 38, 0.74)
  );
  color: #fff;
  overflow: hidden;
}
.video-thumb::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
}
.video-thumb span {
  position: relative;
  z-index: 1;
  font-weight: 900;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.member-card,
.info-card,
.faq-card,
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 14px 32px rgba(7, 20, 38, 0.06);
}
.member-card {
  padding: 24px;
}
.member-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 16px;
}
.member-card h3 {
  margin: 0 0 8px;
}
.member-card p {
  margin: 0;
  color: var(--muted);
}
.checklist {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.checklist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7fafc;
  border: 1px solid var(--line);
}
.checklist i {
  color: var(--green);
  margin-top: 2px;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-card {
  padding: 24px;
  text-align: center;
}
.step-card i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.detail-showcase {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 26px;
  align-items: start;
}
.info-card {
  padding: 26px;
}
.info-card p {
  color: var(--muted);
}
.info-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.info-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.info-card li i {
  color: var(--brand);
  margin-top: 4px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.faq-card {
  padding: 22px;
}
.faq-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.faq-card p {
  margin: 0;
  color: var(--muted);
}
.leaderboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.leader-card {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.05);
  text-align: center;
}
.leader-card b {
  display: block;
  font-size: 26px;
  color: var(--brand);
}
.leader-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}
.media-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.media-mosaic img,
.media-mosaic .video-thumb {
  height: 240px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.08);
}
.compact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}
.photo-stack {
  position: relative;
  min-height: 470px;
}
.photo-stack img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.photo-stack .main-photo {
  height: 460px;
  width: 82%;
  margin-inline-start: auto;
}
.photo-stack .small-photo {
  position: absolute;
  bottom: -24px;
  inset-inline-start: 0;
  width: 45%;
  height: 230px;
  border: 8px solid #fff;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.stat {
  padding: 20px;
  background: var(--surface-3);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.stat b {
  font-size: 30px;
  color: var(--brand);
}
.stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.cta-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      135deg,
      rgba(7, 20, 38, 0.86),
      rgba(15, 107, 79, 0.82)
    ),
    url("../images/green-valley-village.webp") center/cover;
  border-radius: 34px;
  color: #fff;
  padding: 46px;
  box-shadow: var(--shadow);
}
.cta-panel p {
  color: #d9e7ef;
  max-width: 560px;
}
.newsletter {
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 7px;
  max-width: 540px;
  margin-top: 22px;
}
.newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  min-width: 0;
  color: var(--ink);
  background: transparent;
}

.newsletter-panel {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: linear-gradient(135deg, #071426, #0f6b4f);
  border-radius: 34px;
  color: #fff;
  box-shadow: var(--shadow);
}

.newsletter-copy .eyebrow,
.newsletter-panel .section-sub {
  color: #d9e7ef;
}

.newsletter--panel {
  max-width: 680px;
  margin-top: 0;
  box-shadow: 0 16px 34px rgba(7, 20, 38, 0.18);
}

.newsletter-panel .form-status {
  color: #fff;
  margin: 0;
}
.newsletter--popup {
  max-width: none;
  margin-top: 18px;
}
.newsletter--popup .form-status {
  width: 100%;
  margin-top: 4px;
}
.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr 0.85fr;
  gap: 16px;
}
.gallery-strip img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.08);
}
.gallery-strip img:first-child {
  height: 330px;
  grid-row: span 2;
}
.gallery-strip img:nth-child(3) {
  height: 330px;
  grid-row: span 2;
}
.testimonial {
  padding: 20px;
  height: 100%;
}
.avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.avatar b {
  display: block;
}
.avatar span {
  font-size: 12px;
  color: var(--muted);
}
.testimonial p {
  margin: 0;
  color: #344458;
  font-size: 14px;
}
.page-hero {
  position: relative;
  background: #071426;
  color: #fff;
  overflow: hidden;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(7, 20, 38, 0.84),
      rgba(7, 20, 38, 0.48)
    ),
    var(--hero) center/cover no-repeat;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}
.page-hero p {
  max-width: 680px;
  color: #d9e7ef;
  font-size: 18px;
  margin: 0;
}
.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #7b8794;
  font-size: 13px;
  margin: 22px 0;
}
.breadcrumbs a {
  color: var(--brand);
  font-weight: 800;
}
.filter-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
}
.journeys-shell {
  display: grid;
  gap: 26px;
}
.journeys-header {
  display: grid;
  gap: 18px;
}
.journeys-copy {
  max-width: 760px;
}
.filter-panel-wrap {
  display: grid;
  gap: 14px;
}
.filter-toggle {
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbfd);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
  color: #16314a;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.05);
}
.filter-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.filter-toggle i:last-child {
  transition: transform 0.25s ease;
}
.filter-toggle[aria-expanded="true"] i:last-child {
  transform: rotate(180deg);
}
.filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 22px;
}
.filter-form {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}
.filter-form__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.filter-form .product-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
}
.sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.sidebar h3 {
  margin: 0 0 18px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 7px;
  color: #344458;
}
.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  min-height: 48px;
  padding: 10px 14px;
  color: var(--ink);
  outline: 0;
}
.textarea {
  min-height: 130px;
  resize: vertical;
}
.input:focus,
.select:focus,
.textarea:focus {
  border-color: rgba(8, 119, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(8, 119, 255, 0.08);
}
.detail-top {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: start;
}
.gallery-detail {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  direction: ltr;
}
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.thumbs button {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 16px;
}
.thumbs img {
  width: 96px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid transparent;
  background: #fff;
}
.thumbs button.active img,
.thumbs button[aria-selected="true"] img {
  border-color: var(--brand);
}
.main-detail-img {
  height: 560px;
  border-radius: 30px;
  overflow: hidden;
  background: #f3f7fb;
  box-shadow: var(--shadow-soft);
}
.main-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-detail-img.product-img img {
  object-fit: contain;
  padding: 30px;
  background: #fff;
}
.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 104px;
}
.detail-card h1 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.14;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.detail-card p {
  color: var(--muted);
  margin: 0 0 20px;
}
.quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.qty {
  height: 46px;
  min-width: 130px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-weight: 900;
}
.qty button {
  border: 0;
  background: transparent;
  font-size: 20px;
  color: var(--brand);
}
.facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
}
.fact i {
  font-style: normal;
  color: var(--brand);
  font-size: 24px;
}
.fact b {
  display: block;
  margin-top: 5px;
}
.fact span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}
.tabs-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.tabs-head {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.tabs-head button {
  flex: 1;
  text-align: center;
  padding: 17px 12px;
  font-weight: 900;
  color: #556477;
  background: #fff;
  border: 0;
}
.tabs-head button.active,
.tabs-head button[aria-selected="true"] {
  color: var(--brand);
  box-shadow: inset 0 -3px 0 var(--brand);
}
.tab-panel[hidden] {
  display: none;
}
.tabs-content {
  padding: 26px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.check-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: #fff;
}
.check-card h3 {
  margin: 0 0 12px;
}
.check-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-card li {
  display: flex;
  gap: 10px;
  margin: 9px 0;
  color: #344458;
}
.check-card li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e6f7ef;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  font-weight: 900;
}
.check-card--no li::before {
  content: "×";
  background: var(--danger-soft);
  color: var(--danger);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  position: relative;
}
.timeline-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  text-align: center;
  position: relative;
}
.timeline-step b {
  display: block;
  color: var(--brand);
  font-size: 22px;
}
.timeline-step span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.map-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.map-placeholder {
  min-height: 260px;
  border-radius: 26px;
  background: linear-gradient(135deg, #e7f4ff, #f1f6ed);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
      45deg,
      rgba(8, 119, 255, 0.08) 0 2px,
      transparent 2px 26px
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(15, 107, 79, 0.07) 0 2px,
      transparent 2px 30px
    );
}
.pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 32px;
}
.bundle {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.1fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.bundle-item {
  display: flex;
  gap: 12px;
  align-items: center;
}
.bundle-item img {
  width: 90px;
  height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: #f5f7fa;
  border: 1px solid var(--line);
}
.plus,
.equals {
  font-size: 28px;
  color: var(--muted);
  font-weight: 900;
}
.bundle-total {
  border-inline-start: 1px solid var(--line);
  padding-inline-start: 18px;
}
.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.spec {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed var(--line);
  padding: 13px 0;
}
.spec b {
  color: #344458;
}
.spec span {
  color: var(--muted);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-list a,
.contact-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.contact-list i {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}
.blog-card .card-img {
  height: 220px;
}
.blog-card time {
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
}
.blog-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 0;
}
.footer {
  background: #071426;
  color: #d9e7ef;
  margin-top: 60px;
  padding: 56px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.05fr;
  gap: 34px;
}
.footer .logo span {
  color: #fff;
}
.footer p {
  color: #9fb0c5;
}
.footer h4 {
  color: #fff;
  margin: 0 0 14px;
}
.footer a {
  display: block;
  color: #b9c7d8;
  margin: 8px 0;
}
.footer a:hover {
  color: #fff;
}
.footer .input {
  background: #0d1d33;
  color: #fff;
  border-color: #18304f;
}
.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  color: #90a4bd;
  font-size: 13px;
}
.socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.socials a,
.socials span {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #0d1d33;
  color: #fff;
}
.socials a i,
.socials span i {
  font-size: 20px;
  line-height: 1;
}

.whatsapp i {
  font-size: 32px;
  line-height: 1;
}
.socials span {
  opacity: 0.55;
  cursor: not-allowed;
}
.socials-note {
  font-size: 12px;
  color: #90a4bd;
  margin-top: 10px;
}
.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.36);
  border: 4px solid #fff;
}
.mobile-bottom {
  display: none;
  position: fixed;
  inset-inline: 14px;
  bottom: 12px;
  z-index: 820;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 8px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mobile-bottom a {
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.mobile-bottom a.active {
  background: var(--brand-soft);
  color: var(--brand);
}
.drawer {
  display: none;
  position: fixed;
  z-index: 950;
  inset: 0;
  overflow: hidden;
  background: rgba(7, 20, 38, 0.45);
}
.drawer-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: min(360px, 86vw);
  max-width: calc(100vw - 28px);
  overflow-y: auto;
  overflow-x: hidden;
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer .menu-mobile {
  display: grid;
  gap: 8px;
}
.drawer .menu-mobile a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
}

.account-entry--drawer,
.account-guest--drawer {
  margin: 10px 0 4px;
}

.account-guest--drawer {
  display: grid;
  gap: 10px;
}

.drawer-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}
.drawer.open {
  display: block;
}
.product-note {
  font-size: 13px;
  color: var(--muted);
  background: #f9fafb;
  border: 1px dashed var(--line);
  border-radius: 18px;
  padding: 13px;
  margin-top: 16px;
}
.payment-methods {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}
.payment-methods > span:first-child {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.payment-methods__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 7px 0 4px;
  color: #17233a;
  font-size: 34px;
  line-height: 1;
}
.payment-methods small {
  display: block;
  font-size: 11px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-status {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  background: var(--surface-3);
  color: #344458;
}
.form-status--success {
  border-color: rgba(15, 107, 79, 0.18);
  background: var(--green-soft);
  color: var(--green);
}
.form-status--error {
  border-color: rgba(239, 68, 68, 0.18);
  background: var(--danger-soft);
  color: #b42318;
}
.result-summary {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f7fafc);
  color: #44576b;
  font-size: 14px;
  font-weight: 800;
}
.empty-state {
  padding: 26px;
  border: 1px dashed var(--line-strong);
  border-radius: 24px;
  background: var(--surface-3);
  text-align: center;
  color: #344458;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.support-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}
.support-card p {
  margin: 0 0 14px;
  color: var(--muted);
}
.support-card ul {
  margin: 0;
  padding-inline-start: 20px;
  color: #344458;
}
.support-card li {
  margin: 8px 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(8, 119, 255, 0.24);
  outline-offset: 3px;
}

.menu a:focus-visible,
.btn:focus-visible,
.icon-btn:focus-visible,
.chip:focus-visible,
.card-img:focus-visible,
.footer a:focus-visible,
.drawer .menu-mobile a:focus-visible,
.thumbs button:focus-visible,
.tabs-head button:focus-visible {
  box-shadow: 0 0 0 4px rgba(8, 119, 255, 0.14);
}

@media (max-width: 1080px) {
  .menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .topbar .container {
    justify-content: center;
  }
  .topbar__meta span:nth-child(2) {
    display: none;
  }
  .account-entry__text small {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card .btn {
    grid-column: 1/-1;
  }
  .trust-grid,
  .audience-grid,
  .leaderboard {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--4,
  .grid--5,
  .grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .filter-layout,
  .detail-top,
  .contact-layout,
  .spotlight-card,
  .story-grid,
  .detail-showcase {
    grid-template-columns: 1fr;
  }
  .filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-form__actions,
  .filter-form .product-note {
    grid-column: 1 / -1;
  }
  .sidebar,
  .detail-card {
    position: relative;
    top: auto;
  }
  .facts {
    grid-template-columns: repeat(3, 1fr);
  }
  .bundle {
    grid-template-columns: 1fr;
  }
  .plus,
  .equals {
    display: none;
  }
  .bundle-total {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
    padding-inline-start: 0;
    padding-top: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-detail {
    grid-template-columns: 1fr;
  }
  .thumbs {
    order: 2;
    flex-direction: row;
    overflow: auto;
  }
  .main-detail-img {
    height: 430px;
  }
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid,
  .media-mosaic {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 15px;
    padding-bottom: 78px;
  }
  .topbar {
    display: none;
  }
  .nav {
    height: 72px;
    display: grid;
    grid-template-columns: 44px minmax(110px, 1fr) auto;
    gap: 10px;
    padding: 9px 0;
  }
  .logo img {
    width: 200px;
  }
  .logo span {
    font-size: 13px;
  }
  .logo {
    min-width: 0;
    justify-self: center;
  }
  .nav-account-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
  }
  .nav-account-mobile > * {
    max-width: 100%;
  }
  .actions {
    justify-self: start;
  }
  .actions .btn,
  .actions .icon-btn,
  .actions .account-entry,
  .account-guest .btn:first-child {
    display: none;
  }
  .account-guest {
    display: none;
  }
  .hero {
    min-height: 0;
    padding-bottom: 16px;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
  }
  .hero .container {
    min-height: 0;
    align-items: flex-start;
  }
  .hero-content {
    max-width: none;
    padding: 52px 0 12px;
  }
  .hero p {
    font-size: 15.5px;
    margin-bottom: 16px;
  }
  .title {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .hero .section-note {
    margin-bottom: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-card {
    position: relative;
    inset-inline: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    border-radius: 20px;
    grid-template-columns: 1fr;
    box-shadow: 0 14px 32px rgba(7, 20, 38, 0.12);
  }
  [dir="ltr"] .hero-card {
    transform: none;
  }
  .search-field {
    min-height: 54px;
    border-radius: 17px;
  }
  .trust-strip {
    margin-top: 12px;
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .trust-item {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
  .trust-item:first-child {
    border-top: 0;
  }
  .strategic-partners {
    padding-top: 28px;
  }
  .strategic-partners__head {
    margin-bottom: 20px;
  }
  .strategic-partners__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .strategic-partners__card {
    height: min(58vw, 260px);
    padding: 12px;
    border-radius: 22px;
  }
  .section {
    padding: 28px 0;
  }
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .grid--3,
  .grid--4,
  .grid--5,
  .grid--6,
  .audience-grid,
  .journey-grid,
  .faq-grid,
  .leaderboard,
  .media-mosaic {
    grid-template-columns: 1fr;
  }
  .split,
  .support-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .photo-stack {
    min-height: 0;
  }
  .photo-stack .main-photo {
    width: 100%;
    height: 330px;
  }
  .photo-stack .small-photo {
    display: none;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-strip {
    grid-template-columns: 1fr;
  }
  .gallery-strip img,
  .gallery-strip img:first-child,
  .gallery-strip img:nth-child(3) {
    height: 230px;
  }
  .gallery-rail {
    grid-auto-columns: minmax(220px, 82vw);
  }
  .cta-panel {
    padding: 28px;
  }
  .newsletter {
    gap: 8px;
    border-radius: 22px;
    flex-direction: column;
  }
  .newsletter input {
    min-height: 54px;
    padding: 0 16px;
    font-size: 14px;
  }
  .newsletter-panel {
    gap: 14px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    max-width: 520px;
    margin-inline: auto;
  }
  .newsletter-panel .section-title {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 8px;
  }
  .newsletter-panel .section-sub {
    font-size: 13px;
    line-height: 1.65;
    max-width: 32ch;
  }
  .newsletter-copy .eyebrow {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .newsletter .btn {
    width: 100%;
    min-height: 50px;
    font-size: 14px;
  }
  .page-hero .container {
    padding: 70px 0;
  }
  .facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .check-grid,
  .map-card {
    grid-template-columns: 1fr;
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .main-detail-img {
    height: 360px;
  }
  .tabs-head {
    overflow: auto;
  }
  .tabs-head button {
    min-width: 130px;
  }
  .footer {
    padding-bottom: 88px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    flex-direction: column;
  }
  .whatsapp {
    right: 18px;
    bottom: 88px;
    width: 56px;
    height: 56px;
  }
  .mobile-bottom {
    display: grid;
  }
  .contact-card {
    padding: 22px;
  }
  .container {
    width: min(100% - 28px, 1180px);
  }
  .journeys-header {
    gap: 14px;
  }
  .journeys-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .journeys-chips::-webkit-scrollbar {
    display: none;
  }
  .journeys-chips .chip {
    flex: 0 0 auto;
  }
  .filter-panel {
    padding: 18px;
    border-radius: 24px;
  }
  .filter-form {
    grid-template-columns: 1fr;
  }
  .filter-form__actions {
    flex-direction: column;
  }
  .filter-form__actions .btn {
    width: 100%;
  }
  .result-summary {
    align-items: flex-start;
    min-height: 0;
    padding: 14px 16px;
  }
  .adventure-card__media,
  .adventure-card .card-img {
    min-height: 320px;
    height: 320px;
  }
  .adventure-card__features {
    max-width: calc(100% - 48px);
    gap: 7px;
  }
  .adventure-card__feature {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .adventure-card__panel {
    inset-inline: 12px;
    bottom: 12px;
    min-height: 154px;
    padding: 16px 16px 14px;
    border-radius: 22px;
  }
  .adventure-card__title {
    font-size: 19px;
    margin-bottom: 12px;
    min-height: 2.64em;
  }
  .adventure-card__facts {
    gap: 6px;
    font-size: 11px;
  }
  .adventure-card__price {
    font-size: 24px;
  }
  .adventure-card__old {
    font-size: 14px;
  }
  .spotlight-media {
    min-height: 260px;
  }
  .spotlight-copy .title {
    font-size: 34px;
  }
  .media-mosaic img,
  .media-mosaic .video-thumb {
    height: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.hero-slider {
  position: relative;
  min-height: min(760px, 92vh);
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__content {
  min-height: min(760px, 92vh);
  display: grid;
  align-content: center;
  gap: 18px;
  color: #fff;
  padding-block: 110px 140px;
  position: relative;
  z-index: 1;
}

.hero-slide__content p {
  max-width: 720px;
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-slider__controls {
  position: absolute;
  inset-inline: 0;
  bottom: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 3;
}

.hero-slider__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
}

.hero-slider__dots button.is-active {
  width: 34px;
  background: #fff;
}

.adventure-card--international .adventure-card__media {
  box-shadow: 0 18px 48px rgba(8, 119, 255, 0.14);
}

.adventure-card--international .adventure-card__panel {
  border: 1px solid rgba(8, 119, 255, 0.12);
}

.section-head--slider {
  align-items: center;
}

.section-head__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.content-slider {
  --slider-gap: 24px;
  --slider-items: 3;
  position: relative;
}

.content-slider__viewport {
  overflow: hidden;
  padding: 6px 2px 14px;
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.content-slider__track {
  display: flex;
  gap: var(--slider-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slider.is-dragging,
.content-slider__viewport.is-dragging {
  cursor: grabbing;
}

.content-slider__viewport.is-dragging .content-slider__track,
.hero-slider.is-dragging .hero-slide {
  transition-duration: 0.12s;
}

.content-slider__slide {
  flex: 0 0 calc((100% - (var(--slider-gap) * (var(--slider-items) - 1))) / var(--slider-items));
  min-width: 0;
}

.content-slider__slide.experience-card,
.content-slider__slide.audience-card,
.content-slider__slide.team-card,
.content-slider__slide.testimonial,
.content-slider__slide.memory-card,
.content-slider__slide.memory-video-card,
.content-slider__slide.product-card {
  height: 100%;
}

.content-slider__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-slider__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.content-slider__arrow:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(8, 119, 255, 0.28);
}

.content-slider__arrow:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.content-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.content-slider__dots button {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(7, 20, 38, 0.22);
  box-shadow: 0 0 0 6px rgba(7, 20, 38, 0.04);
  transition: 0.25s ease;
}

.content-slider__dots button.is-active {
  width: 38px;
  background: var(--brand);
}

.content-slider__dots-dock {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  min-height: 34px;
  position: relative;
  z-index: 1;
}

.content-slider--adventures .content-slider__viewport {
  padding-top: 10px;
}

.memory-card,
.memory-video-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.memory-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.memory-card__caption {
  padding: 18px 20px;
  font-weight: 800;
  color: #203247;
}

.content-slider--videos .content-slider__slide,
.content-slider--media .content-slider__slide,
.content-slider--stories .content-slider__slide {
  padding-bottom: 2px;
}

.memory-video-card .video-thumb {
  min-height: 320px;
  height: 100%;
  border-radius: 28px;
}

.team-grid {
  gap: var(--slider-gap);
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.team-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 20px 18px 18px;
  text-align: center;
}

.team-card__body h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  line-height: 1.4;
}

.team-card__body p {
  min-height: 3.4em;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.team-card__body .btn {
  width: 100%;
  max-width: 190px;
  margin-top: auto;
}

.terms-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.7;
  cursor: pointer;
}

.terms-consent input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.terms-consent a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
}

.booking-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.starting-price-label {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-weight: 800;
}

.trip-option-picker {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.trip-option-picker__heading b,
.trip-option-picker__heading small {
  display: block;
}

.trip-option-picker__heading b {
  font-size: 18px;
}

.trip-option-picker__heading small {
  margin-top: 2px;
  color: var(--muted);
}

.trip-option-list {
  display: grid;
  gap: 10px;
}

.trip-option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-3);
}

.trip-option-card__content {
  min-width: 0;
}

.trip-option-card__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.trip-option-card__title b {
  flex-basis: 100%;
  color: var(--ink);
  font-size: 16px;
}

.trip-option-card__price {
  color: var(--brand);
  font-size: 18px;
  font-weight: 950;
}

.trip-option-card__content p {
  margin: 6px 0 4px;
  font-size: 13px;
  line-height: 1.65;
}

.trip-option-card__content > small {
  color: var(--muted);
  font-weight: 700;
}

.trip-option-card__qty {
  min-width: 108px;
}

.trip-option-card__qty button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.trip-option-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: var(--brand-soft);
}

.trip-option-summary div {
  display: grid;
  gap: 2px;
}

.trip-option-summary span {
  color: var(--muted);
  font-size: 12px;
}

.trip-option-summary b {
  color: var(--brand);
  font-size: 18px;
}

.cart-sections,
.cart-sections > section {
  display: grid;
  gap: 18px;
}

.cart-sections > section + section {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.cart-line-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.cart-line-item > div {
  width: 100%;
}

.cart-item-actions,
.cart-trip-actions,
.cart-empty-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cart-item-actions .input {
  max-width: 120px;
}

.cart-trip-options {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.cart-trip-option {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-3);
}

.cart-trip-option > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-trip-option > div > b {
  flex-basis: 100%;
}

.cart-trip-option small {
  color: var(--muted);
}

.cart-remove-form {
  margin-top: 8px;
}

.content-slider__viewport:focus-visible {
  outline: 3px solid rgba(8, 119, 255, 0.25);
  outline-offset: 4px;
  border-radius: 18px;
}

.team-all-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.team-all-grid[hidden] {
  display: none;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 38, 0.58);
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 32px));
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.modal__close {
  position: absolute;
  top: 18px;
  inset-inline-end: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.modal__content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.modal__facts {
  display: grid;
  gap: 14px;
}

.modal__facts div {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface-3);
  border: 1px solid var(--line);
}

.modal__facts b,
.modal__facts span {
  display: block;
}
.newsletter-modal .modal__backdrop {
  background: rgba(7, 20, 38, 0.72);
  backdrop-filter: blur(6px);
}
.newsletter-modal__dialog {
  width: min(720px, calc(100vw - 32px));
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(135deg, #071426, #0f6b4f);
  color: #fff;
}
.newsletter-modal__content {
  padding: 36px;
}
.newsletter-modal__content .eyebrow,
.newsletter-modal__content .section-sub {
  color: #d9e7ef;
}
.newsletter-modal__content .section-title {
  max-width: 14ch;
  color: #fff;
}
.newsletter-modal__content .section-sub {
  max-width: 48ch;
}
.newsletter-modal .modal__close {
  top: 16px;
  inset-inline-end: 16px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.company-download {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.company-download__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.company-download__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-download__list i {
  color: var(--green);
}

.company-download__form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-3);
  border: 1px solid var(--line);
}

.store-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.store-filter-card {
  position: sticky;
  top: 108px;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.store-filter-form {
  display: grid;
  gap: 16px;
}

.store-results {
  min-width: 0;
}

.store-mobile-filter-trigger,
.product-filter-modal {
  display: none;
}

@media (max-width: 1100px) {
  .section-head__actions {
    width: 100%;
    justify-content: space-between;
  }

  .store-shell,
  .company-download {
    grid-template-columns: 1fr;
  }

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

  .store-filter-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .store-filter-card--desktop {
    display: none;
  }

  .store-mobile-filter-trigger {
    width: 100%;
    min-height: 50px;
    margin-bottom: 18px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(8, 119, 255, 0.24);
    border-radius: 16px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(7, 20, 38, 0.08);
  }

  .store-mobile-filter-trigger > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }

  .store-mobile-filter-trigger i {
    color: var(--blue);
  }

  .store-mobile-filter-trigger__count {
    min-width: 28px;
    height: 28px;
    padding-inline: 8px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    line-height: 1;
  }

  .product-filter-modal:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .product-filter-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(7, 20, 38, 0.62);
    backdrop-filter: blur(3px);
  }

  .product-filter-sheet.store-filter-card {
    position: relative;
    z-index: 1;
    top: auto;
    width: min(100%, 640px);
    max-height: min(90dvh, 720px);
    margin: 0;
    padding: 32px 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    border-width: 0;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -18px 50px rgba(7, 20, 38, 0.2);
  }

  .product-filter-sheet__handle {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: #d4dce5;
    transform: translateX(-50%);
  }

  .product-filter-sheet__close {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
  }

  .product-filter-sheet .section-title {
    padding-inline-end: 46px;
    font-size: clamp(22px, 6vw, 28px);
  }

  .product-filter-sheet .section-sub {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .product-filter-sheet .filter-form__actions {
    position: sticky;
    bottom: calc(-18px - env(safe-area-inset-bottom));
    margin-inline: -18px;
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(8px);
  }

  .trip-option-card {
    grid-template-columns: 1fr;
    padding: 13px;
  }

  .trip-option-card__qty {
    width: 100%;
    min-width: 0;
  }

  .trip-option-summary {
    grid-template-columns: 1fr;
  }

  .content-slider--team {
    --slider-gap: 12px;
  }

  .content-slider--team .team-card {
    border-radius: 22px;
  }

  .content-slider--team .team-card__body {
    padding: 14px 10px 12px;
  }

  .content-slider--team .team-card__body h3 {
    margin-bottom: 5px;
    font-size: 17px;
    line-height: 1.4;
  }

  .content-slider--team .team-card__body p {
    min-height: 3.3em;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .content-slider--team .team-card__body .btn {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .home-adventure-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-adventure-chips::-webkit-scrollbar {
    display: none;
  }

  .home-adventure-chips .chip {
    flex: 0 0 auto;
  }

  .content-slider--adventures {
    --slider-gap: 12px;
  }

  .content-slider--adventures .adventure-card__media,
  .content-slider--adventures .adventure-card .card-img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .content-slider--adventures .adventure-card__media {
    box-shadow: 0 12px 24px rgba(7, 20, 38, 0.12);
  }

  .content-slider--adventures .adventure-card__topbar {
    top: 8px;
    inset-inline: 8px;
    gap: 6px;
  }

  .content-slider--adventures .adventure-card__features {
    display: flex;
    gap: 3px;
    max-width: calc(100% - 32px);
    overflow: visible;
  }

  .content-slider--adventures .adventure-card__feature {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .content-slider--adventures .adventure-card__feature i {
    font-size: 9px;
  }

  .content-slider--adventures .adventure-card .heart {
    width: 26px;
    height: 26px;
  }

  .content-slider--adventures .adventure-card .heart i {
    font-size: 11px;
  }

  .content-slider--adventures .adventure-card__panel {
    inset-inline: 7px;
    bottom: 7px;
    min-height: 0;
    height: 40%;
    padding: 9px;
    border-radius: 15px;
  }

  .content-slider--adventures .adventure-card__facts {
    min-height: 18px;
    margin-bottom: 5px;
    font-size: 10px;
  }

  .content-slider--adventures .adventure-card__fact {
    display: none;
  }

  .content-slider--adventures .adventure-card__fact:last-child {
    display: inline-flex;
    gap: 4px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .content-slider--adventures .adventure-card__fact-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .content-slider--adventures .adventure-card__fact-icon i {
    font-size: 9px;
  }

  .content-slider--adventures .adventure-card__title {
    min-height: 2.7em;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .content-slider--adventures .adventure-card__pricing {
    justify-content: flex-start;
    gap: 0;
  }

  .content-slider--adventures .adventure-card__price-group {
    align-items: flex-start;
    gap: 0;
  }

  .content-slider--adventures .adventure-card__price {
    font-size: 16px;
    white-space: nowrap;
  }

  .content-slider--adventures .adventure-card__old,
  .content-slider--adventures .adventure-card__badge {
    display: none;
  }

  .hero-slider,
  .hero-slide__content {
    min-height: 620px;
  }

  .hero-slide__content {
    padding-block: 72px 105px;
  }

  .hero-slide__content p {
    font-size: 16px;
  }

  .hero-slider__controls {
    bottom: 24px;
  }

  .section-head--slider,
  .section-head__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .content-slider__controls {
    width: 100%;
    justify-content: center;
  }

  .content-slider__dots {
    justify-content: center;
  }

  .content-slider__dots-dock {
    margin-top: 10px;
  }

  .team-all-grid {
    grid-template-columns: 1fr;
  }

  .hero-slider__arrow,
  .content-slider__arrow {
    display: none;
  }

  .section {
    padding-block: 24px;
  }

  .section--tight {
    padding-block: 20px;
  }

  .page-hero .container {
    padding-block: 52px;
  }

  .contact-card,
  .detail-card,
  .cta-panel,
  .company-download,
  .modal__dialog,
  .store-filter-card,
  .support-card {
    padding: 18px;
  }

  .newsletter-modal__dialog {
    padding: 0;
    border-radius: 26px;
  }

  .newsletter-modal__content {
    padding: 20px 18px;
  }

  .newsletter-modal__content .section-title {
    max-width: none;
    font-size: 22px;
    line-height: 1.35;
  }

  .newsletter-modal__content .section-sub {
    font-size: 14px;
    line-height: 1.75;
  }

  .btn,
  .icon-btn,
  .qty button {
    min-height: 44px;
  }

  .cart-line-item {
    align-items: flex-start;
  }

  .cart-trip-actions .btn,
  .cart-trip-actions form,
  .cart-trip-actions form .btn,
  .cart-empty-actions .btn {
    width: 100%;
  }
}

/* Two compact product cards per row on the products listing only. */
@media (max-width: 768px) {
  .products-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .products-index-grid .product-card {
    min-width: 0;
    border-radius: 18px;
  }

  .products-index-grid .product-card .card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 10px;
  }

  .products-index-grid .product-card .card-body {
    padding: 11px 10px 12px;
  }

  .products-index-grid .product-card h3 {
    min-height: 2.8em;
    margin-bottom: 6px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .products-index-grid .product-card .meta {
    min-height: 3.2em;
    margin-bottom: 7px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .products-index-grid .product-card .stars {
    margin-bottom: 7px;
    overflow: hidden;
    font-size: 9px;
    letter-spacing: 0;
  }

  .products-index-grid .product-card .stars small {
    font-size: 9px;
  }

  .products-index-grid .product-card .price-row,
  .products-index-grid .product-card .price-row > div {
    min-width: 0;
  }

  .products-index-grid .product-card .price {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
  }

  .products-index-grid .product-card .old {
    display: block;
    margin: 2px 0 0;
    font-size: 10px;
    white-space: nowrap;
  }

  .products-index-grid .product-card .pill {
    top: 8px;
    inset-inline-start: 8px;
    max-width: calc(100% - 48px);
    padding: 5px 7px;
    overflow: hidden;
    font-size: 9px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .products-index-grid .product-card .heart {
    top: 7px;
    inset-inline-end: 7px;
    width: 30px;
    height: 30px;
  }

  .products-index-grid .product-card .heart i {
    font-size: 12px;
  }

}

/* Two compact adventure cards per row on the adventures listing only. */
@media (max-width: 760px) {
  .adventures-index-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .adventures-index-grid .empty-state {
    grid-column: 1 / -1;
  }

  .adventures-index-grid .adventure-card__media,
  .adventures-index-grid .adventure-card .card-img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
  }

  .adventures-index-grid .adventure-card__media {
    box-shadow: 0 12px 24px rgba(7, 20, 38, 0.12);
  }

  .adventures-index-grid .adventure-card__topbar {
    top: 8px;
    inset-inline: 8px;
    gap: 6px;
  }

  .adventures-index-grid .adventure-card__features {
    display: flex;
    gap: 3px;
    max-width: calc(100% - 32px);
    overflow: visible;
  }

  .adventures-index-grid .adventure-card__feature {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }

  .adventures-index-grid .adventure-card__feature i {
    font-size: 9px;
  }

  .adventures-index-grid .adventure-card .heart {
    width: 26px;
    height: 26px;
  }

  .adventures-index-grid .adventure-card .heart i {
    font-size: 11px;
  }

  .adventures-index-grid .adventure-card__panel {
    inset-inline: 7px;
    bottom: 7px;
    min-height: 0;
    height: 40%;
    padding: 9px;
    border-radius: 15px;
  }

  .adventures-index-grid .adventure-card__facts {
    min-height: 18px;
    margin-bottom: 5px;
    font-size: 10px;
  }

  .adventures-index-grid .adventure-card__fact {
    display: none;
  }

  .adventures-index-grid .adventure-card__fact:last-child {
    display: inline-flex;
    gap: 4px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .adventures-index-grid .adventure-card__fact-icon {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .adventures-index-grid .adventure-card__fact-icon i {
    font-size: 9px;
  }

  .adventures-index-grid .adventure-card__title {
    min-height: 2.7em;
    margin-bottom: 5px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .adventures-index-grid .adventure-card__pricing {
    justify-content: flex-start;
    gap: 0;
  }

  .adventures-index-grid .adventure-card__price-group {
    align-items: flex-start;
    gap: 0;
  }

  .adventures-index-grid .adventure-card__price {
    font-size: 16px;
    white-space: nowrap;
  }

  .adventures-index-grid .starting-price-label {
    font-size: 9px;
    line-height: 1.2;
    margin-bottom: 1px;
  }

  .adventures-index-grid .adventure-card__old,
  .adventures-index-grid .adventure-card__badge {
    display: none;
  }
}
