:root {
  --orange: #FF9301;
  --navy: #002F49;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-medium: #BBBBBB;
  --gray-dark: #4A5568;
  --black-soft: #1A202C;
  --green: #27AE60;
  --yellow: #F39C12;
  --red: #C0392B;
  --blue: #3498DB;
  --border: #E2E8F0;
  --shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-normal: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-strong: 0 4px 16px rgba(0, 47, 73, 0.12);
  --radius-small: 4px;
  --radius: 8px;
  --radius-large: 16px;
  --header-height: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
button, a, input, textarea, select { -webkit-tap-highlight-color: rgba(255,147,1,.2); }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 84px 0; }

body.home-page {
  font-family: 'DM Sans', sans-serif;
}
body.home-page h1,
body.home-page h2,
body.home-page h3,
body.home-page .hero-h1,
body.home-page .sec-title,
body.home-page .card-title,
body.home-page .modal-title,
body.home-page .price-main {
  font-family: 'Playfair Display', serif;
}
body.home-page .hero-h1,
body.home-page h1 {
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -1px;
}
body.home-page .hero-h1 em,
body.home-page h1 em {
  color: #FF9301;
  font-style: italic;
}
body.home-page .sec-title,
body.home-page h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #002F49;
}
body.home-page .sec-title em,
body.home-page h2 em {
  color: #FF9301;
  font-style: normal;
}
body.home-page .card-title,
body.home-page h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: #002F49;
}
body.home-page .modal-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: #002F49;
}
body.home-page .hero-sub,
body.home-page .hero p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}
body.home-page .sec-eyebrow,
body.home-page .card-eyebrow,
body.home-page .eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #FF9301;
}
body.home-page .path-content h3,
body.home-page .startfly-content h3,
body.home-page .popular-card-content h3,
body.home-page .highlight-card h3,
body.home-page .method-step h3,
body.home-page .final-cta-box h2,
body.home-page .site-footer h3 {
  color: var(--white);
}
.page-loader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,147,1,.16), transparent 30%),
    linear-gradient(135deg, var(--navy), #06415f 58%, #06283c);
  color: var(--white);
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark {
  width: 180px; height: 120px; display: grid; place-items: center;
  filter: drop-shadow(0 24px 38px rgba(0,0,0,.3));
  animation: loaderLift 1.1s ease-in-out infinite alternate;
}
.loader-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.loader-line {
  width: 180px; height: 3px; margin-top: 22px; border-radius: 999px; overflow: hidden;
  background: rgba(255,255,255,.16);
}
.loader-line::before {
  content: ""; display: block; width: 45%; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--orange), var(--white));
  animation: loaderRoute 1.05s ease-in-out infinite;
}
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 120; width: 100%; height: 3px;
  transform: scaleX(0); transform-origin: left center;
  background: linear-gradient(90deg, var(--orange), #ffd08a, var(--blue));
  box-shadow: 0 0 18px rgba(255,147,1,.34);
}
@keyframes loaderLift {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(-8px) rotate(2deg); }
}
@keyframes loaderRoute {
  from { transform: translateX(-110%); }
  to { transform: translateX(250%); }
}
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 999;
  background: var(--orange); color: var(--white);
  padding: 10px 14px; border-radius: var(--radius-small); font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-height);
  background: rgba(0, 47, 73, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-strong); background: rgba(0,47,73,.98); }
.header-container { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  display: block !important;
  width: auto !important;
  max-width: 180px !important;
  height: 58px !important;
  max-height: 58px !important;
  object-fit: contain !important;
}
.site-header .brand,
.site-header .brand-logo {
  max-width: 180px !important;
}
.site-header .brand-logo { height: 58px !important; }
.site-footer .footer-brand { display: inline-flex; }
.footer-brand .brand-logo { height: 104px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; background: var(--orange); color: var(--white);
  display: grid; place-items: center; font-weight: 800; letter-spacing: .5px; box-shadow: var(--shadow-normal);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { color: var(--white); font-size: 18px; }
.brand-text span { color: rgba(255,255,255,.74); font-size: 13px; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: rgba(255,255,255,.84); font-size: 14px; font-weight: 600;
  padding: 10px 12px; border-radius: 999px; transition: background .2s ease, color .2s ease;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,.1); color: var(--white); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18);
  background: transparent; border-radius: var(--radius); cursor: pointer; margin-left: auto;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--white); display: block; margin: 5px auto; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 6px; padding: 12px 24px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-normal); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-tertiary { background: var(--white); color: var(--navy); border-color: var(--navy); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.64); background: rgba(255,255,255,.08); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.header-cta { padding: 10px 16px; white-space: nowrap; }

.hero {
  min-height: 760px; position: relative; display: grid; align-items: center;
  padding-top: var(--header-height); overflow: hidden; background: var(--navy);
}
.hero-media, .hero-video, .hero-overlay { position: absolute; inset: 0; }
.hero-media { background: var(--navy); }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: .72; transform: scale(1.04); animation: heroDrift 18s ease-in-out infinite alternate; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,47,73,.82) 0%, rgba(0,47,73,.58) 48%, rgba(0,47,73,.28) 100%),
    linear-gradient(0deg, rgba(0,47,73,.54) 0%, rgba(0,47,73,.08) 42%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 1120px; padding: 96px 0; }
.hero-content::after {
  content: ""; position: absolute; width: min(420px, 45vw); height: 1px; left: 0; bottom: 56px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.42), transparent);
  opacity: .75;
}
.hero-content > * { opacity: 0; transform: translateY(18px); animation: heroEnter .72s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-content > *:nth-child(2) { animation-delay: .08s; }
.hero-content > *:nth-child(3) { animation-delay: .16s; }
.hero-content > *:nth-child(4) { animation-delay: .24s; }
.hero-content > *:nth-child(5) { animation-delay: .32s; }
@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0,0,0); }
  to { transform: scale(1.1) translate3d(-1.4%, -1%, 0); }
}
@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--orange);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .9px; margin-bottom: 14px;
}
.hero h1 { max-width: 790px; font-size: clamp(42px, 6vw, 72px); line-height: 1.04; font-weight: 800; letter-spacing: -1.8px; margin-bottom: 22px; }
.flag-colombia-word { white-space: nowrap; }
.flag-yellow { color: #FCD116; }
.flag-blue { color: #003893; }
.flag-red { color: #CE1126; }
.brand-orange-text { color: var(--orange); }
.colombia-word-accent {
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 800;
}
.hero p { max-width: 670px; color: rgba(255,255,255,.84); font-size: 19px; line-height: 1.7; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(140px, 1fr)); max-width: 680px; gap: 14px; }
.hero-proof div {
  padding: 18px; border-radius: var(--radius); background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.hero-proof div:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); border-color: rgba(255,147,1,.42); }
.hero-proof strong {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 2px;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-proof strong span { color: var(--orange); font-size: inherit; }
.hero-proof div > span { color: rgba(255,255,255,.92); }
.hero-proof .stat-prefix { font-weight: 900; }
.hero-proof .count-up { min-width: .65em; font-variant-numeric: tabular-nums; }
.hero-proof .stat-suffix {
  margin-left: 4px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.2px;
}
.hero-proof .stat-label { display: block; color: rgba(255,255,255,.78); font-size: 13px; }

.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.1);
}
.ticker-inner {
  display: inline-flex;
  gap: 0;
  width: max-content;
  animation: ticker 25s linear infinite;
  will-change: transform;
}
.ticker-wrap:hover .ticker-inner {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1;
  text-transform: uppercase;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}
@keyframes ticker {
  to { transform: translate3d(-50%, 0, 0); }
}

.trust-section { padding-top: 54px; margin-top: 0; position: relative; z-index: 5; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-card {
  position: relative; isolation: isolate; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,249,250,.78) 100%);
  border: 1px solid rgba(226,232,240,.9); border-left: 4px solid var(--orange);
  border-radius: var(--radius); padding: 22px; box-shadow: 0 12px 30px rgba(0,47,73,.1);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.trust-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), rgba(52,152,219,.72), transparent);
}
.trust-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: linear-gradient(135deg, rgba(255,147,1,.11), rgba(52,152,219,.08) 54%, transparent 78%);
  transition: opacity .32s ease;
}
.trust-card:hover { transform: translateY(-5px); border-color: rgba(255,147,1,.42); box-shadow: 0 18px 42px rgba(0,47,73,.14); }
.trust-card:hover::after { opacity: 1; }
.trust-icon {
  width: 30px; height: 30px; border-radius: 999px; background: rgba(39,174,96,.1);
  color: var(--green); display: grid; place-items: center; font-weight: 800; margin-bottom: 14px;
  transition: transform .32s ease, background .32s ease;
}
.trust-card:hover .trust-icon { transform: rotate(-6deg) scale(1.06); background: rgba(39,174,96,.16); }
.trust-card h2, .trust-card h3 { color: var(--navy); font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.trust-card p { font-size: 14px; color: var(--gray-dark); }
.colombia-proof-stream {
  position: relative;
  isolation: isolate;
}
.experience-proof-source {
  position: relative;
  overflow: visible;
}
.experience-proof-source::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 180deg, rgba(255,147,1,.92), rgba(52,152,219,.82), rgba(252,209,22,.8), rgba(255,147,1,.92));
  opacity: 0;
  filter: blur(18px);
}
.experience-proof-source::after {
  content: "";
  position: absolute;
  left: 18px;
  right: -58vw;
  bottom: -52px;
  height: 2px;
  z-index: 4;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #fcd116 28%, #2fb7ff 54%, rgba(255,255,255,.94) 76%, transparent);
  box-shadow: 0 0 18px rgba(255,147,1,.55), 0 0 32px rgba(47,183,255,.34);
  opacity: 0;
  transform: scaleX(.05);
  transform-origin: left center;
}
.colombia-proof-stream.flow-active .experience-proof-source {
  border-color: rgba(255,147,1,.58);
  box-shadow: 0 0 0 1px rgba(255,147,1,.18), 0 16px 42px rgba(255,147,1,.18);
}
.colombia-proof-stream.flow-active .experience-proof-source::before {
  animation: sourceColorPulse 3.8s ease-in-out infinite;
}
.colombia-proof-stream.flow-active .experience-proof-source::after {
  animation: sourceColorRun 4.2s ease-in-out infinite;
}
.colombia-trust-flow {
  position: relative;
  overflow: hidden;
}
.colombia-trust-flow .container {
  position: relative;
}
.colombia-trust-flow .trust-grid {
  position: relative;
  isolation: isolate;
}
.colombia-trust-flow .trust-grid::before,
.colombia-trust-flow .trust-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.colombia-trust-flow .trust-grid::before {
  left: 0;
  right: 0;
  top: -1px;
  z-index: 8;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #fcd116 22%, #2fb7ff 52%, #ffffff 72%, transparent 100%);
  box-shadow: 0 0 22px rgba(255,147,1,.42), 0 0 30px rgba(47,183,255,.28);
  transform: scaleX(0);
  transform-origin: left center;
}
.colombia-trust-flow .trust-grid::after {
  top: -8px;
  left: 0;
  z-index: 9;
  width: 96px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 50%, rgba(255,255,255,.95), rgba(255,255,255,0) 42%),
    linear-gradient(90deg, rgba(255,147,1,0), rgba(255,147,1,.88), rgba(47,183,255,.86), rgba(255,255,255,0));
  filter: blur(1px);
  transform: translateX(-120px);
}
.colombia-trust-flow.flow-active .trust-grid::before {
  animation: trustFlowLine 4.2s ease-in-out infinite;
}
.colombia-trust-flow.flow-active .trust-grid::after {
  animation: trustFlowComet 4.2s ease-in-out infinite;
}
.colombia-trust-flow.flow-active .trust-card::before {
  background: linear-gradient(90deg, var(--orange), #fcd116, #2fb7ff, rgba(255,255,255,.96), var(--orange));
  background-size: 260% 100%;
  animation: cardTopEnergy 4.2s ease-in-out infinite;
}
.colombia-trust-flow.flow-active .trust-card:nth-child(2)::before { animation-delay: .14s; }
.colombia-trust-flow.flow-active .trust-card:nth-child(3)::before { animation-delay: .28s; }
.colombia-trust-flow.flow-active .trust-card:nth-child(4)::before { animation-delay: .42s; }
.exterior-proof-stream {
  position: relative;
  isolation: isolate;
}
.exterior-proof-source {
  position: relative;
  overflow: visible;
}
.exterior-proof-source::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: conic-gradient(from 20deg, rgba(255,147,1,.95), rgba(255,208,138,.78), rgba(52,152,219,.72), rgba(255,147,1,.95));
  opacity: 0;
  filter: blur(18px);
}
.exterior-proof-source::after {
  content: "";
  position: absolute;
  left: 18px;
  right: -48vw;
  bottom: -52px;
  height: 2px;
  z-index: 4;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffd08a 24%, #2fb7ff 54%, rgba(255,255,255,.94) 76%, transparent);
  box-shadow: 0 0 18px rgba(255,147,1,.55), 0 0 32px rgba(47,183,255,.34);
  opacity: 0;
  transform: scaleX(.05);
  transform-origin: left center;
}
.exterior-proof-stream.flow-active .exterior-proof-source {
  border-color: rgba(255,147,1,.58);
  box-shadow: 0 0 0 1px rgba(255,147,1,.18), 0 16px 42px rgba(255,147,1,.18);
}
.exterior-proof-stream.flow-active .exterior-proof-source::before {
  animation: exteriorSourcePulse 3.9s ease-in-out infinite;
}
.exterior-proof-stream.flow-active .exterior-proof-source::after {
  animation: exteriorSourceRun 4.4s ease-in-out infinite;
}
.exterior-trust-flow {
  position: relative;
  overflow: hidden;
}
.exterior-trust-flow .container {
  position: relative;
}
.exterior-trust-flow .trust-grid {
  position: relative;
  isolation: isolate;
}
.exterior-trust-flow .trust-grid::before,
.exterior-trust-flow .trust-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}
.exterior-trust-flow .trust-grid::before {
  left: 0;
  right: 0;
  top: -1px;
  z-index: 8;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), #ffd08a 22%, #2fb7ff 52%, #ffffff 72%, transparent 100%);
  box-shadow: 0 0 22px rgba(255,147,1,.42), 0 0 30px rgba(47,183,255,.28);
  transform: scaleX(0);
  transform-origin: left center;
}
.exterior-trust-flow .trust-grid::after {
  top: -8px;
  left: 0;
  z-index: 9;
  width: 96px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 70% 50%, rgba(255,255,255,.95), rgba(255,255,255,0) 42%),
    linear-gradient(90deg, rgba(255,147,1,0), rgba(255,147,1,.88), rgba(47,183,255,.86), rgba(255,255,255,0));
  filter: blur(1px);
  transform: translateX(-120px);
}
.exterior-trust-flow.flow-active .trust-grid::before {
  animation: exteriorTrustFlowLine 4.4s ease-in-out infinite;
}
.exterior-trust-flow.flow-active .trust-grid::after {
  animation: exteriorTrustFlowComet 4.4s ease-in-out infinite;
}
.exterior-trust-flow.flow-active .trust-card::before {
  background: linear-gradient(90deg, var(--orange), #ffd08a, #2fb7ff, rgba(255,255,255,.96), var(--orange));
  background-size: 260% 100%;
  animation: exteriorCardTopEnergy 4.4s ease-in-out infinite;
}
.exterior-trust-flow.flow-active .trust-card:nth-child(2)::before { animation-delay: .16s; }
.exterior-trust-flow.flow-active .trust-card:nth-child(3)::before { animation-delay: .32s; }
.exterior-trust-flow.flow-active .trust-card:nth-child(4)::before { animation-delay: .48s; }
@keyframes sourceColorPulse {
  0%, 100% { opacity: .12; transform: scale(.98); }
  42% { opacity: .55; transform: scale(1.02); }
}
@keyframes sourceColorRun {
  0% { opacity: 0; transform: scaleX(.02); }
  20% { opacity: 1; transform: scaleX(.45); }
  62% { opacity: .9; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes trustFlowLine {
  0% { opacity: 0; transform: scaleX(0); }
  16% { opacity: 1; transform: scaleX(.24); }
  56% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes trustFlowComet {
  0% { opacity: 0; transform: translateX(-120px); }
  16% { opacity: 1; }
  58% { opacity: 1; transform: translateX(calc(100vw - 10px)); }
  100% { opacity: 0; transform: translateX(calc(100vw - 10px)); }
}
@keyframes cardTopEnergy {
  0% { background-position: 0% 50%; }
  56%, 100% { background-position: 100% 50%; }
}
@keyframes exteriorSourcePulse {
  0%, 100% { opacity: .12; transform: scale(.98); }
  42% { opacity: .55; transform: scale(1.02); }
}
@keyframes exteriorSourceRun {
  0% { opacity: 0; transform: scaleX(.02); }
  20% { opacity: 1; transform: scaleX(.45); }
  62% { opacity: .9; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes exteriorTrustFlowLine {
  0% { opacity: 0; transform: scaleX(0); }
  16% { opacity: 1; transform: scaleX(.24); }
  56% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(1); }
}
@keyframes exteriorTrustFlowComet {
  0% { opacity: 0; transform: translateX(-120px); }
  16% { opacity: 1; }
  58% { opacity: 1; transform: translateX(calc(100vw - 10px)); }
  100% { opacity: 0; transform: translateX(calc(100vw - 10px)); }
}
@keyframes exteriorCardTopEnergy {
  0% { background-position: 0% 50%; }
  56%, 100% { background-position: 100% 50%; }
}

/* ===============================
   CARRUSEL DESTINOS STARTFLY
================================ */

.startfly-destinos-wrapper {
  --transition: cubic-bezier(0.25, 1, 0.5, 1);
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: visible;
  perspective: 1100px;
}

.startfly-imgs-parent {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  perspective: 60rem;
  transform-style: preserve-3d;
}

.startfly-img {
  width: 100%;
  min-height: 290px;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  transition:
    transform 1.25s var(--transition),
    filter 0.8s var(--transition),
    box-shadow 0.45s var(--transition);
  position: relative;
  filter: grayscale(0) brightness(0.92);
  will-change: transform, filter;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,47,73,.14);
  transform-style: preserve-3d;
}

.startfly-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,47,73,.18) 0%, rgba(0,47,73,.44) 42%, rgba(0,47,73,.9) 100%),
    rgba(20, 80, 130, 0.18);
  z-index: 1;
  transition: background 0.4s ease;
}

.startfly-img:hover {
  filter: grayscale(0) brightness(1);
  transform: translateY(-10px) rotateX(4deg) rotateY(-6deg) translateZ(1.6rem);
  box-shadow: 0 28px 60px rgba(0,47,73,.24);
}

.startfly-img:hover::before {
  background:
    linear-gradient(180deg, rgba(0,47,73,.08) 0%, rgba(0,47,73,.34) 42%, rgba(0,47,73,.88) 100%),
    rgba(0, 0, 0, 0.16);
}

.startfly-imgs-parent:hover .startfly-img:not(:hover) {
  filter: grayscale(0.1) brightness(0.78);
}

.startfly-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  padding: 22px;
  color: white;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.startfly-img:hover .startfly-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.startfly-check {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(39,174,96,.92);
  color: var(--white);
  font-weight: 900;
  transform: translateZ(20px);
}

.startfly-content h3 {
  font-size: 21px !important;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.18;
  transform: translateZ(24px);
}

.startfly-content p {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 16px;
  transform: translateZ(18px);
}

.startfly-btn {
  display: inline-block;
  width: fit-content;
  font-family: Poppins, Arial, sans-serif;
  padding: 7px 14px;
  background-color: rgb(242, 188, 88);
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 15px;
  text-align: center;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  margin-bottom: 0;
  text-decoration: none !important;
  transform: translateZ(22px);
}

.startfly-img:hover .startfly-btn {
  opacity: 1;
  visibility: visible;
}

.startfly-btn:hover {
  background-color: #e2a83d;
  transform: translateY(-2px);
}

.trust-info-card {
  cursor: default;
  min-height: 240px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,249,250,.92));
  border: 1px solid rgba(0,47,73,.12);
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 38px rgba(0,47,73,.09);
}
.trust-info-card::before {
  display: none;
}
.trust-info-card:hover {
  filter: none;
  transform: translateY(-8px) rotateX(3deg) translateZ(.8rem);
  box-shadow: 0 24px 48px rgba(0,47,73,.14);
}
.startfly-imgs-parent:hover .trust-info-card:not(:hover) {
  filter: none;
}
.trust-info-card .startfly-content {
  position: relative;
  inset: auto;
  min-height: 100%;
  padding: 24px;
  color: var(--navy);
  opacity: 1;
  visibility: visible;
  transform: none;
  justify-content: flex-start;
  align-items: flex-start;
}
.trust-info-card .trust-icon {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 0;
  background: transparent;
  color: inherit;
  filter: drop-shadow(0 10px 16px rgba(0,47,73,.1));
}
.trust-info-card:hover .startfly-content {
  transform: none;
}
body.home-page .trust-info-card .startfly-content h3 {
  color: var(--navy);
  font-size: 22px !important;
  margin-bottom: 12px;
}
.trust-info-card .startfly-content p {
  color: var(--gray-dark);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
}
.trust-info-card .startfly-check {
  margin-bottom: 18px;
}

.section-heading { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.section-heading h2 { color: var(--navy); font-size: clamp(30px, 4vw, 44px); line-height: 1.12; font-weight: 800; letter-spacing: -.8px; margin-bottom: 14px; }
.section-heading p { color: var(--gray-dark); font-size: 16px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 32px; text-align: left; }
.split-heading p { margin-bottom: 8px; }

.paths-section, .testimonials-section, .final-cta { background: var(--gray-light); }
.path-choice-heading { margin-bottom: 28px; overflow: hidden; }
.path-choice-heading .path-kicker,
.path-choice-heading .path-title { opacity: 0; transform: translateY(22px); }
.paths-section.paths-active .path-kicker { animation: pathTextRise .72s cubic-bezier(.2,.8,.2,1) forwards; }
.paths-section.paths-active .path-title { animation: pathTextRise .78s cubic-bezier(.2,.8,.2,1) .12s forwards; }
.path-choice-layout {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}
.path-choice-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}
.path-card {
  position: relative;
  min-height: 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0,47,73,.12);
  box-shadow: var(--shadow-strong);
  transition: transform .42s ease, box-shadow .42s ease;
}
.path-choice-cards .path-card {
  min-height: 0;
  opacity: 0;
  transform: translateY(36px);
}
.paths-section.paths-active .path-colombia { animation: pathCardSlideIn .82s cubic-bezier(.2,.8,.2,1) .28s forwards; }
.paths-section.paths-active .path-exterior { animation: pathCardSlideIn .82s cubic-bezier(.2,.8,.2,1) .46s forwards; }
.paths-section.paths-active .path-card:hover {
  animation: none;
  opacity: 1;
  transform: translateY(-6px);
}
.path-card::before { content: none; }
.path-card-head {
  position: relative;
  z-index: 2;
  padding: 24px 28px 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,249,250,.92));
}
.path-card-head span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.path-card-head h3 {
  color: var(--navy);
  font-size: clamp(26px, 3.5vw, 34px);
  line-height: 1.1;
  margin: 0;
}
.path-video-frame {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: var(--navy);
}
.path-card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  filter: none;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s ease, filter .7s ease;
}
.path-card:hover { transform: translateY(-6px); box-shadow: 0 22px 54px rgba(0,47,73,.2); }
.path-card:hover .path-card-video { transform: scale(1.06); opacity: 1; filter: none; }
.path-card::after {
  content: none;
}
.path-content { position: relative; z-index: 2; min-height: 0; padding: 22px 28px 28px; color: var(--navy); display: flex; flex-direction: column; justify-content: flex-start; transition: transform .42s ease; }
.path-choice-cards .path-content { min-height: 0; padding: 22px 28px 28px; }
.path-card:hover .path-content { transform: translateY(-6px); }
.path-content p,
.path-content .check-list,
.path-content .btn { opacity: 0; transform: translateY(14px); }
.paths-section.paths-active .path-content p { animation: pathTextRise .58s cubic-bezier(.2,.8,.2,1) .74s forwards; }
.paths-section.paths-active .path-content .check-list { animation: pathTextRise .58s cubic-bezier(.2,.8,.2,1) .86s forwards; }
.paths-section.paths-active .path-content .btn { animation: pathTextRise .58s cubic-bezier(.2,.8,.2,1) .98s forwards; }
@keyframes pathTextRise {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pathCardSlideIn {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateX(0); }
}
.badge, .tag {
  display: inline-flex; width: fit-content; padding: 5px 11px; border-radius: 999px;
  background: rgba(255,147,1,.13); color: var(--orange); font-size: 11px; line-height: 1;
  font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
}
.path-content h3 { font-size: 32px; color: var(--navy); line-height: 1.15; margin: 16px 0 12px; }
.path-content p { color: var(--gray-dark); margin-bottom: 18px; }
.check-list { list-style: none; display: grid; gap: 8px; margin-bottom: 24px; }
.check-list li { position: relative; padding-left: 24px; color: var(--black-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 900; }
.path-content .btn-secondary {
  width: fit-content;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.path-content .btn-secondary:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.experience-card {
  position: relative; isolation: isolate;
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(248,249,250,.68) 100%);
  border: 1px solid rgba(226,232,240,.92); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 10px 28px rgba(0,47,73,.08);
  transition: transform .34s ease, box-shadow .34s ease, border-color .34s ease;
}
.experience-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2;
  background: linear-gradient(90deg, var(--orange), rgba(52,152,219,.72), transparent);
}
.experience-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.02), rgba(255,147,1,.12) 44%, rgba(0,47,73,.08));
  transition: opacity .34s ease;
}
.experience-card:hover { transform: translateY(-7px); border-color: rgba(255,147,1,.3); box-shadow: 0 18px 46px rgba(0,47,73,.16); }
.experience-card:hover::after { opacity: 1; }
.experience-card img { width: 100%; height: 230px; object-fit: cover; background: var(--gray-light); transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.experience-card:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.03); }
.experience-body { padding: 22px; }
.experience-body h3 { color: var(--navy); font-size: 20px; line-height: 1.3; margin: 14px 0 8px; }
.experience-body p { margin-bottom: 16px; }
.experience-body a { color: var(--navy); font-weight: 800; border-bottom: 2px solid var(--orange); transition: color .24s ease, border-color .24s ease; }
.experience-body a:hover { color: var(--orange); border-color: var(--navy); }
.tag-info { color: var(--blue); background: rgba(52,152,219,.12); }
.highlight-card { background: var(--navy); border-color: var(--navy); display: flex; align-items: stretch; }
.highlight-card .experience-body { display: flex; flex-direction: column; justify-content: center; min-height: 100%; }
.highlight-card h3 { color: var(--white); }
.highlight-card p { color: rgba(255,255,255,.82); }
.highlight-card a { color: var(--white); }

.exterior-destinations-section {
  background: linear-gradient(180deg, var(--white) 0%, rgba(248,249,250,.94) 100%);
}
.exterior-destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.exterior-destination-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,47,73,.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.exterior-destination-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(52,152,219,.72), transparent);
}
.exterior-destination-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,147,1,.34);
  box-shadow: 0 18px 46px rgba(0,47,73,.16);
}
.exterior-destination-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--gray-light);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.exterior-destination-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}
.exterior-destination-body {
  padding: 22px;
}
.exterior-destination-body span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,147,1,.12);
  color: var(--orange);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.exterior-destination-body h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 9px;
}
.exterior-destination-body p {
  color: var(--gray-dark);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.exterior-destination-body a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
  transition: color .24s ease, border-color .24s ease;
}
.exterior-destination-body a:hover {
  color: var(--orange);
  border-color: var(--navy);
}

.experiences-section {
  overflow: hidden;
}
.colombia-experience-carousel-section {
  padding: 88px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 34%, var(--gray-light) 100%);
}
.colombia-carousel-heading {
  margin-bottom: 28px;
}
.colombia-carousel {
  position: relative;
  width: 100%;
  height: min(760px, calc(100vh - 28px));
  min-height: 640px;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.colombia-carousel-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.colombia-carousel-item {
  position: absolute;
  top: 78%;
  left: 70%;
  z-index: 5;
  width: 180px;
  height: 250px;
  overflow: hidden;
  border-radius: 20px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,.3);
  transform: translateY(-70%);
  transition: top 1s ease, left 1s ease, width 1s ease, height 1s ease, border-radius 1s ease, transform 1s ease, opacity 1s ease;
}
.colombia-carousel-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.colombia-carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,47,73,.92) 0%, rgba(0,47,73,.68) 34%, rgba(0,47,73,.16) 72%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(0,0,0,.42) 100%);
}
.colombia-carousel-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(0deg, rgba(0,47,73,.82), transparent);
  opacity: .8;
}
.colombia-carousel-item:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  transform: translate(0,0);
}
.colombia-carousel-item:nth-child(2) { left: 67%; }
.colombia-carousel-item:nth-child(3) { left: calc(67% + 200px); }
.colombia-carousel-item:nth-child(4) { left: calc(67% + 400px); }
.colombia-carousel-item:nth-child(5) { left: calc(67% + 600px); }
.colombia-carousel-item:nth-child(n+6) {
  left: calc(67% + 800px);
  opacity: 0;
}
.colombia-carousel-content {
  position: absolute;
  top: 50%;
  left: clamp(18px, 8vw, 110px);
  z-index: 2;
  display: none;
  width: min(90%, 470px);
  color: var(--white);
  text-align: left;
  opacity: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  transform: translateY(-50%);
  transition: opacity .6s ease;
}
.colombia-carousel-item.active .colombia-carousel-content {
  display: block;
  opacity: 1;
}
.colombia-carousel-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,147,1,.18);
  color: var(--orange);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.colombia-carousel-title,
.colombia-carousel-name,
.colombia-carousel-description,
.colombia-carousel-actions {
  opacity: 0;
}
.colombia-carousel-title {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 7vw, 82px);
  font-weight: 800;
  line-height: .96;
  letter-spacing: -.8px;
  text-shadow: 0 14px 34px rgba(0,0,0,.34);
}
.colombia-carousel-title.title-compact {
  max-width: 420px;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
}
.colombia-carousel-title.title-balanced {
  max-width: 560px;
  font-size: clamp(36px, 5.8vw, 68px);
  line-height: 1.02;
}
.exterior-carousel .colombia-carousel-title {
  max-width: 520px;
  font-size: clamp(34px, 5.2vw, 62px);
  line-height: 1.03;
}
.exterior-carousel .colombia-carousel-title.title-wide {
  max-width: 660px;
  font-size: clamp(32px, 4.7vw, 58px);
}
.colombia-carousel-name {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(20px, 3.2vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}
.colombia-carousel-description {
  margin: 0 0 26px 4px;
  color: rgba(255,255,255,.9);
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.55;
}
.colombia-carousel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 4px;
}
.colombia-carousel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255,147,1,.26);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}
.colombia-carousel-button:hover {
  background: var(--navy);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}
.colombia-carousel-arrows {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
  transform: translateX(-50%);
}
.colombia-carousel-arrows button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  outline: none;
  background: rgba(255,147,1,.92);
  color: var(--white);
  font: 900 25px / 1 "DM Sans", sans-serif;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.colombia-carousel-arrows button:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.colombia-carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 0;
  height: 4px;
  background: var(--orange);
  animation: colombiaCarouselTime 7s linear 1 forwards;
}
@keyframes colombiaCarouselText {
  from { opacity: 0; transform: translateY(90px); filter: blur(24px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes colombiaCarouselTime {
  from { width: 0%; }
  to { width: 100%; }
}
.experiences-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.experiences-choice-hero {
  min-height: auto;
  padding: 118px 0 78px;
  background:
    linear-gradient(135deg, rgba(0, 47, 73, .62), rgba(0, 31, 48, .72)),
    url("/assets/img/hero/experiencias-valle-cocora.jpg") center / cover;
}
.experiences-choice-hero-content {
  display: grid;
  gap: 30px;
}
.experiences-choice-copy {
  max-width: 900px;
  color: var(--white);
}
.experiences-choice-copy h1 {
  max-width: 920px;
}
.experiences-choice-copy p {
  max-width: 760px;
}
.experience-video-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  perspective: 1200px;
}
.experience-video-choice {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  aspect-ratio: 1 / 1;
  min-height: 420px;
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
  transform: translateY(0) rotateX(0) rotateY(0);
  animation: choiceFloat 6.2s ease-in-out infinite;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, border-color .45s ease;
}
.experience-video-choice:nth-child(2) {
  animation-delay: -2.6s;
}
.experience-video-choice video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .85s cubic-bezier(.2,.8,.2,1), filter .85s ease;
}
.experience-video-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 47, 73, .04) 0%, rgba(0, 47, 73, .5) 48%, rgba(0, 31, 48, .94) 100%),
    radial-gradient(circle at 18% 16%, rgba(255, 147, 1, .5), transparent 34%);
}
.experience-video-choice:hover,
.experience-video-choice:focus-visible {
  animation: none;
  transform: translateY(-12px) rotateX(4deg) rotateY(-3deg);
  border-color: rgba(255, 147, 1, .58);
  box-shadow: 0 38px 95px rgba(0, 0, 0, .34);
}
.experience-video-choice:hover video,
.experience-video-choice:focus-visible video {
  transform: scale(1.12);
  filter: saturate(1.1) contrast(1.04);
}
.experience-video-choice:hover .choice-shine,
.experience-video-choice:focus-visible .choice-shine {
  transform: rotate(24deg) translateX(420%);
}
.experience-video-choice:focus-visible {
  outline: 3px solid rgba(255, 147, 1, .72);
  outline-offset: 5px;
}
.experience-video-choice strong {
  max-width: 520px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
  letter-spacing: -1px;
}
.experience-video-choice p {
  max-width: 520px;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.55;
}
.experiences-choice-proof {
  max-width: 760px;
}
.experiences-hero-landscape {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .24);
}
.experiences-hero-landscape img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.experiences-catalog-intro {
  background: var(--white);
  position: relative;
  overflow: hidden;
  padding-bottom: 84px;
}
.experiences-catalog-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 147, 1, .12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(0, 47, 73, .1), transparent 30%);
  pointer-events: none;
}
.experiences-catalog-intro .container {
  position: relative;
  z-index: 1;
}
.experiences-why-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, #f7fbfd 100%);
  padding-bottom: 90px;
}
.experiences-why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 147, 1, .14), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(0, 47, 73, .11), transparent 28%);
  pointer-events: none;
}
.experiences-why-section .container {
  position: relative;
  z-index: 1;
}
.experiences-why-heading {
  margin-bottom: 34px;
}
.experiences-why-heading h2 {
  max-width: 760px;
}
.experiences-why-heading p {
  color: var(--gray-dark);
  font-size: 18px;
  line-height: 1.7;
}
.experiences-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.experiences-why-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 55px rgba(0, 47, 73, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.experiences-why-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 147, 1, .12);
  transition: transform .45s ease, opacity .45s ease;
}
.experiences-why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 147, 1, .34);
  box-shadow: 0 28px 70px rgba(0, 47, 73, .14);
}
.experiences-why-card:hover::before {
  transform: scale(1.24);
  opacity: .86;
}
.experiences-why-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}
.experiences-why-card h3 {
  position: relative;
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 12px;
}
.experiences-why-card p {
  position: relative;
  color: var(--gray-dark);
  line-height: 1.65;
}
.experience-choice-heading {
  margin-bottom: 34px;
}
.experience-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  perspective: 1100px;
}
.experience-choice-card {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 28px 70px rgba(0, 47, 73, .18);
  transform: translateY(0) rotateX(0) rotateY(0);
  animation: choiceFloat 5.8s ease-in-out infinite;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, filter .45s ease;
}
.experience-choice-card:nth-child(2) {
  animation-delay: -2.4s;
}
.experience-choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform .85s cubic-bezier(.2,.8,.2,1), filter .85s ease;
}
.experience-choice-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 47, 73, .06) 0%, rgba(0, 47, 73, .5) 48%, rgba(0, 31, 48, .92) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 147, 1, .48), transparent 34%);
}
.medellin-choice::before { background-image: url("/assets/img/destinos/medellin.jpg"); }
.cartagena-choice::before { background-image: url("/assets/img/destinos/cartagena.jpg"); }
.choice-shine {
  position: absolute;
  inset: -55% auto auto -35%;
  width: 45%;
  height: 210%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: rotate(24deg) translateX(-120%);
  transition: transform .78s cubic-bezier(.2,.8,.2,1);
}
.experience-choice-card:hover,
.experience-choice-card:focus-visible {
  animation: none;
  transform: translateY(-14px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 36px 90px rgba(0, 47, 73, .28);
  filter: saturate(1.06);
}
.experience-choice-card:hover::before,
.experience-choice-card:focus-visible::before {
  transform: scale(1.12);
  filter: contrast(1.04) saturate(1.1);
}
.experience-choice-card:hover .choice-shine,
.experience-choice-card:focus-visible .choice-shine {
  transform: rotate(24deg) translateX(420%);
}
.experience-choice-card:focus-visible {
  outline: 3px solid rgba(255, 147, 1, .72);
  outline-offset: 5px;
}
.choice-kicker,
.choice-meta,
.choice-cta {
  width: fit-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.choice-kicker {
  padding: 8px 12px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
}
.experience-choice-card strong {
  max-width: 520px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .96;
  letter-spacing: -1px;
}
.experience-choice-card p {
  max-width: 520px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.55;
}
.choice-meta {
  padding: 7px 11px;
  background: rgba(255, 147, 1, .18);
  color: #ffd49a;
}
.choice-cta {
  margin-top: 4px;
  padding: 13px 18px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 147, 1, .26);
}
.city-catalog-hero .hero-content {
  max-width: 980px;
}
.city-catalog-page {
  position: relative;
  overflow: hidden;
}
.catalog-grid-animated .catalog-card {
  animation: catalogCardRise .72s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: calc((var(--card-index, 0)) * 45ms);
}
.catalog-grid-animated .catalog-card:nth-child(1) { --card-index: 0; }
.catalog-grid-animated .catalog-card:nth-child(2) { --card-index: 1; }
.catalog-grid-animated .catalog-card:nth-child(3) { --card-index: 2; }
.catalog-grid-animated .catalog-card:nth-child(4) { --card-index: 3; }
.catalog-grid-animated .catalog-card:nth-child(5) { --card-index: 4; }
.catalog-grid-animated .catalog-card:nth-child(6) { --card-index: 5; }
.catalog-grid-animated .catalog-card:nth-child(7) { --card-index: 6; }
.catalog-grid-animated .catalog-card:nth-child(8) { --card-index: 7; }
.catalog-grid-animated .catalog-card:nth-child(9) { --card-index: 8; }
.catalog-grid-animated .catalog-card:nth-child(10) { --card-index: 9; }
.catalog-grid-animated .catalog-card:nth-child(11) { --card-index: 10; }
.catalog-grid-animated .catalog-card:nth-child(12) { --card-index: 11; }
.catalog-grid-animated .catalog-card:nth-child(13) { --card-index: 12; }
.catalog-grid-animated .catalog-card:nth-child(14) { --card-index: 13; }
.catalog-grid-animated .catalog-card:nth-child(15) { --card-index: 14; }
.catalog-grid-animated .catalog-card:nth-child(16) { --card-index: 15; }
.catalog-grid-animated .catalog-card:nth-child(17) { --card-index: 16; }
@keyframes choiceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes catalogCardRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.city-experiences-section {
  background: radial-gradient(circle at 12% 8%, rgba(255, 147, 1, .08), transparent 28%), var(--gray-light);
  padding-top: 56px;
}
.city-experiences-section.alt {
  background: radial-gradient(circle at 86% 12%, rgba(0, 47, 73, .08), transparent 30%), var(--white);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 73, .1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 47, 73, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.catalog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 147, 1, .38);
  box-shadow: 0 26px 60px rgba(0, 47, 73, .14);
}
.catalog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.catalog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
.catalog-card h3 {
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}
.catalog-price {
  display: block;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0, 47, 73, .08);
  color: var(--navy);
  font-size: 13px;
  line-height: 1.2;
}
.catalog-card p { color: var(--gray-dark); }
.catalog-card ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 6px;
  padding: 0;
  list-style: none;
}
.catalog-card li {
  position: relative;
  padding-left: 24px;
  color: var(--black-soft);
  font-size: 14px;
}
.catalog-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}
.catalog-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(255, 147, 1, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.catalog-card a:hover {
  transform: translateY(-2px);
  background: #ff8500;
  box-shadow: 0 18px 34px rgba(255, 147, 1, .32);
}
.catalog-card .tag {
  width: fit-content;
  background: rgba(255, 147, 1, .12);
  color: var(--orange);
}
.tour-list-grid {
  align-items: start;
}
.tour-detail-card {
  position: relative;
  isolation: isolate;
  box-shadow: 0 18px 48px rgba(0, 47, 73, .1);
}
.tour-detail-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(145deg, rgba(255, 147, 1, .16), rgba(0, 47, 73, .1));
  transition: opacity .35s ease;
}
.tour-detail-card.is-open {
  transform: translateY(-6px);
  border-color: rgba(255, 147, 1, .45);
  box-shadow: 0 28px 70px rgba(0, 47, 73, .18);
}
.tour-detail-card.is-open::after {
  opacity: 1;
}
.tour-card-media {
  position: relative;
  overflow: hidden;
}
.tour-card-media > img {
  height: 230px;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.tour-detail-card:hover .tour-card-media > img,
.tour-detail-card.is-open .tour-card-media > img {
  transform: scale(1.07);
  filter: saturate(1.08);
}
.tour-card-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(0, 47, 73, .78);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.tour-card-body {
  position: relative;
}
.tour-subtitle {
  color: var(--navy);
  font-weight: 700;
}
.tour-quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.tour-quick-facts span {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 14px;
  background: rgba(0, 47, 73, .04);
  color: var(--black-soft);
  font-size: 13px;
}
.tour-quick-facts b {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .35px;
  text-transform: uppercase;
}
.tour-detail-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff7b00);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(255, 147, 1, .28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.tour-detail-toggle::before {
  content: "🔍";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}
.tour-detail-toggle:hover,
.tour-detail-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 147, 1, .36);
}
.tour-expand {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .58s cubic-bezier(.2,.8,.2,1), opacity .3s ease, margin-top .3s ease, transform .48s cubic-bezier(.2,.8,.2,1);
}
.tour-detail-card.is-open .tour-expand {
  max-height: 3200px;
  opacity: 1;
  margin-top: 18px;
  transform: translateY(0);
}
.tour-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  aspect-ratio: 16 / 11;
}
.tour-carousel-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.tour-detail-card .tour-carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(0, 47, 73, .68);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  transition: background .25s ease, transform .25s ease;
}
.tour-carousel-btn:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.06);
}
.tour-carousel-prev { left: 12px; }
.tour-carousel-next { right: 12px; }
.tour-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}
.tour-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.tour-carousel-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--orange);
}
.tour-detail-content {
  display: grid;
  gap: 16px;
  padding-top: 18px;
}
.tour-detail-content p {
  color: var(--black-soft);
  line-height: 1.65;
}
.tour-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(230px, .75fr);
  gap: 14px;
  align-items: start;
}
.tour-info-grid > div,
.tour-notes,
.tour-price-row {
  padding: 16px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
}
.tour-info-grid h4,
.tour-notes h4 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
}
.tour-includes-card {
  min-height: 100%;
}
.tour-includes-card ul,
.tour-schedule-card ul {
  columns: 1;
}
.tour-not-includes-card {
  align-self: start;
}
.tour-catalog-description {
  margin-top: -4px;
  padding: 14px 16px;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: rgba(255, 144, 0, .08);
}
.tour-price-row {
  display: grid;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0, 47, 73, .96), rgba(0, 74, 107, .94));
  color: var(--white);
}
.tour-price-row span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .45px;
  text-transform: uppercase;
}
.tour-price-row strong {
  color: var(--white);
}
.tour-price-row a {
  width: 100%;
  background: var(--orange);
  color: var(--white);
}
.tour-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin: 0 0 26px;
  padding: 16px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 45px rgba(0, 47, 73, .08);
}
.tour-search-field {
  display: grid;
  gap: 8px;
}
.tour-search-field span,
.tour-option-heading span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.tour-search-field input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(0, 47, 73, .14);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tour-search-field input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 147, 1, .14);
}
.tour-search-bar p {
  margin: 0;
  color: var(--gray-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
[data-tour-card][hidden] {
  display: none;
}
body.tour-modal-open {
  overflow: hidden;
}
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}
.tour-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}
.tour-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 46, .74);
  backdrop-filter: blur(10px);
}
.tour-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 22px;
  width: min(1180px, calc(100vw - 36px));
  max-height: 88vh;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 38px 110px rgba(0, 30, 46, .42);
  transform: translateY(24px) scale(.98);
  transition: transform .34s cubic-bezier(.2,.8,.2,1);
}
.tour-modal.is-open .tour-modal-dialog {
  transform: translateY(0) scale(1);
}
.tour-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 30, 46, .82);
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}
.tour-modal-close:hover {
  transform: rotate(90deg);
  background: var(--orange);
}
.tour-modal-gallery {
  position: relative;
  align-self: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 24px 0 24px 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #003a55, #004765);
}
.tour-modal-track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform .58s cubic-bezier(.2,.8,.2,1);
}
.tour-modal-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-modal-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease;
}
.tour-modal-nav:hover {
  background: var(--orange);
  transform: translateY(-50%) scale(1.06);
}
.tour-modal-prev { left: 18px; }
.tour-modal-next { right: 18px; }
.tour-modal-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}
.tour-modal-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.tour-modal-dots button.is-active {
  width: 28px;
  background: var(--orange);
}
.tour-modal-body {
  display: grid;
  gap: 18px;
  overflow: auto;
  max-height: 88vh;
  padding: 30px 30px 30px 4px;
}
.tour-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tour-modal-pills span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 147, 1, .12);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}
.tour-modal-body h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  text-align: center;
  text-wrap: balance;
}
.tour-modal-subtitle {
  color: var(--gray-dark);
  font-size: 18px;
}
.tour-reference-price {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  margin-top: -6px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 147, 1, .18);
  border-radius: 999px;
  background: rgba(255, 147, 1, .08);
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}
.tour-modal-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.tour-modal-facts div {
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--gray-light);
}
.tour-modal-facts span,
.tour-total-row span {
  display: block;
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
}
.tour-modal-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 15px;
}
.tour-modal-options {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 18px;
  background: rgba(0, 47, 73, .035);
}
.tour-modal-options[hidden] {
  display: none;
}
.tour-option-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.tour-option-heading small {
  color: var(--gray-dark);
  font-weight: 700;
}
.tour-option-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.tour-option-list button {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 47, 73, .12);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.tour-option-list button:hover,
.tour-option-list button.is-active {
  border-color: var(--orange);
  box-shadow: 0 12px 28px rgba(255, 147, 1, .16);
  transform: translateY(-1px);
}
.tour-option-list strong {
  font-size: 14px;
}
.tour-option-list span {
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 800;
}
.tour-modal-booking {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(240px, .62fr);
  gap: 22px;
  align-items: stretch;
  padding: 20px 22px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 47, 73, .04), rgba(255, 147, 1, .08));
}
.tour-calculator,
.tour-modal-actions {
  display: grid;
  align-content: center;
  gap: 10px;
}
.tour-total-row strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}
.tour-calculator label {
  color: var(--navy);
  font-weight: 900;
}
.tour-passenger-control {
  display: grid;
  grid-template-columns: 38px 56px 38px;
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(0, 47, 73, .12);
  border-radius: 999px;
  background: var(--white);
}
.tour-passenger-control button,
.tour-passenger-control input {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  text-align: center;
}
.tour-passenger-control button {
  cursor: pointer;
}
.tour-passenger-control button:hover {
  background: rgba(255, 147, 1, .12);
}
.tour-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 4px;
}
.tour-total-values {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}
.tour-total-values small {
  color: var(--gray-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  max-width: 180px;
}
.tour-modal-actions {
  grid-template-columns: 1fr;
}
.tour-add-cart,
.tour-modal-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.tour-add-cart {
  background: #25d366;
  box-shadow: 0 14px 28px rgba(37, 211, 102, .22);
}
.tour-modal-whatsapp {
  background: var(--navy);
}
.tour-add-cart:hover,
.tour-modal-whatsapp:hover {
  transform: translateY(-2px);
}
.tour-modal-description,
.tour-modal-info section {
  padding: 20px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .84);
}
.tour-modal-description h3,
.tour-modal-info h3 {
  margin-bottom: 10px;
  color: var(--navy);
}
.tour-modal-description p,
.tour-modal-info p {
  color: var(--black-soft);
  line-height: 1.7;
}
.tour-modal-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.tour-modal-info section:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.tour-modal-info ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tour-modal-info li {
  position: relative;
  padding-left: 24px;
  color: var(--black-soft);
}
.tour-modal-info li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.quote-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9000;
  display: grid;
  gap: 14px;
  justify-items: start;
  pointer-events: none;
}
.quote-float,
.quote-panel {
  pointer-events: auto;
}
.quote-float {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  gap: 3px 12px;
  align-items: center;
  min-width: 220px;
  padding: 14px 52px 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), #00506f);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 47, 73, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quote-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 47, 73, .34);
}
.quote-float span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.quote-float strong {
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}
.quote-float em {
  position: absolute;
  top: 50%;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-style: normal;
  font-weight: 900;
  transform: translateY(-50%);
}
.quote-widget:not(.has-items) .quote-float {
  opacity: .82;
}
.quote-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  width: min(420px, calc(100vw - 32px));
  max-height: min(640px, calc(100vh - 140px));
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 28px 80px rgba(0, 47, 73, .26);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  visibility: hidden;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  backdrop-filter: blur(18px);
}
.quote-widget.is-open .quote-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}
.quote-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 47, 73, .08);
}
.quote-panel-header span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
}
.quote-panel-header h3 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 24px;
}
.quote-panel-header p {
  margin-top: 4px;
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 700;
}
.quote-panel-header button,
.quote-item button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.quote-panel-header button {
  min-width: 96px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 47, 73, .1);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-items {
  display: grid;
  gap: 12px;
  padding: 16px 0;
}
.quote-empty {
  padding: 16px;
  border-radius: 16px;
  background: var(--gray-light);
  color: var(--gray-dark);
}
.quote-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  padding: 14px 46px 14px 14px;
  border: 1px solid rgba(0, 47, 73, .08);
  border-radius: 18px;
  background: var(--white);
}
.quote-item h4 {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}
.quote-item p {
  margin-top: 4px;
  color: var(--gray-dark);
  font-size: 13px;
}
.quote-item strong {
  align-self: center;
  color: var(--orange);
  white-space: nowrap;
}
.quote-item button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  background: rgba(0, 47, 73, .08);
  color: var(--navy);
  font-size: 18px;
}
.quote-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), #00506f);
  color: var(--white);
}
.quote-final span {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.quote-final strong {
  font-size: 22px;
  white-space: nowrap;
}
.quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.quote-actions button,
.quote-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 14px;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.quote-actions button {
  background: var(--gray-light);
  color: var(--navy);
}
.quote-actions a {
  background: #25d366;
  color: var(--white);
}
.story-gallery-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 8px 0 12px;
}
.story-gallery-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 0 48px;
  animation: galleryScroll 40s linear infinite;
  will-change: transform;
}
.story-gallery-track:hover {
  animation-play-state: paused;
}
.story-gallery-item {
  position: relative;
  flex: 0 0 auto;
  width: 340px;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 48px rgba(0,47,73,.16);
  color: var(--white);
  text-decoration: none;
}
.story-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease, filter .6s ease;
}
.story-gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.03);
}
.story-gallery-item .caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 18px;
  color: var(--white);
  background: linear-gradient(to top, rgba(0,10,20,.82) 0%, rgba(0,10,20,.48) 45%, transparent 100%);
}
.story-gallery-item .caption .dest {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.story-gallery-item .caption .name {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}
@keyframes galleryScroll {
  to { transform: translate3d(calc(-50% - 8px), 0, 0); }
}

.popular-experiences {
  padding: 96px 0 104px;
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(248,249,250,.95) 100%);
  overflow: hidden;
}
.popular-header {
  max-width: 850px;
  margin: 0 auto 46px;
  text-align: center;
}
.popular-header h2 {
  color: var(--navy);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
}
.popular-header p {
  color: var(--gray-dark);
  font-size: 17px;
  margin-bottom: 4px;
}
.popular-header strong {
  display: block;
  color: var(--black-soft);
  font-size: 17px;
  margin-bottom: 22px;
}
.popular-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255,147,1,.24);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.popular-btn:hover {
  transform: translateY(-3px);
  background: #e78300;
  box-shadow: 0 16px 34px rgba(255,147,1,.34);
}
.popular-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 430px;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.popular-card {
  position: relative;
  flex: 0 0 144px;
  height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111111;
  box-shadow: 0 18px 35px rgba(0,0,0,.18);
  transform-style: preserve-3d;
  --popular-rotate: 0deg;
  --popular-scale: 1;
  --popular-opacity: 1;
  --popular-tilt: 0deg;
  transform: translateY(0) rotateY(var(--popular-rotate)) scale(var(--popular-scale));
  opacity: 0;
  transition:
    transform .45s ease,
    opacity .45s ease,
    filter .45s ease,
    box-shadow .45s ease;
}
.popular-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .6s ease, filter .6s ease;
}
.popular-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 45%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.popular-card-content {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  z-index: 2;
  color: var(--white);
  text-align: center;
}
.popular-card-content h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 12px;
}
.popular-card-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  transition: transform .3s ease, background .3s ease;
}
.popular-card-content a:hover {
  transform: translateY(-2px);
  background: #e78300;
}
.popular-card:nth-child(1) {
  --popular-rotate: 28deg;
  --popular-scale: .84;
  --popular-opacity: .65;
  --popular-tilt: -3deg;
}
.popular-card:nth-child(2) {
  --popular-rotate: 20deg;
  --popular-scale: .9;
  --popular-opacity: .78;
  --popular-tilt: -2deg;
}
.popular-card:nth-child(3) {
  --popular-rotate: 10deg;
  --popular-scale: .98;
  --popular-opacity: .9;
  --popular-tilt: -1deg;
}
.popular-card:nth-child(4) {
  --popular-rotate: 0deg;
  --popular-scale: 1.08;
  --popular-opacity: 1;
  z-index: 3;
}
.popular-card:nth-child(5) {
  --popular-rotate: -10deg;
  --popular-scale: .98;
  --popular-opacity: .9;
  --popular-tilt: 1deg;
}
.popular-card:nth-child(6) {
  --popular-rotate: -20deg;
  --popular-scale: .9;
  --popular-opacity: .78;
  --popular-tilt: 2deg;
}
.popular-card:nth-child(7) {
  --popular-rotate: -28deg;
  --popular-scale: .84;
  --popular-opacity: .65;
  --popular-tilt: 3deg;
}
.popular-card:hover {
  transform: translateY(-22px) scale(1.1) rotateY(0deg);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 28px 60px rgba(0,0,0,.28);
}
.popular-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.04);
}
.popular-experiences.popular-active .popular-card {
  animation:
    popularCardAppear 1.15s ease forwards,
    popularCardFloat 5.8s ease-in-out 1.3s infinite;
  animation-delay: var(--popular-delay, 0ms), calc(var(--popular-delay, 0ms) + 1.25s);
}
.popular-experiences.popular-active .popular-card:nth-child(1) { --popular-delay: 0ms; }
.popular-experiences.popular-active .popular-card:nth-child(2) { --popular-delay: 90ms; }
.popular-experiences.popular-active .popular-card:nth-child(3) { --popular-delay: 180ms; }
.popular-experiences.popular-active .popular-card:nth-child(4) { --popular-delay: 270ms; }
.popular-experiences.popular-active .popular-card:nth-child(5) { --popular-delay: 360ms; }
.popular-experiences.popular-active .popular-card:nth-child(6) { --popular-delay: 450ms; }
.popular-experiences.popular-active .popular-card:nth-child(7) { --popular-delay: 540ms; }
.popular-experiences.popular-active .popular-card:hover {
  animation: none;
  transform: translateY(-22px) scale(1.1) rotateY(0deg);
  opacity: 1;
}
@keyframes popularCardAppear {
  0% {
    opacity: 0;
    transform: translateY(24px) rotateY(var(--popular-rotate)) scale(var(--popular-scale)) scale(.96);
  }
  100% {
    opacity: var(--popular-opacity);
    transform: translateY(0) rotateY(var(--popular-rotate)) scale(var(--popular-scale));
  }
}
@keyframes popularCardFloat {
  0%, 100% {
    opacity: var(--popular-opacity);
    transform: translateY(0) rotateY(var(--popular-rotate)) scale(var(--popular-scale));
  }
  50% {
    opacity: var(--popular-opacity);
    transform: translateY(-10px) rotateY(calc(var(--popular-rotate) + var(--popular-tilt))) scale(var(--popular-scale)) scale(1.018);
  }
}

.method-section { background: var(--navy); color: var(--white); }
.method-section .section-heading h2 { color: var(--white); }
.method-section .section-heading p { color: rgba(255,255,255,.78); }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method-step {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 24px;
  transition: transform .32s ease, background .32s ease, border-color .32s ease;
}
.method-step:hover { transform: translateY(-5px); background: rgba(255,255,255,.11); border-color: rgba(255,147,1,.36); }
.method-step span { display: inline-flex; color: var(--orange); font-size: 28px; line-height: 1; font-weight: 800; margin-bottom: 24px; }
.method-step h3 { color: var(--white); font-size: 19px; margin-bottom: 8px; }
.method-step p { color: rgba(255,255,255,.76); font-size: 14px; }

.contact-hero .hero-content { max-width: 980px; }
.contact-main-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(255,147,1,.12), transparent 28%),
    linear-gradient(180deg, var(--white) 0%, rgba(248,249,250,.94) 100%);
}
.contact-layout {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}
.contact-panel,
.contact-info-card,
.contact-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  box-shadow: 0 16px 38px rgba(0,47,73,.08);
}
.contact-primary-panel {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border-left: 5px solid var(--orange);
}
.contact-primary-panel h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
  margin-bottom: 14px;
}
.contact-primary-panel p {
  color: var(--gray-dark);
  font-size: 16px;
  margin-bottom: 24px;
}
.contact-note {
  margin-top: 24px;
  padding: 18px;
  background: rgba(0,47,73,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(0,47,73,.08);
}
.contact-note strong,
.contact-note span { display: block; }
.contact-note strong { color: var(--navy); margin-bottom: 4px; }
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-info-card {
  padding: 24px;
  min-height: 230px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-info-card:hover,
.contact-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,147,1,.38);
  box-shadow: 0 20px 46px rgba(0,47,73,.12);
}
.contact-card-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,147,1,.14);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .4px;
  margin-bottom: 18px;
}
.contact-info-card h3,
.contact-service-card h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.contact-info-card p,
.contact-service-card p {
  color: var(--gray-dark);
  font-size: 14px;
  margin-bottom: 14px;
}
.contact-info-card a,
.contact-info-card strong {
  display: inline-block;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid rgba(255,147,1,.7);
}
.contact-mail-list {
  display: grid;
  gap: 8px;
}
.contact-mail-list a {
  width: fit-content;
  overflow-wrap: anywhere;
}
.contact-legal-link {
  margin-top: 14px;
  padding: 10px 14px;
  border: 0 !important;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white) !important;
  box-shadow: 0 10px 22px rgba(0,47,73,.16);
  transition: transform .24s ease, background .24s ease, box-shadow .24s ease;
}
.contact-legal-link:hover {
  transform: translateY(-2px);
  background: var(--orange);
  color: var(--navy) !important;
  box-shadow: 0 14px 28px rgba(255,147,1,.2);
}
.contact-help-section { background: var(--white); }
.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.contact-service-card {
  padding: 24px;
  border-top: 4px solid var(--orange);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-process-section {
  background: var(--navy);
  color: var(--white);
}
.contact-process-section .section-heading h2 { color: var(--white); }
.contact-process-section .section-heading p { color: rgba(255,255,255,.78); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-soft); transition: transform .32s ease, box-shadow .32s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0,47,73,.12); }
.stars { color: var(--orange); letter-spacing: 1px; font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { color: var(--black-soft); font-size: 15px; margin-bottom: 20px; }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-author strong { color: var(--navy); }
.testimonial-author span { color: var(--gray-medium); font-size: 13px; }
.google-reviews-widget {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(0,47,73,.1);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,249,250,.92));
  box-shadow: var(--shadow-soft);
}

.policy-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.policy-content { position: sticky; top: 110px; }
.policy-content h2 { color: var(--navy); font-size: clamp(30px, 4vw, 42px); line-height: 1.14; margin-bottom: 16px; }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.policy-card { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--navy); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-soft); transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease; }
.policy-card:hover { transform: translateY(-4px); border-color: rgba(0,47,73,.22); box-shadow: 0 14px 34px rgba(0,47,73,.11); }
.policy-card h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.policy-card summary { cursor: pointer; list-style: none; }
.policy-card summary::-webkit-details-marker { display: none; }
.policy-card summary h3 { display: inline; }

.final-cta { padding: 70px 0 84px; }
.final-cta-box { background: var(--navy); color: var(--white); border-radius: var(--radius-large); padding: clamp(34px, 6vw, 62px); text-align: center; box-shadow: var(--shadow-strong); }
.final-cta-box h2 { color: var(--white); max-width: 820px; margin: 0 auto 16px; font-size: clamp(30px, 5vw, 48px); line-height: 1.12; }
.final-cta-box p { color: rgba(255,255,255,.78); max-width: 680px; margin: 0 auto 28px; font-size: 16px; }
.final-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; background: var(--green); color: var(--white);
  font-weight: 800; padding: 13px 18px; border-radius: 999px; box-shadow: var(--shadow-strong);
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 36px rgba(39,174,96,.28); filter: saturate(1.08); }

.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 34px; padding-bottom: 40px; }
.footer-brand { margin-bottom: 16px; }
.site-footer h3 { color: var(--white); font-size: 16px; margin-bottom: 14px; }
.site-footer a { display: block; color: rgba(255,255,255,.78); margin-bottom: 8px; transition: color .2s ease; }
.site-footer a:hover { color: var(--orange); }
.site-footer p { margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; font-size: 13px; }

.reveal { opacity: 0; transform: translateY(24px) scale(.985); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 980px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; top: var(--header-height); left: 16px; right: 16px; display: grid; gap: 4px;
    background: var(--white); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-strong);
    transform: translateY(-16px); opacity: 0; pointer-events: none; transition: transform .2s ease, opacity .2s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { color: var(--navy); border-radius: var(--radius-small); }
  .main-nav a:hover, .main-nav a.active { background: var(--gray-light); color: var(--navy); }
  .hero-proof, .trust-grid, .method-grid, .footer-grid, .contact-layout, .contact-service-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { align-items: start; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-info-grid { grid-template-columns: 1fr; }
  .tour-modal-dialog {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(240px, 34vh) minmax(0, 1fr);
    gap: 0;
  }
  .tour-modal-gallery {
    width: auto;
    height: 100%;
    margin: 0;
    border-radius: 0;
    aspect-ratio: auto;
  }
  .tour-modal-body {
    max-height: none;
    padding: 24px;
  }
  .tour-search-bar,
  .tour-option-list {
    grid-template-columns: 1fr;
  }
  .tour-search-bar {
    align-items: stretch;
  }
  .tour-search-bar p {
    white-space: normal;
  }
  .tour-modal-facts,
  .tour-modal-booking,
  .tour-modal-info { grid-template-columns: 1fr; }
  .experience-choice-grid,
  .experience-video-choice-grid { grid-template-columns: 1fr; }
  .experiences-why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experiences-choice-hero { padding: 108px 0 64px; }
  .experience-video-choice { min-height: 360px; }
  .paths-grid, .split-heading, .policy-layout { grid-template-columns: 1fr; }
  .path-choice-layout { max-width: 760px; }
  .path-choice-cards { grid-template-columns: 1fr; }
  .experience-grid, .testimonials-grid, .exterior-destination-grid, .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .colombia-experience-carousel-section { padding-top: 72px; }
  .colombia-carousel {
    height: 720px;
    min-height: 720px;
  }
  .colombia-carousel-item {
    width: 154px;
    height: 214px;
    left: 62%;
  }
  .colombia-carousel-item:nth-child(2) { left: 58%; }
  .colombia-carousel-item:nth-child(3) { left: calc(58% + 170px); }
  .colombia-carousel-item:nth-child(4) { left: calc(58% + 340px); }
  .colombia-carousel-item:nth-child(5) { left: calc(58% + 510px); }
  .colombia-carousel-content {
    left: clamp(18px, 6vw, 56px);
    width: min(88%, 430px);
  }
  .exterior-carousel .colombia-carousel-title {
    max-width: 420px;
    font-size: clamp(31px, 7vw, 48px);
  }
  .startfly-destinos-wrapper {
    height: auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }
  .startfly-imgs-parent {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    gap: 16px;
  }
  .startfly-img {
    width: 100%;
    min-width: 0;
    min-height: 260px;
  }
  .startfly-img:hover {
    transform: translateY(-8px) rotateX(3deg) rotateY(-4deg) translateZ(1rem);
  }
  .startfly-content h3 {
    font-size: 20px !important;
  }
  .startfly-content p {
    font-size: 14px;
  }
  .startfly-btn {
    font-size: 12px;
    padding: 7px 14px;
    border-radius: 10px;
  }
  .story-gallery-track {
    padding: 0 24px;
  }
  .story-gallery-item {
    width: 280px;
    height: 380px;
  }
  .popular-experiences { padding: 76px 0 84px; }
  .popular-slider {
    justify-content: flex-start;
    min-height: 390px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 8px 30px;
    scroll-padding: 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .popular-card,
  .popular-card:nth-child(n) {
    flex-basis: 180px;
    min-width: 180px;
    transform: none;
    opacity: 1;
    scroll-snap-align: center;
  }
  .popular-card:hover {
    transform: translateY(-12px) scale(1.04) rotateY(0deg);
  }
  .policy-content { position: static; }
}
@media (max-width: 680px) {
  :root { --header-height: 72px; }
  .container { width: min(100% - 24px, 1120px); }
  .section { padding: 64px 0; }
  .site-header { min-height: var(--header-height); }
  .main-nav {
    max-height: calc(100dvh - var(--header-height) - 24px);
    overflow-y: auto;
  }
  .brand-text span { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  .site-header .brand-logo { height: 50px; }
  .footer-brand .brand-logo { height: 88px; }
  .hero { min-height: auto; }
  .hero-content {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    padding: 84px 0 74px;
    overflow: hidden;
  }
  .hero h1 {
    width: 100% !important;
    max-width: min(calc(100vw - 24px), 16ch) !important;
    font-size: clamp(28px, 8vw, 33px) !important;
    line-height: 1.12;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero p {
    width: 100%;
    max-width: min(calc(100vw - 24px), 34ch);
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .hero-actions, .final-cta-actions { flex-direction: column; }
  .btn {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }
  .hero-proof, .trust-grid, .paths-grid, .experience-grid, .method-grid, .testimonials-grid, .policy-grid, .footer-grid, .exterior-destination-grid, .contact-layout, .contact-info-grid, .contact-service-grid { grid-template-columns: 1fr; }
  .hero-proof {
    gap: 10px;
  }
  .hero-proof div {
    min-width: 0;
    padding: 14px;
  }
  .contact-primary-panel { padding: 26px; }
  .contact-info-card { min-height: auto; }
  .path-card {
    min-height: auto;
  }
  .path-card-head,
  .path-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .path-card-head h3,
  .path-content p,
  .check-list li,
  .site-footer a,
  .site-footer p {
    overflow-wrap: anywhere;
  }
  .path-video-frame {
    aspect-ratio: 16 / 9;
    height: auto;
    background: #041f2d;
  }
  .path-card-video {
    object-fit: contain;
    object-position: center;
  }
  .experiences-why-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .experiences-choice-hero { padding: 96px 0 52px; }
  .experience-video-choice {
    min-height: 320px;
    padding: 22px;
  }
  .experience-video-choice strong {
    max-width: 16ch;
    font-size: clamp(26px, 7.4vw, 30px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .experience-video-choice p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .experience-choice-card {
    min-height: 360px;
  }
  .experience-choice-card strong {
    font-size: 36px;
  }
  .catalog-card img { height: 210px; }
  .catalog-card-body { padding: 20px; }
  .tour-search-bar {
    padding: 14px;
  }
  .tour-quick-facts { grid-template-columns: 1fr; }
  .tour-card-media > img { height: 220px; }
  .tour-carousel { aspect-ratio: 4 / 3; }
  .tour-modal {
    padding: 10px;
    align-items: end;
  }
  .tour-modal-dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 30vh) minmax(0, 1fr);
  }
  .tour-modal-gallery {
    width: auto;
    height: 100%;
    margin: 0;
    border-radius: 22px 22px 0 0;
    aspect-ratio: auto;
  }
  .tour-modal-body {
    padding: 22px 18px 24px;
  }
  .tour-modal-nav {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
  .tour-modal-body h2 {
    font-size: 31px;
  }
  .quote-widget {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-items: stretch;
  }
  .quote-float {
    width: 100%;
    min-width: 0;
  }
  .quote-panel {
    width: 100%;
    max-height: calc(100vh - 128px);
  }
  .quote-item {
    grid-template-columns: 1fr;
  }
  .quote-item strong {
    white-space: normal;
  }
  .quote-actions {
    grid-template-columns: 1fr;
  }
  .tour-carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .trust-section { margin-top: 0; padding-top: 42px; }
  .path-choice-heading { text-align: center; }
  .path-choice-layout { gap: 20px; }
  .startfly-destinos-wrapper {
    width: 100%;
    margin-left: 0;
  }
  .startfly-imgs-parent {
    grid-template-columns: 1fr;
  }
  .startfly-img:hover {
    transform: translateY(-6px) rotateX(2deg) translateZ(.75rem);
  }
  .section-heading { text-align: left; }
  .path-choice-heading { text-align: center; }
  .path-card, .path-content { min-height: 0; }
  .path-choice-cards .path-card,
  .path-choice-cards .path-content { min-height: 0; }
  .path-content { padding: 24px; }
  .path-choice-cards .path-content { padding: 22px; }
  .path-card-head { padding: 22px 22px 16px; }
  .path-video-frame {
    height: auto;
    min-height: 0;
  }
  .path-content h3 { font-size: 28px; }
  .experience-card img { height: 210px; }
  .exterior-destination-card img { height: 210px; }
  .colombia-experience-carousel-section { padding-top: 60px; }
  .colombia-carousel-heading { margin-bottom: 20px; }
  .colombia-carousel {
    height: 710px;
    min-height: 710px;
  }
  .colombia-carousel-item {
    top: 76%;
    left: 52%;
    width: 130px;
    height: 182px;
    border-radius: 16px;
  }
  .colombia-carousel-item:nth-child(2) { left: 52%; }
  .colombia-carousel-item:nth-child(3) { left: calc(52% + 144px); }
  .colombia-carousel-item:nth-child(4) { left: calc(52% + 288px); }
  .colombia-carousel-item:nth-child(5) { left: calc(52% + 432px); }
  .colombia-carousel-content {
    top: 31%;
    left: 18px;
    width: calc(100% - 36px);
  }
  .colombia-carousel-title {
    font-size: clamp(35px, 13vw, 56px);
  }
  .exterior-carousel .colombia-carousel-title {
    max-width: 92%;
    font-size: clamp(31px, 11vw, 44px);
    line-height: 1.06;
  }
  .colombia-carousel-name {
    font-size: 19px;
  }
  .colombia-carousel-description {
    font-size: 15px;
    margin-bottom: 14px;
  }
  .colombia-carousel-actions {
    margin-bottom: 56px;
  }
  .colombia-carousel-button {
    width: 100%;
  }
  .colombia-carousel-arrows {
    bottom: 28px;
  }
  .story-gallery-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .story-gallery-track {
    animation-duration: 52s;
    padding: 0 16px 10px;
  }
  .story-gallery-item {
    width: min(78vw, 280px);
    height: 360px;
    scroll-snap-align: center;
  }
  .popular-header { text-align: left; }
  .popular-btn { width: 100%; }
  .popular-slider {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding-left: 12px;
    padding-right: 12px;
    gap: 14px;
    scrollbar-width: none;
  }
  .popular-slider::-webkit-scrollbar { display: none; }
  .popular-card,
  .popular-card:nth-child(n) {
    flex: 0 0 min(78vw, 292px);
    min-width: min(78vw, 292px);
    height: min(112vw, 410px);
    max-height: 410px;
  }
  .popular-card-content {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }
  .popular-card-content h3 {
    font-size: 22px;
  }
  .popular-card-content a {
    min-height: 42px;
    padding: 10px 18px;
  }
  .exterior-destination-card img,
  .experience-card img {
    height: 240px;
  }
  .final-cta-box {
    text-align: left;
  }
  .final-cta-box h2,
  .final-cta-box p {
    margin-left: 0;
    margin-right: 0;
  }
  .whatsapp-float { left: 12px; right: 12px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-video { animation: none; transform: none; }
  .hero-content > * { opacity: 1; transform: none; animation: none; }
  .ticker-inner { animation: none; }
  .story-gallery-track { animation: none; }
  .colombia-carousel-progress { animation: none; width: 100%; }
  .colombia-carousel-title, .colombia-carousel-name, .colombia-carousel-description, .colombia-carousel-actions { opacity: 1; transform: none; filter: none; }
  .experience-proof-source::before, .experience-proof-source::after, .colombia-trust-flow .trust-grid::before, .colombia-trust-flow .trust-grid::after,
  .exterior-proof-source::before, .exterior-proof-source::after, .exterior-trust-flow .trust-grid::before, .exterior-trust-flow .trust-grid::after {
    animation: none !important;
    opacity: 0 !important;
  }
  .colombia-trust-flow .trust-card::before,
  .exterior-trust-flow .trust-card::before {
    animation: none !important;
  }
  .experience-choice-card, .catalog-grid-animated .catalog-card {
    animation: none !important;
  }
  .tour-carousel-track,
  .tour-expand,
  .tour-modal,
  .tour-modal-dialog,
  .tour-modal-track,
  .tour-detail-toggle,
  .tour-card-media > img {
    transition: none !important;
  }
  .path-card:hover, .path-card:hover .path-content, .experience-choice-card:hover, .experience-card:hover, .colombia-carousel-button:hover, .colombia-carousel-arrows button:hover, .popular-card:hover, .trust-card:hover, .method-step:hover, .testimonial-card:hover, .policy-card:hover, .whatsapp-float:hover {
    transform: none;
  }
}
@media print {
  .site-header, .nav-toggle, .hero-media, .whatsapp-float, .btn, .site-footer { display: none !important; }
  body { background: var(--white); color: var(--black-soft); }
  .section, .hero, .final-cta { padding: 24px 0; }
  .hero { min-height: auto; background: var(--white); }
  .hero-content, .hero h1, .hero p, .final-cta-box, .method-section { color: var(--black-soft); background: var(--white); }
  .trust-card, .experience-card, .method-step, .testimonial-card, .policy-card, .final-cta-box { box-shadow: none; page-break-inside: avoid; }
}
